diff options
author | cehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2011-10-23 20:40:31 +0000 |
---|---|---|
committer | wm4 <wm4@mplayer2.org> | 2012-03-25 23:03:15 +0200 |
commit | b223805547e7272cfa376ddf69e82806af48a602 (patch) | |
tree | 7eff7e78730bcf0ddcd157cb4afa187bd8bde1c7 /fmt-conversion.c | |
parent | 7d0c4c3c312a14bc5674a9f38826d79ca8f3466f (diff) | |
download | mpv-b223805547e7272cfa376ddf69e82806af48a602.tar.bz2 mpv-b223805547e7272cfa376ddf69e82806af48a602.tar.xz |
libmpcodecs: support planar GBR24 decoding
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34245 b3059339-0415-0410-9bf9-f77b7e298cf2
Note: ffmpeg first introduced PIX_FMT_GBR24P, which was used in this
commit. Later, it was renamed to PIX_FMT_GBRP in ffmpeg and libav. This
was updated in revision 34492 in mplayer, but the mplayer specific
names (such as IMGFMT_GBR24) were left unchanged.
Diffstat (limited to 'fmt-conversion.c')
-rw-r--r-- | fmt-conversion.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fmt-conversion.c b/fmt-conversion.c index 6ab6a4b82f..2648811b89 100644 --- a/fmt-conversion.c +++ b/fmt-conversion.c @@ -55,6 +55,7 @@ static const struct { {IMGFMT_RGB8, PIX_FMT_BGR8}, {IMGFMT_RGB4, PIX_FMT_BGR4}, {IMGFMT_BGR8, PIX_FMT_PAL8}, + {IMGFMT_GBR24P, PIX_FMT_GBRP}, {IMGFMT_YUY2, PIX_FMT_YUYV422}, {IMGFMT_UYVY, PIX_FMT_UYVY422}, {IMGFMT_NV12, PIX_FMT_NV12}, |