From b33ece1634793c1fb65508891fbdb96c201f5f75 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Mon, 18 Jun 2007 08:08:43 +0000 Subject: replace calls to deprecated parsing functions to calls to new ones patch by Stefano Sabatini: [stefano sabatini-lala poste it] Originally committed as revision 9359 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffplay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ffplay.c') diff --git a/ffplay.c b/ffplay.c index 22709f8f7c..574ef26d58 100644 --- a/ffplay.c +++ b/ffplay.c @@ -2368,7 +2368,7 @@ static void event_loop(void) static void opt_frame_size(const char *arg) { - if (parse_image_size(&frame_width, &frame_height, arg) < 0) { + if (av_parse_video_frame_size(&frame_width, &frame_height, arg) < 0) { fprintf(stderr, "Incorrect frame size\n"); exit(1); } -- cgit v1.2.3