Fix crazy thinko in Rect::extend() causing subtitles to disappear when they were...
[dcpomatic.git] / hacks / pixfmts.c
1 #include <libavutil/pixfmt.h>
2 #include <stdio.h>
3
4 #define SHOW(x) printf("%d " #x "\n", x);
5 int main()
6 {
7         SHOW(AV_PIX_FMT_YUV420P);
8         SHOW(AV_PIX_FMT_YUV420P16LE);
9         SHOW(AV_PIX_FMT_YUV422P10LE);
10         SHOW(AV_PIX_FMT_YUV444P9BE);
11 }