Commit 6e5c6d25 authored by bcoudurier's avatar bcoudurier

fix frame size option, patch by Limin Wang, lance lmwang gmail com

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8165 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ddee55fa
......@@ -2341,7 +2341,7 @@ static void event_loop(void)
static void opt_frame_size(const char *arg)
{
if (parse_image_size(&screen_width, &screen_height, arg) < 0) {
if (parse_image_size(&frame_width, &frame_height, arg) < 0) {
fprintf(stderr, "Incorrect frame size\n");
exit(1);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment