changeset 7424:69766900be2d libavcodec

Initialize outputed_poc to INT_MIN at decoder initialization. Fixes issue 560
author heydowns
date Sun, 27 Jul 2008 13:49:04 +0000
parents 2eb0e5a2efad
children ed615bbf4f8d
files h264.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/h264.c	Sun Jul 27 13:01:17 2008 +0000
+++ b/h264.c	Sun Jul 27 13:49:04 2008 +0000
@@ -2192,6 +2192,7 @@
     }
 
     h->thread_context[0] = h;
+    h->outputed_poc = INT_MIN;
     return 0;
 }