diff options
author | Philip Langdale <philipl@overt.org> | 2019-05-11 10:12:47 -0700 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2019-05-12 07:51:02 -0700 |
commit | 4fa4f1d7a9499032b8fcef8ed075294baf868be7 (patch) | |
tree | adf7bcd958a34c92c51fa7d2118308cac6d7caaa /libswscale/tests | |
parent | cd483180356c8f206f32393acc52a85c5b76758b (diff) | |
download | ffmpeg-4fa4f1d7a9499032b8fcef8ed075294baf868be7.tar.gz |
swscale: Add test for isSemiPlanarYUV to pixdesc_query
Lauri had asked me what the semi planar formats were and that reminded
me that we could add it to pixdesc_query so we know exactly what the
list is.
Diffstat (limited to 'libswscale/tests')
-rw-r--r-- | libswscale/tests/pixdesc_query.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswscale/tests/pixdesc_query.c b/libswscale/tests/pixdesc_query.c index a5585c4314..f6dd8bae68 100644 --- a/libswscale/tests/pixdesc_query.c +++ b/libswscale/tests/pixdesc_query.c @@ -32,6 +32,7 @@ static const struct { {"isBE", isBE}, {"isYUV", isYUV}, {"isPlanarYUV", isPlanarYUV}, + {"isSemiPlanarYUV", isSemiPlanarYUV}, {"isRGB", isRGB}, {"Gray", isGray}, {"RGBinInt", isRGBinInt}, |