This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
pix_fmt: Fix number of bits per component in yuv444p9be
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
tags/n0.9
Oskar Arvidsson
Ronald S. Bultje
14 years ago
parent
5f847bf61d
commit
e59d6b4d72
1 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-3
libavutil/pixdesc.c
+ 3
- 3
libavutil/pixdesc.c
View File
@@ -918,9 +918,9 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = {
.log2_chroma_w= 0,
.log2_chroma_h= 0,
.comp = {
{0,1,1,0,
9
}, /* Y */
{1,1,1,0,
9
}, /* U */
{2,1,1,0,
9
}, /* V */
{0,1,1,0,
8
}, /* Y */
{1,1,1,0,
8
}, /* U */
{2,1,1,0,
8
}, /* V */
},
.flags = PIX_FMT_BE,
},
Write
Preview
Loading…
Cancel
Save