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
Add pixdescs definitions for planar YUV pixfmts with 16 bits per
component. Originally committed as revision 18690 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Stefano Sabatini
17 years ago
parent
ec32cfd2cc
commit
75801da580
1 changed files
with
69 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+69
-0
libavcodec/pixdesc.c
+ 69
- 0
libavcodec/pixdesc.c
View File
@@ -511,4 +511,73 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = {
{0,1,1,0,4}, /* R */
},
},
[PIX_FMT_YUV420PLE] = {
.name = "yuv420ple",
.nb_channels = 3,
.log2_chroma_w= 1,
.log2_chroma_h= 1,
.comp = {
{0,1,1,0,15}, /* Y */
{1,1,1,0,15}, /* U */
{2,1,1,0,15}, /* V */
},
},
[PIX_FMT_YUV420PBE] = {
.name = "yuv420pbe",
.nb_channels = 3,
.log2_chroma_w= 1,
.log2_chroma_h= 1,
.comp = {
{0,1,1,0,15}, /* Y */
{1,1,1,0,15}, /* U */
{2,1,1,0,15}, /* V */
},
.flags = PIX_FMT_BE,
},
[PIX_FMT_YUV422PLE] = {
.name = "yuv422ple",
.nb_channels = 3,
.log2_chroma_w= 1,
.log2_chroma_h= 0,
.comp = {
{0,1,1,0,15}, /* Y */
{1,1,1,0,15}, /* U */
{2,1,1,0,15}, /* V */
},
},
[PIX_FMT_YUV422PBE] = {
.name = "yuv422pbe",
.nb_channels = 3,
.log2_chroma_w= 1,
.log2_chroma_h= 0,
.comp = {
{0,1,1,0,15}, /* Y */
{1,1,1,0,15}, /* U */
{2,1,1,0,15}, /* V */
},
.flags = PIX_FMT_BE,
},
[PIX_FMT_YUV444PLE] = {
.name = "yuv444ple",
.nb_channels = 3,
.log2_chroma_w= 0,
.log2_chroma_h= 0,
.comp = {
{0,1,1,0,15}, /* Y */
{1,1,1,0,15}, /* U */
{2,1,1,0,15}, /* V */
},
},
[PIX_FMT_YUV444PBE] = {
.name = "yuv444pbe",
.nb_channels = 3,
.log2_chroma_w= 0,
.log2_chroma_h= 0,
.comp = {
{0,1,1,0,15}, /* Y */
{1,1,1,0,15}, /* U */
{2,1,1,0,15}, /* V */
},
.flags = PIX_FMT_BE,
},
};
Write
Preview
Loading…
Cancel
Save