diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-03-04 18:38:45 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-03-05 13:20:14 +0100 |
commit | b1a26849364878707cf5358b477a4c489baf230a (patch) | |
tree | 91bfe059207f530072fa2b77d556ef5ccc85c6fd /libavutil/opt.c | |
parent | 7b9a3df5d71677c9a03ffea1699c416883c5d176 (diff) | |
download | ffmpeg-b1a26849364878707cf5358b477a4c489baf230a.tar.gz |
lavu/opt: fix weird align
Diffstat (limited to 'libavutil/opt.c')
-rw-r--r-- | libavutil/opt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c index 211ca5e317..f91d18b198 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -1322,7 +1322,7 @@ typedef struct TestContext static const AVOption test_options[]= { {"num", "set num", OFFSET(num), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 100 }, {"toggle", "set toggle", OFFSET(toggle), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1 }, -{"rational", "set rational", OFFSET(rational), AV_OPT_TYPE_RATIONAL, {.dbl = 0}, 0, 10 }, +{"rational", "set rational", OFFSET(rational), AV_OPT_TYPE_RATIONAL, {.dbl = 0}, 0, 10 }, {"string", "set string", OFFSET(string), AV_OPT_TYPE_STRING, {.str = "default"}, CHAR_MIN, CHAR_MAX }, {"flags", "set flags", OFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, 0, INT_MAX, 0, "flags" }, {"cool", "set cool flag ", 0, AV_OPT_TYPE_CONST, {.i64 = TEST_FLAG_COOL}, INT_MIN, INT_MAX, 0, "flags" }, |