Browse Source

avfilter/vf_extractplanes: add support for extracting planes with 14 depth

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n4.1
Paul B Mahol 7 years ago
parent
commit
41ebbae9dd
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      libavfilter/vf_extractplanes.c

+ 6
- 0
libavfilter/vf_extractplanes.c View File

@@ -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…
Cancel
Save