diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-09 23:04:01 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-09 23:04:01 +0000 |
commit | 934edecdb88626a679d1cfc16fc094dc87f7c589 (patch) | |
tree | 6cc2496f826403163313a9c88b9ef2b1d6a71303 /libavcodec/raw.c | |
parent | b43f432c8c4c83ad98265c5055766f1bec905a52 (diff) | |
download | ffmpeg-934edecdb88626a679d1cfc16fc094dc87f7c589.tar.gz |
Make the codec tags for the yuvjXXX pixel formats the same as the
corresponding ones for the yuvXXX pixel formats.
Originally committed as revision 23073 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/raw.c')
-rw-r--r-- | libavcodec/raw.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/raw.c b/libavcodec/raw.c index c8adf310d8..bd386c2023 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -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') }, |