diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-06-08 14:41:24 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2012-06-08 21:32:10 +0200 |
commit | cb819338d1724bc92027f01a30565dd409f0d672 (patch) | |
tree | a80fdca98d7b774bf8ac7bba57889a1423ce4965 /ffplay.c | |
parent | 349b65eee2fd5590b7e511c915dcd2d3aef3960e (diff) | |
download | ffmpeg-cb819338d1724bc92027f01a30565dd409f0d672.tar.gz |
ffplay: reset AVFrame to defaults before decoding each new frame.
This fixes: ffplay -f lavfi -i cellauto
This was a regression since factorizing the filter code with ffmpeg.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1668,6 +1668,7 @@ static int video_thread(void *arg) while (is->paused && !is->videoq.abort_request) SDL_Delay(10); + avcodec_get_frame_defaults(frame); ret = get_video_frame(is, frame, &pts_int, &pkt); if (ret < 0) goto the_end; |