/external/chromium/third_party/libjingle/source/talk/session/phone/ |
videocommon.h | 26 // Common definition for video, including fourcc and VideoFormat 38 // Definition of fourcc. 40 // Convert four characters to a fourcc code. 43 #define FOURCC(a, b, c, d) (\ 47 // Get the name, that is, string with four characters, of a fourcc code. 48 inline std::string GetFourccName(uint32 fourcc) { 50 name.push_back(static_cast<char>(fourcc & 0xFF)); 51 name.push_back(static_cast<char>((fourcc >> 8) & 0xFF)); 52 name.push_back(static_cast<char>((fourcc >> 16) & 0xFF)); 53 name.push_back(static_cast<char>((fourcc >> 24) & 0xFF)) 158 uint32 fourcc; \/\/ color space. FOURCC_ANY means that any color space is OK. member in struct:cricket::VideoFormat [all...] |
/external/libyuv/files/include/libyuv/ |
video_common.h | 11 // Common definitions for video, including fourcc and VideoFormat. 24 // Definition of FourCC codes 27 // Convert four characters to a FourCC code. 30 #define FOURCC(a, b, c, d) ( \ 34 // Some pages discussing FourCC codes: 35 // http://www.fourcc.org/yuv.php 41 enum FourCC { 42 // Canonical fourcc codes used in our code. 43 FOURCC_I420 = FOURCC('I', '4', '2', '0'), 44 FOURCC_I422 = FOURCC('I', '4', '2', '2') [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
videocommon.h | 26 // Common definition for video, including fourcc and VideoFormat. 51 // Definition of FourCC codes 53 // Convert four characters to a FourCC code. 56 #define FOURCC(a, b, c, d) ( \ 59 // Some pages discussing FourCC codes: 60 // http://www.fourcc.org/yuv.php 66 // FourCC codes grouped according to implementation efficiency. 70 enum FourCC { 72 FOURCC_I420 = FOURCC('I', '4', '2', '0'), 73 FOURCC_I422 = FOURCC('I', '4', '2', '2') 184 uint32 fourcc; \/\/ Color space. FOURCC_ANY means that any color space is OK. member in struct:cricket::VideoFormatPod [all...] |
fakevideocapturer.h | 75 GetCaptureFormat()->fourcc); 77 bool CaptureCustomFrame(int width, int height, uint32 fourcc) { 81 // Currently, |fourcc| is always I420 or ARGB. 82 // TODO(fbarchard): Extend SizeOf to take fourcc. 84 if (fourcc == cricket::FOURCC_ARGB) { 86 } else if (fourcc == cricket::FOURCC_I420) { 89 return false; // Unsupported FOURCC. 98 frame.fourcc = fourcc; 111 memcpy(frame.data, reinterpret_cast<const uint8*>(&fourcc), 4) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/include/ |
dxbc.h | 36 #define FOURCC(a, b, c, d) ((uint32_t)(uint8_t)(a) | ((uint32_t)(uint8_t)(b) << 8) | ((uint32_t)(uint8_t)(c) << 16) | ((uint32_t)(uint8_t)(d) << 24 )) 37 #define FOURCC_DXBC FOURCC('D', 'X', 'B', 'C') 38 #define FOURCC_RDEF FOURCC('R', 'D', 'E', 'F') 39 #define FOURCC_ISGN FOURCC('I', 'S', 'G', 'N') 40 #define FOURCC_OSGN FOURCC('O', 'S', 'G', 'N') 41 #define FOURCC_SHDR FOURCC('S', 'H', 'D', 'R') 42 #define FOURCC_SHEX FOURCC('S', 'H', 'E', 'X') 43 #define FOURCC_STAT FOURCC('S', 'T', 'A', 'T') 44 #define FOURCC_PCSG FOURCC('P', 'C', 'S', 'G') 49 unsigned fourcc; member in struct:dxbc_chunk_header 81 unsigned fourcc; member in struct:dxbc_container_header 108 unsigned fourcc; local [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/include/ |
dxbc.h | 36 #define FOURCC(a, b, c, d) ((uint32_t)(uint8_t)(a) | ((uint32_t)(uint8_t)(b) << 8) | ((uint32_t)(uint8_t)(c) << 16) | ((uint32_t)(uint8_t)(d) << 24 )) 37 #define FOURCC_DXBC FOURCC('D', 'X', 'B', 'C') 38 #define FOURCC_RDEF FOURCC('R', 'D', 'E', 'F') 39 #define FOURCC_ISGN FOURCC('I', 'S', 'G', 'N') 40 #define FOURCC_OSGN FOURCC('O', 'S', 'G', 'N') 41 #define FOURCC_SHDR FOURCC('S', 'H', 'D', 'R') 42 #define FOURCC_SHEX FOURCC('S', 'H', 'E', 'X') 43 #define FOURCC_STAT FOURCC('S', 'T', 'A', 'T') 44 #define FOURCC_PCSG FOURCC('P', 'C', 'S', 'G') 49 unsigned fourcc; member in struct:dxbc_chunk_header 81 unsigned fourcc; member in struct:dxbc_container_header 108 unsigned fourcc; local [all...] |
/external/chromium_org/media/mp4/ |
fourccs.h | 13 enum FourCC { 88 const inline std::string FourCCToString(FourCC fourcc) { 90 buf[0] = (fourcc >> 24) & 0xff; 91 buf[1] = (fourcc >> 16) & 0xff; 92 buf[2] = (fourcc >> 8) & 0xff; 93 buf[3] = (fourcc) & 0xff;
|
box_definitions.cc | 16 FourCC FileType::BoxType() const { return FOURCC_FTYP; } 20 size_t num_brands = (reader->size() - reader->pos()) / sizeof(FourCC); 21 return reader->SkipBytes(sizeof(FourCC) * num_brands); // compatible_brands 26 FourCC ProtectionSystemSpecificHeader::BoxType() const { return FOURCC_PSSH; } 44 FourCC SampleAuxiliaryInformationOffset::BoxType() const { return FOURCC_SAIO; } 70 FourCC SampleAuxiliaryInformationSize::BoxType() const { return FOURCC_SAIZ; } 86 FourCC OriginalFormat::BoxType() const { return FOURCC_FRMA; } 94 FourCC SchemeType::BoxType() const { return FOURCC_SCHM; } 107 FourCC TrackEncryption::BoxType() const { return FOURCC_TENC; } 127 FourCC SchemeInfo::BoxType() const { return FOURCC_SCHI; [all...] |
box_reader.h | 26 virtual FourCC BoxType() const = 0; 46 bool ReadFourCC(FourCC* v) WARN_UNUSED_RESULT; 94 FourCC* type, 101 static bool IsValidTopLevelBox(const FourCC& type, 124 // Read all children, regardless of FourCC. This is used from exactly one box, 135 FourCC type() const { return type_; } 152 FourCC type_; 156 typedef std::multimap<FourCC, BoxReader> ChildMap; 176 FourCC child_type = (*children)[0].BoxType();
|
box_definitions.h | 33 virtual FourCC BoxType() const OVERRIDE; \ 38 FourCC major_brand; 66 FourCC format; 72 FourCC type; 176 FourCC format; 200 FourCC format;
|
box_reader.cc | 48 bool BufferReader::ReadFourCC(FourCC* v) { 125 FourCC* type, 140 bool BoxReader::IsValidTopLevelBox(const FourCC& type, 176 children_.insert(std::pair<FourCC, BoxReader>(child.type(), child)); 186 FourCC child_type = child->BoxType();
|
/frameworks/av/media/libstagefright/mp4/ |
FragmentedMP4Parser.cpp | 38 static const char *Fourcc2String(uint32_t fourcc) { 41 buffer[0] = fourcc >> 24; 42 buffer[1] = (fourcc >> 16) & 0xff; 43 buffer[2] = (fourcc >> 8) & 0xff; 44 buffer[3] = fourcc & 0xff; 56 { FOURCC('m', 'o', 'o', 'v'), 0, NULL }, 57 { FOURCC('t', 'r', 'a', 'k'), FOURCC('m', 'o', 'o', 'v'), NULL }, 58 { FOURCC('u', 'd', 't', 'a'), FOURCC('t', 'r', 'a', 'k'), NULL } [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/ |
dxbc_parse.cpp | 38 if(bswap_le32(header->fourcc) != FOURCC_DXBC) 45 unsigned fourcc = bswap_le32(chunk->fourcc); local 46 container->chunk_map[fourcc] = i; 52 dxbc_chunk_header* dxbc_find_chunk(const void* data, int size, unsigned fourcc) 56 if(bswap_le32(header->fourcc) != FOURCC_DXBC) 63 if(bswap_le32(chunk->fourcc) == fourcc)
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/ |
dxbc_parse.cpp | 38 if(bswap_le32(header->fourcc) != FOURCC_DXBC) 45 unsigned fourcc = bswap_le32(chunk->fourcc); local 46 container->chunk_map[fourcc] = i; 52 dxbc_chunk_header* dxbc_find_chunk(const void* data, int size, unsigned fourcc) 56 if(bswap_le32(header->fourcc) != FOURCC_DXBC) 63 if(bswap_le32(chunk->fourcc) == fourcc)
|
/external/libyuv/files/source/ |
video_common.cc | 41 uint32 CanonicalFourCC(uint32 fourcc) { 43 if (kFourCCAliases[i].alias == fourcc) { 48 return fourcc;
|
/frameworks/av/media/libstagefright/ |
AVIExtractor.cpp | 434 uint32_t fourcc = U32_AT(tmp); local 444 if (fourcc == FOURCC('L', 'I', 'S', 'T') 445 || fourcc == FOURCC('R', 'I', 'F', 'F')) { 469 if (subFourcc == FOURCC('m', 'o', 'v', 'i')) { 492 (char)(fourcc >> 24), 493 (char)((fourcc >> 16) & 0xff), 494 (char)((fourcc >> 8) & 0xff), 495 (char)(fourcc & 0xff)) [all...] |
MPEG4Extractor.cpp | 295 static const char *FourCC2MIME(uint32_t fourcc) { 296 switch (fourcc) { 297 case FOURCC('m', 'p', '4', 'a'): 300 case FOURCC('s', 'a', 'm', 'r'): 303 case FOURCC('s', 'a', 'w', 'b'): 306 case FOURCC('m', 'p', '4', 'v'): 309 case FOURCC('s', '2', '6', '3'): 310 case FOURCC('h', '2', '6', '3'): 311 case FOURCC('H', '2', '6', '3'): 314 case FOURCC('a', 'v', 'c', '1') [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtcvideocapturer.cc | 46 uint32 fourcc; member in struct:cricket::kVideoFourCCEntry 79 uint32 fourcc = 0; local 82 fourcc = kSupportedFourCCs[i].fourcc; 86 if (fourcc == 0) { 90 format->fourcc = fourcc; 101 if (kSupportedFourCCs[i].fourcc == format.fourcc) { 235 best_format->fourcc = FOURCC_I420 [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/ |
AudioQuality.java | 20 String fourCC;
|
VideoQuality.java | 20 String fourCC;
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_Overlay.3 | 48 More information on YUV formats can be found at \fIhttp://www\&.webartz\&.com/fourcc/indexyuv\&.htm (link to URL http://www.webartz.com/fourcc/indexyuv.htm) \fR\&.
|
/frameworks/av/media/libstagefright/timedtext/ |
TextDescriptions.cpp | 108 case FOURCC('s', 't', 'y', 'l'): 144 case FOURCC('k', 'r', 'o', 'k'): 171 case FOURCC('h', 'l', 'i', 't'): 184 case FOURCC('h', 'c', 'l', 'r'): 196 case FOURCC('d', 'l', 'a', 'y'): 207 case FOURCC('h', 'r', 'e', 'f'): 238 case FOURCC('t', 'b', 'o', 'x'): 249 case FOURCC('b', 'l', 'n', 'k'): 263 case FOURCC('t', 'w', 'r', 'p'): 303 case FOURCC('t', 'x', '3', 'g') [all...] |
/external/chromium_org/third_party/libwebp/webp/ |
mux.h | 142 // Adds a chunk with id 'fourcc' and data 'chunk_data' in the mux object. 146 // fourcc - (in) a character array containing the fourcc of the given chunk; 152 // WEBP_MUX_INVALID_ARGUMENT - if mux, fourcc or chunk_data is NULL 153 // or if fourcc corresponds to an image chunk. 157 WebPMux* mux, const char fourcc[4], const WebPData* chunk_data, 160 // Gets a reference to the data of the chunk with id 'fourcc' in the mux object. 164 // fourcc - (in) a character array containing the fourcc of the chunk; 168 // WEBP_MUX_INVALID_ARGUMENT - if either mux, fourcc or chunk_data is NUL [all...] |
/external/chromium_org/content/renderer/media/ |
video_destination_handler_unittest.cc | 93 EXPECT_EQ(cricket::FOURCC_BGRA, best_format.fourcc); 95 desired.fourcc = best_format.fourcc;
|
/hardware/qcom/msm8960/original-kernel-headers/linux/ |
msm_q6vdec.h | 116 u32 fourcc; /* video format */ member in struct:vdec_config 224 u32 fourcc; member in struct:vdec_dec_attributes 259 u32 fourcc; member in union:vdec_property
|