mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avfilter/vf_extractplanes: add support for extracting planes with 14 depth
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
b9dd058f7a
commit
41ebbae9dd
@ -165,6 +165,8 @@ static int query_formats(AVFilterContext *ctx)
|
||||
static const enum AVPixelFormat out10be_pixfmts[] = { AV_PIX_FMT_GRAY10BE, AV_PIX_FMT_NONE };
|
||||
static const enum AVPixelFormat out12le_pixfmts[] = { AV_PIX_FMT_GRAY12LE, AV_PIX_FMT_NONE };
|
||||
static const enum AVPixelFormat out12be_pixfmts[] = { AV_PIX_FMT_GRAY12BE, AV_PIX_FMT_NONE };
|
||||
static const enum AVPixelFormat out14le_pixfmts[] = { AV_PIX_FMT_GRAY14LE, AV_PIX_FMT_NONE };
|
||||
static const enum AVPixelFormat out14be_pixfmts[] = { AV_PIX_FMT_GRAY14BE, AV_PIX_FMT_NONE };
|
||||
static const enum AVPixelFormat out16le_pixfmts[] = { AV_PIX_FMT_GRAY16LE, AV_PIX_FMT_NONE };
|
||||
static const enum AVPixelFormat out16be_pixfmts[] = { AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_NONE };
|
||||
const enum AVPixelFormat *out_pixfmts, *in_pixfmts;
|
||||
@ -212,6 +214,10 @@ static int query_formats(AVFilterContext *ctx)
|
||||
out_pixfmts = out12le_pixfmts;
|
||||
else if (be && depth == 12)
|
||||
out_pixfmts = out12be_pixfmts;
|
||||
else if (!be && depth == 14)
|
||||
out_pixfmts = out14le_pixfmts;
|
||||
else if (be && depth == 14)
|
||||
out_pixfmts = out14be_pixfmts;
|
||||
else if (be)
|
||||
out_pixfmts = out16be_pixfmts;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user