From 7e0429129c897f92b6fbed2d3952e3362c90a3b0 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 9 Feb 2007 13:24:08 +0000 Subject: [PATCH] fix rawvideo Originally committed as revision 7899 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffplay.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ffplay.c b/ffplay.c index feaae38bc1..644ae71eb3 100644 --- a/ffplay.c +++ b/ffplay.c @@ -1866,6 +1866,10 @@ static int decode_thread(void *arg) ap->initial_pause = 1; /* we force a pause when starting an RTSP stream */ + ap->width = screen_width; + ap->height= screen_height; + ap->time_base= (AVRational){1, 25}; + err = av_open_input_file(&ic, is->filename, is->iformat, 0, ap); if (err < 0) { print_error(is->filename, err);