Browse Source

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>
tags/n1.0
Michael Niedermayer Marton Balint 13 years ago
parent
commit
cb819338d1
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      ffplay.c

+ 1
- 0
ffplay.c View File

@@ -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;


Loading…
Cancel
Save