Commit 5e5356fa authored by stefano's avatar stefano

Make the codec tags for the yuvjXXX pixel formats the same as the

corresponding ones for the yuvXXX pixel formats.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23073 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent aade110d
......@@ -36,6 +36,13 @@ const PixelFormatTag ff_raw_pixelFormatTags[] = {
{ PIX_FMT_YUV411P, MKTAG('Y', '4', '1', 'B') },
{ PIX_FMT_YUV422P, MKTAG('Y', '4', '2', 'B') },
{ PIX_FMT_YUV422P, MKTAG('P', '4', '2', '2') },
/* yuvjXXX formats are deprecated hacks specific to libav*,
they are identical to yuvXXX */
{ PIX_FMT_YUVJ420P, MKTAG('I', '4', '2', '0') }, /* Planar formats */
{ PIX_FMT_YUVJ420P, MKTAG('I', 'Y', 'U', 'V') },
{ PIX_FMT_YUVJ420P, MKTAG('Y', 'V', '1', '2') },
{ PIX_FMT_YUVJ422P, MKTAG('Y', '4', '2', 'B') },
{ PIX_FMT_YUVJ422P, MKTAG('P', '4', '2', '2') },
{ PIX_FMT_GRAY8, MKTAG('Y', '8', '0', '0') },
{ PIX_FMT_GRAY8, MKTAG(' ', ' ', 'Y', '8') },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment