[FFmpeg-cvslog] h264: avoid unnecessary calls to get_format

Rainer Hochecker git at videolan.org
Tue Mar 31 12:35:05 CEST 2015


ffmpeg | branch: master | Rainer Hochecker <fernetmenta at online.de> | Tue Mar 31 08:27:01 2015 +0200| [8b152c355f6c52ddf5b5b1c6a90bcfb8468fe8d3] | committer: Michael Niedermayer

h264: avoid unnecessary calls to get_format

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

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

diff --git a/libavcodec/h264_slice.c b/libavcodec/h264_slice.c
index dfb44ac..c10568a 100644
--- a/libavcodec/h264_slice.c
+++ b/libavcodec/h264_slice.c
@@ -1325,7 +1325,8 @@ int ff_h264_decode_slice_header(H264Context *h, H264SliceContext *sl)
                      || h->mb_width  != h->sps.mb_width
                      || h->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag)
                     ));
-    if (non_j_pixfmt(h->avctx->pix_fmt) != non_j_pixfmt(get_pixel_format(h, 0)))
+    if (h->avctx->pix_fmt == AV_PIX_FMT_NONE
+        || (non_j_pixfmt(h->avctx->pix_fmt) != non_j_pixfmt(get_pixel_format(h, 0))))
         must_reinit = 1;
 
     if (first_slice && av_cmp_q(h->sps.sar, h->avctx->sample_aspect_ratio))



More information about the ffmpeg-cvslog mailing list