Searched refs:chunk_id (Results 1 - 5 of 5) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dcinepak.c74 int chunk_id, int size, const uint8_t *data)
81 n = (chunk_id & 0x04) ? 4 : 6;
86 if ((chunk_id & 0x01) && !(mask >>= 1)) {
95 if (!(chunk_id & 0x01) || (flag & mask)) {
123 int chunk_id, int size, const uint8_t *data)
148 if ((chunk_id & 0x01) && !(mask >>= 1)) {
157 if (!(chunk_id & 0x01) || (flag & mask)) {
158 if (!(chunk_id & 0x02) && !(mask >>= 1)) {
167 if ((chunk_id & 0x02) || (~flag & mask)) {
269 int chunk_id, chunk_siz local
73 cinepak_decode_codebook(cvid_codebook *codebook, int chunk_id, int size, const uint8_t *data) argument
122 cinepak_decode_vectors(CinepakContext *s, cvid_strip *strip, int chunk_id, int size, const uint8_t *data) argument
[all...]
H A Droqvideodec.c39 unsigned int chunk_id = 0, chunk_arg = 0; local
49 chunk_id = bytestream_get_le16(&buf);
53 if(chunk_id == RoQ_QUAD_VQ)
55 if(chunk_id == RoQ_QUAD_CODEBOOK) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Diff.c93 uint32_t chunk_id, data_size; local
104 chunk_id = get_le32(pb);
108 switch(chunk_id) {
H A Davidec.c121 int chunk_id = get_le32(pb); local
123 int stream_id= 10*((chunk_id&0xFF) - '0') + (((chunk_id>>8)&0xFF) - '0');
131 av_log(s, AV_LOG_ERROR, "longs_pre_entry:%d index_type:%d entries_in_use:%d chunk_id:%X base:%16"PRIX64"\n",
132 longs_pre_entry,index_type, entries_in_use, chunk_id, base);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Dencode.c216 char chunk_id[5] = { '\0', '\0', '\0', '\0', '\0' }; /* one extra byte for terminating NUL so we can also treat it like a C string */ local
219 if(feof(infile) || ((c= fread(chunk_id, 1U, 4U, infile)), c==0U && feof(infile)))
226 if(got_comm_chunk==false && !memcmp(chunk_id, "COMM", 4)) { /* common chunk */
354 else if(got_ssnd_chunk==false && !memcmp(chunk_id, "SSND", 4)) { /* sound data chunk */
576 if(!memcmp(chunk_id, "COMM", 4))
578 else if(!memcmp(chunk_id, "SSND", 4))
581 flac__utils_printf(stderr, 1, "%s: WARNING: skipping unknown chunk '%s' (use --keep-foreign-metadata to keep)\n", encoder_session.inbasefilename, chunk_id);

Completed in 110 milliseconds