summaryrefslogtreecommitdiff
path: root/hacks/pixfmts.c
diff options
context:
space:
mode:
Diffstat (limited to 'hacks/pixfmts.c')
-rw-r--r--hacks/pixfmts.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/hacks/pixfmts.c b/hacks/pixfmts.c
new file mode 100644
index 000000000..8aa5c4a69
--- /dev/null
+++ b/hacks/pixfmts.c
@@ -0,0 +1,11 @@
+#include <libavutil/pixfmt.h>
+#include <stdio.h>
+
+#define SHOW(x) printf("%d " #x "\n", x);
+int main()
+{
+ SHOW(AV_PIX_FMT_YUV420P);
+ SHOW(AV_PIX_FMT_YUV420P16LE);
+ SHOW(AV_PIX_FMT_YUV422P10LE);
+ SHOW(AV_PIX_FMT_YUV444P9BE);
+}