[SCM] libav/experimental: fix frame size option, patch by Limin Wang, lance lmwang gmail com

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:57:03 UTC 2013


The following commit has been merged in the experimental branch:
commit eb3c8c0b311676fdec72f0be5fd5a6feafb051f0
Author: Limin Wang <lance.lmwang at gmail.com>
Date:   Thu Mar 1 10:00:07 2007 +0000

    fix frame size option, patch by Limin Wang, lance lmwang gmail com
    
    Originally committed as revision 8165 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/ffplay.c b/ffplay.c
index 4fa5511..ac1d990 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);
     }

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list