diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-09-12 12:54:25 +0200 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-09-12 12:54:25 +0200 |
commit | ba42096d9acb73cc9b74685bf822a3180d96bab5 (patch) | |
tree | db8ec71f12e0850f89405c1a534f9264c1243b57 /libavutil | |
parent | d5f8a642f6eb1c6e305c41dabddd0fd36ffb3f77 (diff) | |
parent | e336c51e6ffcdb93fbcf3c6153d378400608526b (diff) | |
download | ffmpeg-ba42096d9acb73cc9b74685bf822a3180d96bab5.tar.gz |
Merge commit 'e336c51e6ffcdb93fbcf3c6153d378400608526b'
* commit 'e336c51e6ffcdb93fbcf3c6153d378400608526b':
pixdesc: Consistently order components
Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/pixdesc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index 8505334d62..72d0470ae1 100644 --- a/libavutil/pixdesc.c +++ b/libavutil/pixdesc.c @@ -161,8 +161,8 @@ static const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = { .log2_chroma_h = 0, .comp = { { 0, 2, 0, 0, 8, 1, 7, 1 }, /* Y */ - { 0, 4, 1, 0, 8, 3, 7, 2 }, /* V */ { 0, 4, 3, 0, 8, 3, 7, 4 }, /* U */ + { 0, 4, 1, 0, 8, 3, 7, 2 }, /* V */ }, }, [AV_PIX_FMT_RGB24] = { |