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
This commit is contained in:
Stefano Sabatini
2007-06-18 08:08:43 +00:00
committed by Benoit Fouet
parent aa45201dd5
commit b33ece1634
3 changed files with 13 additions and 14 deletions

View File

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