[Ffmpeg-cvslog] r8165 - trunk/ffplay.c
bcoudurier
subversion
Thu Mar 1 11:00:07 CET 2007
Author: bcoudurier
Date: Thu Mar 1 11:00:07 2007
New Revision: 8165
Modified:
trunk/ffplay.c
Log:
fix frame size option, patch by Limin Wang, lance lmwang gmail com
Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c (original)
+++ trunk/ffplay.c Thu Mar 1 11:00:07 2007
@@ -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);
}
More information about the ffmpeg-cvslog
mailing list