summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorLimin Wang <lance.lmwang@gmail.com>2007-03-01 10:00:07 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-03-01 10:00:07 +0000
commiteb3c8c0b311676fdec72f0be5fd5a6feafb051f0 (patch)
treedbfbc11e1c8c3238f3837c2c59d484fb511c63cf /ffplay.c
parentccec0f4f94adbcfe774dba4cb8d3b483dfac1b19 (diff)
fix frame size option, patch by Limin Wang, lance lmwang gmail com
Originally committed as revision 8165 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index 4fa5511ac3..ac1d9906a3 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -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);
}