diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-13 20:23:01 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-13 20:30:03 +0200 |
commit | 536baf6cc5d1db789c9f903776dccb7a41b62a6e (patch) | |
tree | ec3182c346051eb040742a08978ed15fac59657c /libavformat/oggenc.c | |
parent | ded2f187a2725a3ca5dc7142dc31e22e5684a994 (diff) | |
download | ffmpeg-536baf6cc5d1db789c9f903776dccb7a41b62a6e.tar.gz |
oggenc: Fix pref_duration AVOption type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 3d4519c1ac..9a815d14a2 100644 --- a/libavformat/oggenc.c +++ b/libavformat/oggenc.c @@ -81,7 +81,7 @@ static const AVOption options[] = { { "pagesize", "preferred page size in bytes (deprecated)", OFFSET(pref_size), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, MAX_PAGE_SIZE, PARAM }, { "page_duration", "preferred page duration, in microseconds", - OFFSET(pref_duration), AV_OPT_TYPE_INT, { .i64 = 1000000 }, 0, INT64_MAX, PARAM }, + OFFSET(pref_duration), AV_OPT_TYPE_INT64, { .i64 = 1000000 }, 0, INT64_MAX, PARAM }, { NULL }, }; |