1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Initialize outputed_poc to INT_MIN at decoder initialization.

Fixes issue 560

Originally committed as revision 14428 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Jeff Downs 2008-07-27 13:49:04 +00:00
parent 143d7f1443
commit 18c7be6501

View File

@ -2192,6 +2192,7 @@ static av_cold int decode_init(AVCodecContext *avctx){
} }
h->thread_context[0] = h; h->thread_context[0] = h;
h->outputed_poc = INT_MIN;
return 0; return 0;
} }