diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-04 07:38:01 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-12 16:51:16 +0200 |
commit | 145f741e115c75eac511e0ceb7a3c44585e871e3 (patch) | |
tree | 5a9dae8f2a3de7c1652b85a4ec6242a1f1f2ede6 /libavformat/gif.c | |
parent | 3b3ea34655db02d9cd9ea1a4122e920a7fdec602 (diff) | |
download | ffmpeg-145f741e115c75eac511e0ceb7a3c44585e871e3.tar.gz |
AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_*
Diffstat (limited to 'libavformat/gif.c')
-rw-r--r-- | libavformat/gif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/gif.c b/libavformat/gif.c index f831787c60..3ef7ebe9be 100644 --- a/libavformat/gif.c +++ b/libavformat/gif.c @@ -351,7 +351,7 @@ static int gif_write_trailer(AVFormatContext *s) #define OFFSET(x) offsetof(GIFContext, x) #define ENC AV_OPT_FLAG_ENCODING_PARAM static const AVOption options[] = { - { "loop", "Number of times to loop the output.", OFFSET(loop), FF_OPT_TYPE_INT, {0}, 0, 65535, ENC }, + { "loop", "Number of times to loop the output.", OFFSET(loop), AV_OPT_TYPE_INT, {0}, 0, 65535, ENC }, { NULL }, }; |