
Data Structures | |
| struct | entry_t |
Defines | |
| #define | NULL4 "\x00\x00\x00\x00" |
| #define | FCC2STR(f) { ((f)>>0)&0xff, ((f)>>8)&0xff, ((f)>>16)&0xff, ((f)>>24)&0xff } |
| #define | B(a, c) { .p_class = FCC2STR(a), .p_fourcc = FCC2STR(a), .psz_description = c } |
| #define | E(b, c) { .p_class = NULL4, .p_fourcc = b, .psz_description = c } |
| #define | A(b) E(b, NULL4) |
| #define | VLC_CODEC_YUV_PLANAR_410 VLC_CODEC_I410, VLC_CODEC_YV9 |
| #define | VLC_CODEC_YUV_PLANAR_420 VLC_CODEC_I420, VLC_CODEC_YV12, VLC_CODEC_J420 |
| #define | VLC_CODEC_YUV_PLANAR_422 VLC_CODEC_I422, VLC_CODEC_J422 |
| #define | VLC_CODEC_YUV_PLANAR_440 VLC_CODEC_I440, VLC_CODEC_J440 |
| #define | VLC_CODEC_YUV_PLANAR_444 VLC_CODEC_I444, VLC_CODEC_J444 |
| #define | VLC_CODEC_YUV_PACKED |
| #define | VLC_CODEC_FALLBACK_420 |
| #define | VLC_CODEC_FALLBACK_422 |
| #define | VLC_CODEC_FALLBACK_444 |
| #define | VLC_CODEC_FALLBACK_PACKED |
| #define | PLANAR(n, w_den, h_den) |
| #define | PACKED(size) |
Functions | |
| static vlc_fourcc_t | CreateFourcc (const char *psz_fourcc) |
| static entry_t | Lookup (const entry_t p_list[], vlc_fourcc_t i_fourcc) |
| static entry_t | Find (int i_cat, vlc_fourcc_t i_fourcc) |
| vlc_fourcc_t | vlc_fourcc_GetCodec (int i_cat, vlc_fourcc_t i_fourcc) |
| It returns the codec associated to a fourcc within a ES category. | |
| vlc_fourcc_t | vlc_fourcc_GetCodecFromString (int i_cat, const char *psz_fourcc) |
| It returns the codec associated to a fourcc store in a zero terminated string. | |
| vlc_fourcc_t | vlc_fourcc_GetCodecAudio (vlc_fourcc_t i_fourcc, int i_bits) |
| It convert the gives fourcc to an audio codec when possible. | |
| const char * | vlc_fourcc_GetDescription (int i_cat, vlc_fourcc_t i_fourcc) |
| It returns the description of the given fourcc or NULL if not found. | |
| static const vlc_fourcc_t * | GetFallback (vlc_fourcc_t i_fourcc, const vlc_fourcc_t *pp_fallback[], const vlc_fourcc_t p_list[]) |
| const vlc_fourcc_t * | vlc_fourcc_GetYUVFallback (vlc_fourcc_t i_fourcc) |
| It returns a list (terminated with the value 0) of YUV fourccs in decreasing priority order for the given chroma. | |
| const vlc_fourcc_t * | vlc_fourcc_GetRGBFallback (vlc_fourcc_t i_fourcc) |
| It returns a list (terminated with the value 0) of RGB fourccs in decreasing priority order for the given chroma. | |
| bool | vlc_fourcc_AreUVPlanesSwapped (vlc_fourcc_t a, vlc_fourcc_t b) |
| It returns true if the two fourccs are equivalent if their U&V planes are swapped. | |
| bool | vlc_fourcc_IsYUV (vlc_fourcc_t fcc) |
| It returns true if the given fourcc is YUV and false otherwise. | |
| const vlc_chroma_description_t * | vlc_fourcc_GetChromaDescription (vlc_fourcc_t i_fourcc) |
| It returns a vlc_chroma_description_t describing the request fourcc or NULL if not found. | |
Variables | |
| static const entry_t | p_list_video [] |
| static const entry_t | p_list_audio [] |
| static const entry_t | p_list_spu [] |
| static const vlc_fourcc_t | p_I420_fallback [] |
| static const vlc_fourcc_t | p_J420_fallback [] |
| static const vlc_fourcc_t | p_YV12_fallback [] |
| static const vlc_fourcc_t | p_I422_fallback [] |
| static const vlc_fourcc_t | p_J422_fallback [] |
| static const vlc_fourcc_t | p_I444_fallback [] |
| static const vlc_fourcc_t | p_J444_fallback [] |
| static const vlc_fourcc_t | p_I440_fallback [] |
| static const vlc_fourcc_t | p_YUYV_fallback [] |
| static const vlc_fourcc_t | p_YVYU_fallback [] |
| static const vlc_fourcc_t | p_UYVY_fallback [] |
| static const vlc_fourcc_t | p_VYUY_fallback [] |
| static const vlc_fourcc_t * | pp_YUV_fallback [] |
| static const vlc_fourcc_t | p_list_YUV [] |
| static const vlc_fourcc_t | p_RGB32_fallback [] |
| static const vlc_fourcc_t | p_RGB24_fallback [] |
| static const vlc_fourcc_t | p_RGB16_fallback [] |
| static const vlc_fourcc_t | p_RGB15_fallback [] |
| static const vlc_fourcc_t | p_RGB8_fallback [] |
| static const vlc_fourcc_t * | pp_RGB_fallback [] |
| struct { | |
| vlc_fourcc_t p_fourcc [5] | |
| vlc_chroma_description_t description | |
| } | p_list_chroma_description [] |
Referenced by CalcPeakEQCoeffs(), and CalcShelfEQCoeffs().
Referenced by BlendRGBAI420(), BlendRGBAR16(), BlendRGBAR24(), BlendRGBAYUVPacked(), default_clut_init(), Lookup(), and Render().
Referenced by matroska_segment_c::ParseChapters().
| #define FCC2STR | ( | f | ) | { ((f)>>0)&0xff, ((f)>>8)&0xff, ((f)>>16)&0xff, ((f)>>24)&0xff } |
| #define NULL4 "\x00\x00\x00\x00" |
| #define PACKED | ( | size | ) |
Value:
{ .plane_count = 1, \
.p = { {.w = {1,1}, .h = {1,1}} }, \
.pixel_size = size }
| #define PLANAR | ( | n, | |||
| w_den, | |||||
| h_den | ) |
Value:
{ .plane_count = n, \
.p = { {.w = {1, 1}, .h = {1, 1}}, \
{.w = {1,w_den}, .h = {1,h_den}}, \
{.w = {1,w_den}, .h = {1,h_den}}, \
{.w = {1, 1}, .h = {1, 1}} }, \
.pixel_size = 1 }
| #define VLC_CODEC_FALLBACK_420 |
| #define VLC_CODEC_FALLBACK_422 |
| #define VLC_CODEC_FALLBACK_444 |
| #define VLC_CODEC_FALLBACK_PACKED |
| #define VLC_CODEC_YUV_PACKED |
Value:
| #define VLC_CODEC_YUV_PLANAR_410 VLC_CODEC_I410, VLC_CODEC_YV9 |
| #define VLC_CODEC_YUV_PLANAR_420 VLC_CODEC_I420, VLC_CODEC_YV12, VLC_CODEC_J420 |
| #define VLC_CODEC_YUV_PLANAR_422 VLC_CODEC_I422, VLC_CODEC_J422 |
| #define VLC_CODEC_YUV_PLANAR_440 VLC_CODEC_I440, VLC_CODEC_J440 |
| #define VLC_CODEC_YUV_PLANAR_444 VLC_CODEC_I444, VLC_CODEC_J444 |
| static vlc_fourcc_t CreateFourcc | ( | const char * | psz_fourcc | ) | [inline, static] |
| static entry_t Find | ( | int | i_cat, | |
| vlc_fourcc_t | i_fourcc | |||
| ) | [static] |
References AUDIO_ES, CreateFourcc(), Lookup(), entry_t::p_class, SPU_ES, and VIDEO_ES.
Referenced by vlc_fourcc_GetCodec(), and vlc_fourcc_GetDescription().
| static const vlc_fourcc_t* GetFallback | ( | vlc_fourcc_t | i_fourcc, | |
| const vlc_fourcc_t * | pp_fallback[], | |||
| const vlc_fourcc_t | p_list[] | |||
| ) | [static] |
| static entry_t Lookup | ( | const entry_t | p_list[], | |
| vlc_fourcc_t | i_fourcc | |||
| ) | [static] |
References B, CreateFourcc(), i, entry_t::p_class, entry_t::p_fourcc, and entry_t::psz_description.
Referenced by Find(), var_AddCallback(), var_Change(), var_DelCallback(), var_Destroy(), var_GetAndSet(), var_GetChecked(), var_SetChecked(), var_TriggerCallback(), and var_Type().
| bool vlc_fourcc_AreUVPlanesSwapped | ( | vlc_fourcc_t | a, | |
| vlc_fourcc_t | b | |||
| ) |
It returns true if the two fourccs are equivalent if their U&V planes are swapped.
References i, VLC_CODEC_I410, VLC_CODEC_I420, VLC_CODEC_J420, VLC_CODEC_YV12, and VLC_CODEC_YV9.
Referenced by Direct3DLockSurface(), and DirectXLock().
| const vlc_chroma_description_t* vlc_fourcc_GetChromaDescription | ( | vlc_fourcc_t | i_fourcc | ) |
It returns a vlc_chroma_description_t describing the request fourcc or NULL if not found.
References i, p_fourcc, and p_list_chroma_description.
Referenced by picture_Setup().
| vlc_fourcc_t vlc_fourcc_GetCodec | ( | int | i_cat, | |
| vlc_fourcc_t | i_fourcc | |||
| ) |
It returns the codec associated to a fourcc within a ES category.
If not found, it will return the given fourcc. If found, it will allways be one of the VLC_CODEC_ defined above.
You may use UNKNOWN_ES for the ES category if you don't have the information.
References CreateFourcc(), Find(), and entry_t::p_class.
Referenced by aout_BitsPerSample(), AVI_FourccGetCodec(), es_format_IsSimilar(), EsOutAdd(), GetFfmpegCodec(), GetOmxAudioEncRole(), GetOmxAudioFormat(), GetOmxAudioRole(), GetOmxChromaFormat(), GetOmxVideoEncRole(), GetOmxVideoFormat(), GetOmxVideoRole(), GetVlcChromaSizes(), transcode_audio_new(), transcode_video_encoder_open(), video_format_Setup(), vlc_fourcc_GetCodecAudio(), vlc_fourcc_GetCodecFromString(), and VoutValidateFormat().
| vlc_fourcc_t vlc_fourcc_GetCodecAudio | ( | vlc_fourcc_t | i_fourcc, | |
| int | i_bits | |||
| ) |
It convert the gives fourcc to an audio codec when possible.
The fourcc converted are aflt, araw/pcm , twos, sowt. When an incompatible i_bits is detected, 0 is returned. The other fourcc goes through vlc_fourcc_GetCodec and i_bits is not checked.
References AUDIO_ES, VLC_CODEC_FL32, VLC_CODEC_FL64, VLC_CODEC_S16B, VLC_CODEC_S16L, VLC_CODEC_S24B, VLC_CODEC_S24L, VLC_CODEC_S32B, VLC_CODEC_S32L, VLC_CODEC_S8, VLC_CODEC_U8, VLC_FOURCC, and vlc_fourcc_GetCodec().
Referenced by DecoderOpen(), and EsOutAdd().
| vlc_fourcc_t vlc_fourcc_GetCodecFromString | ( | int | i_cat, | |
| const char * | ||||
| ) |
It returns the codec associated to a fourcc store in a zero terminated string.
If the string is NULL or does not have exactly 4 charateres, it will return 0, otherwise it behaves like vlc_fourcc_GetCodec.
Provided for convenience.
References VLC_FOURCC, and vlc_fourcc_GetCodec().
Referenced by CommonOpen(), OpenDecoder(), OpenDemux(), OpenVideoCommon(), and OpenVideoDev().
| const char* vlc_fourcc_GetDescription | ( | int | i_cat, | |
| vlc_fourcc_t | i_fourcc | |||
| ) |
It returns the description of the given fourcc or NULL if not found.
You may use UNKNOWN_ES for the ES category if you don't have the information.
References Find(), and entry_t::psz_description.
Referenced by EsOutUpdateInfo(), GetFfmpegCodec(), GetOmxAudioFormat(), GetOmxChromaFormat(), GetOmxVideoFormat(), GetVlcAudioFormat(), GetVlcChromaFormat(), GetVlcFourcc(), and GetVlcVideoFormat().
| const vlc_fourcc_t* vlc_fourcc_GetRGBFallback | ( | vlc_fourcc_t | ) |
It returns a list (terminated with the value 0) of RGB fourccs in decreasing priority order for the given chroma.
It will always return a non NULL pointer that must not be freed.
References GetFallback(), p_RGB32_fallback, and pp_RGB_fallback.
Referenced by Direct3DFindFormat().
| const vlc_fourcc_t* vlc_fourcc_GetYUVFallback | ( | vlc_fourcc_t | ) |
It returns a list (terminated with the value 0) of YUV fourccs in decreasing priority order for the given chroma.
It will always return a non NULL pointer that must not be freed.
References GetFallback(), p_list_YUV, and pp_YUV_fallback.
Referenced by Direct3DFindFormat(), and DirectXCreatePictureResource().
| bool vlc_fourcc_IsYUV | ( | vlc_fourcc_t | fcc | ) |
It returns true if the given fourcc is YUV and false otherwise.
References i, and p_list_YUV.
Referenced by Direct3DFindFormat(), DirectXCreatePictureResource(), and DirectXOpen().
Referenced by vlc_fourcc_GetChromaDescription().
const vlc_fourcc_t p_I420_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'U' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) 'U' ) << 24 ) ) , ( ((uint32_t) 'U' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'V' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'V' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) '9' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) '2' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , 0
}
const vlc_fourcc_t p_I422_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'U' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) 'U' ) << 24 ) ) , ( ((uint32_t) 'U' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'V' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'V' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) '9' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) '2' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , 0
}
const vlc_fourcc_t p_I440_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) ,
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) ,
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) ,
( ((uint32_t) 'Y' ) | ( ((uint32_t) 'U' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) 'U' ) << 24 ) ) , ( ((uint32_t) 'U' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'V' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'V' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) ,
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) '9' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) '2' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , 0
}
const vlc_fourcc_t p_I444_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'U' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) 'U' ) << 24 ) ) , ( ((uint32_t) 'U' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'V' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'V' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) '9' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) '2' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , 0
}
const vlc_fourcc_t p_J420_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'U' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) 'U' ) << 24 ) ) , ( ((uint32_t) 'U' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'V' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'V' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) '9' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) '2' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , 0
}
const vlc_fourcc_t p_J422_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'U' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) 'U' ) << 24 ) ) , ( ((uint32_t) 'U' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'V' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'V' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) '9' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) '2' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , 0
}
const vlc_fourcc_t p_J444_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'U' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) 'U' ) << 24 ) ) , ( ((uint32_t) 'U' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'V' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'V' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) '9' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) '2' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , 0
}
const entry_t p_list_audio[] [static] |
struct { ... } p_list_chroma_description[] [static] |
Referenced by vlc_fourcc_GetChromaDescription().
const entry_t p_list_spu[] [static] |
const entry_t p_list_video[] [static] |
const vlc_fourcc_t p_list_YUV[] [static] |
Initial value:
{
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) ,
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) ,
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) ,
( ((uint32_t) 'Y' ) | ( ((uint32_t) 'U' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) 'U' ) << 24 ) ) , ( ((uint32_t) 'U' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'V' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'V' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) ,
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) '9' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) '2' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) ,
0,
}
Referenced by vlc_fourcc_GetYUVFallback(), and vlc_fourcc_IsYUV().
const vlc_fourcc_t p_RGB15_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '5' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '6' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '3' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'G' ) << 8 ) | ( ((uint32_t) 'B' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
0,
}
const vlc_fourcc_t p_RGB16_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '6' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '3' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '5' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'G' ) << 8 ) | ( ((uint32_t) 'B' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
0,
}
const vlc_fourcc_t p_RGB24_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '3' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '6' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '5' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'G' ) << 8 ) | ( ((uint32_t) 'B' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
0,
}
const vlc_fourcc_t p_RGB32_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '3' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '6' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '5' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'G' ) << 8 ) | ( ((uint32_t) 'B' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
0,
}
Referenced by vlc_fourcc_GetRGBFallback().
const vlc_fourcc_t p_RGB8_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'R' ) | ( ((uint32_t) 'G' ) << 8 ) | ( ((uint32_t) 'B' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '5' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '6' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) ,
( ((uint32_t) 'R' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '3' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
0,
}
const vlc_fourcc_t p_UYVY_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'U' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'V' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) ,
( ((uint32_t) 'V' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) ,
( ((uint32_t) 'Y' ) | ( ((uint32_t) 'U' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) 'U' ) << 24 ) ) ,
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) '9' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) '2' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , 0
}
const vlc_fourcc_t p_VYUY_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'V' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) ,
( ((uint32_t) 'U' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'V' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) ,
( ((uint32_t) 'Y' ) | ( ((uint32_t) 'U' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) 'U' ) << 24 ) ) ,
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) '9' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) '2' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , 0
}
const vlc_fourcc_t p_YUYV_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'Y' ) | ( ((uint32_t) 'U' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) 'U' ) << 24 ) ) ,
( ((uint32_t) 'U' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'V' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) ,
( ((uint32_t) 'V' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) ,
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) '9' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) '2' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , 0
}
const vlc_fourcc_t p_YV12_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'U' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) 'U' ) << 24 ) ) , ( ((uint32_t) 'U' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'V' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'V' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) '9' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) '2' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , 0
}
const vlc_fourcc_t p_YVYU_fallback[] [static] |
Initial value:
{
( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) 'U' ) << 24 ) ) ,
( ((uint32_t) 'Y' ) | ( ((uint32_t) 'U' ) << 8 ) | ( ((uint32_t) 'Y' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) ,
( ((uint32_t) 'U' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'V' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) ,
( ((uint32_t) 'V' ) | ( ((uint32_t) 'Y' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) 'Y' ) << 24 ) ) ,
( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '2' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '2' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '4' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'J' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '4' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , ( ((uint32_t) 'I' ) | ( ((uint32_t) '4' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '0' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) 'V' ) << 8 ) | ( ((uint32_t) 'U' ) << 16 ) | ( ((uint32_t) '9' ) << 24 ) ) , ( ((uint32_t) 'Y' ) | ( ((uint32_t) '2' ) << 8 ) | ( ((uint32_t) '1' ) << 16 ) | ( ((uint32_t) '1' ) << 24 ) ) , 0
}
const vlc_fourcc_t* pp_RGB_fallback[] [static] |
Initial value:
Referenced by vlc_fourcc_GetRGBFallback().
const vlc_fourcc_t* pp_YUV_fallback[] [static] |
Initial value:
{
p_YV12_fallback,
p_I420_fallback,
p_J420_fallback,
p_I422_fallback,
p_J422_fallback,
p_I444_fallback,
p_J444_fallback,
p_I440_fallback,
p_YUYV_fallback,
p_YVYU_fallback,
p_UYVY_fallback,
p_VYUY_fallback,
NULL,
}
Referenced by vlc_fourcc_GetYUVFallback().
1.5.6