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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dhnm.c135 uint16_t chunk_id; local
150 chunk_id = avio_rl16(pb);
161 switch (chunk_id) {
168 if (chunk_id == HNM4_CHUNK_ID_IZ || chunk_id == HNM4_CHUNK_ID_IU)
179 chunk_id, avio_tell(pb));
H A Diff.c343 uint32_t chunk_id; local
371 chunk_id = avio_rl32(pb);
375 switch(chunk_id) {
H A Davidec.c168 int chunk_id = avio_rl32(pb); local
170 int stream_id = ((chunk_id & 0xFF) - '0') * 10 +
171 ((chunk_id >> 8 & 0xFF) - '0');
180 "chunk_id:%X base:%16"PRIX64"\n",
184 chunk_id,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dcinepak.c77 int chunk_id, int size, const uint8_t *data)
85 n = (chunk_id & 0x04) ? 4 : 6;
91 if ((chunk_id & 0x01) && !(mask >>= 1)) {
100 if (!(chunk_id & 0x01) || (flag & mask)) {
133 int chunk_id, int size, const uint8_t *data)
164 if ((chunk_id & 0x01) && !(mask >>= 1)) {
173 if (!(chunk_id & 0x01) || (flag & mask)) {
174 if (!(chunk_id & 0x02) && !(mask >>= 1)) {
183 if ((chunk_id & 0x02) || (~flag & mask)) {
270 int chunk_id, chunk_siz local
76 cinepak_decode_codebook(cvid_codebook *codebook, int chunk_id, int size, const uint8_t *data) argument
132 cinepak_decode_vectors(CinepakContext *s, cvid_strip *strip, int chunk_id, int size, const uint8_t *data) argument
[all...]
H A Droqvideodec.c36 unsigned int chunk_id = 0, chunk_arg = 0; local
45 chunk_id = bytestream2_get_le16(&ri->gb);
49 if(chunk_id == RoQ_QUAD_VQ)
51 if(chunk_id == RoQ_QUAD_CODEBOOK) {
H A Dhnm4video.c398 uint16_t chunk_id; local
405 chunk_id = AV_RL16(avpkt->data + 4);
407 if (chunk_id == HNM4_CHUNK_ID_PL) {
409 } else if (chunk_id == HNM4_CHUNK_ID_IZ) {
428 } else if (chunk_id == HNM4_CHUNK_ID_IU) {
446 av_log(avctx, AV_LOG_ERROR, "invalid chunk id: %d\n", chunk_id);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dcinepak.c75 int chunk_id, int size, const uint8_t *data)
82 n = (chunk_id & 0x04) ? 4 : 6;
87 if ((chunk_id & 0x01) && !(mask >>= 1)) {
96 if (!(chunk_id & 0x01) || (flag & mask)) {
124 int chunk_id, int size, const uint8_t *data)
149 if ((chunk_id & 0x01) && !(mask >>= 1)) {
158 if (!(chunk_id & 0x01) || (flag & mask)) {
159 if (!(chunk_id & 0x02) && !(mask >>= 1)) {
168 if ((chunk_id & 0x02) || (~flag & mask)) {
270 int chunk_id, chunk_siz local
74 cinepak_decode_codebook(cvid_codebook *codebook, int chunk_id, int size, const uint8_t *data) argument
123 cinepak_decode_vectors(CinepakContext *s, cvid_strip *strip, int chunk_id, int size, const uint8_t *data) argument
[all...]
H A Droqvideodec.c38 unsigned int chunk_id = 0, chunk_arg = 0; local
47 chunk_id = bytestream2_get_le16(&ri->gb);
51 if(chunk_id == RoQ_QUAD_VQ)
53 if(chunk_id == RoQ_QUAD_CODEBOOK) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/sctp/
H A Dauth.h114 int sctp_auth_ep_add_chunkid(struct sctp_endpoint *ep, __u8 chunk_id);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Diff.c116 uint32_t chunk_id, data_size; local
132 chunk_id = avio_rl32(pb);
136 switch(chunk_id) {
H A Davidec.c139 int chunk_id = avio_rl32(pb); local
141 int stream_id= 10*((chunk_id&0xFF) - '0') + (((chunk_id>>8)&0xFF) - '0');
148 av_dlog(s, "longs_pre_entry:%d index_type:%d entries_in_use:%d chunk_id:%X base:%16"PRIX64"\n",
149 longs_pre_entry,index_type, entries_in_use, chunk_id, base);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/radeon/
H A Dradeon_cs.c131 p->chunks[i].chunk_id = user_chunk.chunk_id;
133 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) {
136 if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) {
147 if (p->chunks[i].chunk_id != RADEON_CHUNK_ID_IB) {
H A Dradeon.h499 uint32_t chunk_id; member in struct:radeon_cs_chunk
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sctp/
H A Dauth.c759 int sctp_auth_ep_add_chunkid(struct sctp_endpoint *ep, __u8 chunk_id) argument
766 if (__sctp_auth_cid(chunk_id, p))
775 p->chunks[nchunks] = chunk_id;
/netgear-R7000-V1.0.7.12_1.2.5/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);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/drm/
H A Dradeon_drm.h879 uint32_t chunk_id; member in struct:drm_radeon_cs_chunk

Completed in 311 milliseconds