summaryrefslogtreecommitdiff
path: root/hacks
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-11-04 10:04:40 +0100
committerCarl Hetherington <cth@carlh.net>2019-11-04 10:04:40 +0100
commitcb94d6a0c1d1fbfafa10acae62dcb35f51f3ec0f (patch)
tree573551ae83611ae54ba688962489a867eef67c25 /hacks
parent8ae50e4e54449d0a347f7b3f4bed76e7cf48786a (diff)
Tweak hack program.
Diffstat (limited to 'hacks')
-rw-r--r--hacks/pixfmts.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hacks/pixfmts.c b/hacks/pixfmts.c
index f3d6e299a..c3ccf2d8d 100644
--- a/hacks/pixfmts.c
+++ b/hacks/pixfmts.c
@@ -5,6 +5,7 @@
int main()
{
SHOW(AV_PIX_FMT_YUV420P);
+ SHOW(AV_PIX_FMT_RGB24);
SHOW(AV_PIX_FMT_ARGB);
SHOW(AV_PIX_FMT_RGBA);
SHOW(AV_PIX_FMT_ABGR);
@@ -21,4 +22,5 @@ int main()
SHOW(AV_PIX_FMT_YUV422P10BE);
SHOW(AV_PIX_FMT_YUV422P9LE);
SHOW(AV_PIX_FMT_GBRP);
+ SHOW(AV_PIX_FMT_XYZ12LE);
}