diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2007-06-18 08:08:43 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2007-06-18 08:08:43 +0000 |
commit | b33ece1634793c1fb65508891fbdb96c201f5f75 (patch) | |
tree | 40dae27d45c74c0ac2a3034aecde4b79b51272f2 /ffplay.c | |
parent | aa45201dd583b0e6fd0d262c50fe7931f9bb6d9b (diff) | |
download | ffmpeg-b33ece1634793c1fb65508891fbdb96c201f5f75.tar.gz |
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
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |