[FFmpeg-cvslog] h264: reset nal_unit_type so that decoding frames without any nal units

Michael Niedermayer git at videolan.org
Fri Dec 16 19:15:28 CET 2011


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Dec 16 18:52:56 2011 +0100| [902c0904139b532ae25113fb6e34fa4c5cdf7ebc] | committer: Michael Niedermayer

h264: reset nal_unit_type so that decoding frames without any nal units
dont leave its value at something random.

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

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

 libavcodec/h264.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 6d88f61..26f3a63 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -3777,6 +3777,8 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size){
     int nals_needed=0; ///< number of NALs that need decoding before the next frame thread starts
     int nal_index;
 
+    h->nal_unit_type= 0;
+
     h->max_contexts = (HAVE_THREADS && (s->avctx->active_thread_type&FF_THREAD_SLICE)) ? avctx->thread_count : 1;
     if(!(s->flags2 & CODEC_FLAG2_CHUNKS)){
         h->current_slice = 0;



More information about the ffmpeg-cvslog mailing list