diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-10-17 07:33:10 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-10-17 07:33:10 +0200 |
commit | 539399d4d1947988c189f72467da0c2532294388 (patch) | |
tree | c8ac82989d00b4f0673954a5c20073c6533f0592 /libavformat/oggenc.c | |
parent | dbd117240a8b0e905b4906e93c633976843123e9 (diff) | |
download | ffmpeg-539399d4d1947988c189f72467da0c2532294388.tar.gz |
AVOptions: rename remaining FF_OPT_TYPE_* to AV_OPT_TYPE_*.
Diffstat (limited to 'libavformat/oggenc.c')
-rw-r--r-- | libavformat/oggenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggenc.c b/libavformat/oggenc.c index a527ab3f83..67dbc04205 100644 --- a/libavformat/oggenc.c +++ b/libavformat/oggenc.c @@ -72,7 +72,7 @@ typedef struct { static const AVOption options[] = { { "oggpagesize", "Set preferred Ogg page size.", - offsetof(OGGContext, pref_size), FF_OPT_TYPE_INT, {.dbl = 0}, 0, MAX_PAGE_SIZE, AV_OPT_FLAG_ENCODING_PARAM}, + offsetof(OGGContext, pref_size), AV_OPT_TYPE_INT, {.dbl = 0}, 0, MAX_PAGE_SIZE, AV_OPT_FLAG_ENCODING_PARAM}, { NULL }, }; |