summaryrefslogtreecommitdiff
path: root/hacks
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-08 23:26:21 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-08 23:26:21 +0100
commit54ef3f25f924a677de0d71e1f773898b56ab5852 (patch)
treeb2d57ad1a77a17076c8044f089a3d266778e042c /hacks
parent64a6a87dd4a3fd43665242b8a8b2b35a675a7839 (diff)
Write image subs to DCPs.
Diffstat (limited to 'hacks')
-rw-r--r--hacks/pixfmts.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/hacks/pixfmts.c b/hacks/pixfmts.c
index 8aa5c4a69..e1dd00a9d 100644
--- a/hacks/pixfmts.c
+++ b/hacks/pixfmts.c
@@ -5,6 +5,10 @@
int main()
{
SHOW(AV_PIX_FMT_YUV420P);
+ SHOW(AV_PIX_FMT_ARGB);
+ SHOW(AV_PIX_FMT_RGBA);
+ SHOW(AV_PIX_FMT_ABGR);
+ SHOW(AV_PIX_FMT_BGRA);
SHOW(AV_PIX_FMT_YUV420P16LE);
SHOW(AV_PIX_FMT_YUV422P10LE);
SHOW(AV_PIX_FMT_YUV444P9BE);