diff options
author | Philip Langdale <philipl@overt.org> | 2022-09-03 15:58:47 -0700 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2022-09-06 12:49:10 -0700 |
commit | 8d9462844a85b0546c827a5f2c4cc7a1ba49dc9d (patch) | |
tree | 8561b2649cadd9b9454ce6a3f15808794fb4e497 /libswscale/utils.c | |
parent | f4097e4c1f1bb244cae78c363a69d5e84495b616 (diff) | |
download | ffmpeg-8d9462844a85b0546c827a5f2c4cc7a1ba49dc9d.tar.gz |
swscale/input: add support for XV36LE
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index a621a35862..a67e07b612 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -262,6 +262,7 @@ static const FormatEntry format_entries[] = { [AV_PIX_FMT_VUYX] = { 1, 1 }, [AV_PIX_FMT_RGBAF16BE] = { 1, 0 }, [AV_PIX_FMT_RGBAF16LE] = { 1, 0 }, + [AV_PIX_FMT_XV36LE] = { 1, 0 }, }; int ff_shuffle_filter_coefficients(SwsContext *c, int *filterPos, |