[FFmpeg-cvslog] lavc/mediacodecdec_h264: move bsf variable declaration at the top of the function

Matthieu Bouron git at videolan.org
Wed Sep 7 22:07:57 EEST 2016


ffmpeg | branch: master | Matthieu Bouron <matthieu.bouron at stupeflix.com> | Mon Sep  5 15:38:13 2016 +0200| [256e99f6f055c8bea226799c843db5df3a3bb701] | committer: Matthieu Bouron

lavc/mediacodecdec_h264: move bsf variable declaration at the top of the function

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=256e99f6f055c8bea226799c843db5df3a3bb701
---

 libavcodec/mediacodecdec_h264.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/libavcodec/mediacodecdec_h264.c b/libavcodec/mediacodecdec_h264.c
index 96e2a8a..9350a32 100644
--- a/libavcodec/mediacodecdec_h264.c
+++ b/libavcodec/mediacodecdec_h264.c
@@ -129,6 +129,8 @@ static av_cold int mediacodec_decode_init(AVCodecContext *avctx)
     int is_avc = 0;
     int nal_length_size = 0;
 
+    const AVBitStreamFilter *bsf = NULL;
+
     FFAMediaFormat *format = NULL;
     MediaCodecH264DecContext *s = avctx->priv_data;
 
@@ -205,7 +207,7 @@ static av_cold int mediacodec_decode_init(AVCodecContext *avctx)
         goto done;
     }
 
-    const AVBitStreamFilter *bsf = av_bsf_get_by_name("h264_mp4toannexb");
+    bsf = av_bsf_get_by_name("h264_mp4toannexb");
     if(!bsf) {
         ret = AVERROR_BSF_NOT_FOUND;
         goto done;



More information about the ffmpeg-cvslog mailing list