# HG changeset patch # User heydowns # Date 1217166544 0 # Node ID 69766900be2de90e32f8130b1c3b585a6b2afcc4 # Parent 2eb0e5a2efad245c660e06c0879f450da44213df Initialize outputed_poc to INT_MIN at decoder initialization. Fixes issue 560 diff -r 2eb0e5a2efad -r 69766900be2d h264.c --- 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; }