diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-12-19 22:33:15 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-12-19 22:33:15 +0000 |
commit | 5c548937e0f54bf72fefbf3696f71f8b6bb6ffd0 (patch) | |
tree | ac35005364a0b59fd57b0fa37fc2ee3e3f20d456 | |
parent | f16dd7e65a936def99ff00f946544f75ee2f4f73 (diff) | |
download | ffmpeg-5c548937e0f54bf72fefbf3696f71f8b6bb6ffd0.tar.gz |
Cosmetics, change variable name "o2" to "o" in ffserver_opt_default().
Originally committed as revision 16242 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffserver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ffserver.c b/ffserver.c index d7bd09227b..c48cb41592 100644 --- a/ffserver.c +++ b/ffserver.c @@ -3736,8 +3736,8 @@ static int ffserver_opt_default(const char *opt, const char *arg, 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; } |