diff options
author | Paul B Mahol | 2013-06-04 11:56:14 +0000 |
---|---|---|
committer | Paul B Mahol | 2013-06-04 21:57:25 +0000 |
commit | 0804171104057b20897cec1b59456702744d12fe (patch) | |
tree | ae706195db7c1999a0c78690753ff4eabe5da64a /libswresample/swresample.c | |
parent | 495bf1b68574a27536dcf2e06bad3cf72a84f7ba (diff) |
swresample: set flags & description and add documentation for output_sample_bits
Allows users to actually use such option.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libswresample/swresample.c')
-rw-r--r-- | libswresample/swresample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c index 49987c7adc..012de02cf4 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -127,7 +127,7 @@ static const AVOption options[]={ { "kaiser_beta" , "set swr Kaiser Window Beta" , OFFSET(kaiser_beta) , AV_OPT_TYPE_INT , {.i64=9 }, 2 , 16 , PARAM }, -{ "output_sample_bits" , "" , OFFSET(dither.output_sample_bits) , AV_OPT_TYPE_INT , {.i64=0 }, 0 , 64 , 0 }, +{ "output_sample_bits" , "set swr number of output sample bits", OFFSET(dither.output_sample_bits), AV_OPT_TYPE_INT , {.i64=0 }, 0 , 64 , PARAM }, {0} }; |