diff options
author | Mans Rullgard <mans@mansr.com> | 2012-06-29 15:23:03 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-07-05 21:57:51 +0100 |
commit | 0a19000da8d744ff64b902f9f3fede1d865b1ae7 (patch) | |
tree | ba18c529ce8df78e0de5a19f89e36b4a3b6a2cd9 /libavcodec/options_table.h | |
parent | 784514a4a8c621290fc5fa942ad286f9726475a9 (diff) | |
download | ffmpeg-0a19000da8d744ff64b902f9f3fede1d865b1ae7.tar.gz |
lavc: options: add planar names for request_sample_fmt
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/options_table.h')
-rw-r--r-- | libavcodec/options_table.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h index 5ecf4f7ee9..7f5b643150 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -391,6 +391,11 @@ static const AVOption options[]={ {"s32", "32-bit signed integer", 0, AV_OPT_TYPE_CONST, {.dbl = AV_SAMPLE_FMT_S32 }, INT_MIN, INT_MAX, A|D, "request_sample_fmt"}, {"flt", "32-bit float", 0, AV_OPT_TYPE_CONST, {.dbl = AV_SAMPLE_FMT_FLT }, INT_MIN, INT_MAX, A|D, "request_sample_fmt"}, {"dbl", "64-bit double", 0, AV_OPT_TYPE_CONST, {.dbl = AV_SAMPLE_FMT_DBL }, INT_MIN, INT_MAX, A|D, "request_sample_fmt"}, +{"u8p" , "8-bit unsigned integer planar", 0, AV_OPT_TYPE_CONST, {.dbl = AV_SAMPLE_FMT_U8P }, INT_MIN, INT_MAX, A|D, "request_sample_fmt"}, +{"s16p", "16-bit signed integer planar", 0, AV_OPT_TYPE_CONST, {.dbl = AV_SAMPLE_FMT_S16P }, INT_MIN, INT_MAX, A|D, "request_sample_fmt"}, +{"s32p", "32-bit signed integer planar", 0, AV_OPT_TYPE_CONST, {.dbl = AV_SAMPLE_FMT_S32P }, INT_MIN, INT_MAX, A|D, "request_sample_fmt"}, +{"fltp", "32-bit float planar", 0, AV_OPT_TYPE_CONST, {.dbl = AV_SAMPLE_FMT_FLTP }, INT_MIN, INT_MAX, A|D, "request_sample_fmt"}, +{"dblp", "64-bit double planar", 0, AV_OPT_TYPE_CONST, {.dbl = AV_SAMPLE_FMT_DBLP }, INT_MIN, INT_MAX, A|D, "request_sample_fmt"}, {NULL}, }; |