[FFmpeg-cvslog] r16242 - trunk/ffserver.c

stefano subversion
Fri Dec 19 23:33:15 CET 2008


Author: stefano
Date: Fri Dec 19 23:33:15 2008
New Revision: 16242

Log:
Cosmetics, change variable name "o2" to "o" in ffserver_opt_default().


Modified:
   trunk/ffserver.c

Modified: trunk/ffserver.c
==============================================================================
--- trunk/ffserver.c	(original)
+++ trunk/ffserver.c	Fri Dec 19 23:33:15 2008
@@ -3736,8 +3736,8 @@ static int ffserver_opt_default(const ch
                        AVCodecContext *avctx, int type)
 {
     int ret = 0;
-    const AVOption *o2 = av_find_opt(avctx, opt, NULL, type, type);
-    if(o2)
+    const AVOption *o = av_find_opt(avctx, opt, NULL, type, type);
+    if(o)
         ret = av_set_string3(avctx, opt, arg, 1, NULL);
     return ret;
 }




More information about the ffmpeg-cvslog mailing list