diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-01-11 00:37:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-01-11 00:37:25 +0000 |
commit | fb966f99b0f5353a6cae421f970ae227a95ed969 (patch) | |
tree | c11007e39ce4322aa8ac918d0480b3685c61284c /ffplay.c | |
parent | 041086191fc08ab162ad6117b07a5f39639d5d9d (diff) | |
download | ffmpeg-fb966f99b0f5353a6cae421f970ae227a95ed969.tar.gz |
ignore damaged video frames
Originally committed as revision 2692 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -913,8 +913,8 @@ static int video_thread(void *arg) len1 = avcodec_decode_video(&is->video_st->codec, frame, &got_picture, pkt->data, pkt->size); - if (len1 < 0) - break; +// if (len1 < 0) +// break; if (got_picture) { if (output_picture2(is, frame, pts) < 0) goto the_end; |