[FFmpeg-cvslog] r14428 - trunk/libavcodec/h264.c

heydowns subversion
Sun Jul 27 15:49:05 CEST 2008


Author: heydowns
Date: Sun Jul 27 15:49:04 2008
New Revision: 14428

Log:
Initialize outputed_poc to INT_MIN at decoder initialization.
Fixes issue 560


Modified:
   trunk/libavcodec/h264.c

Modified: trunk/libavcodec/h264.c
==============================================================================
--- trunk/libavcodec/h264.c	(original)
+++ trunk/libavcodec/h264.c	Sun Jul 27 15:49:04 2008
@@ -2192,6 +2192,7 @@ static av_cold int decode_init(AVCodecCo
     }
 
     h->thread_context[0] = h;
+    h->outputed_poc = INT_MIN;
     return 0;
 }
 




More information about the ffmpeg-cvslog mailing list