/third_party/ffmpeg/libavformat/ |
D | wv.c | 33 if (AV_RL32(data) != MKTAG('w', 'v', 'p', 'k')) in ff_wv_parse_header() 36 wv->blocksize = AV_RL32(data + 4); in ff_wv_parse_header() 42 wv->total_samples = AV_RL32(data + 12); in ff_wv_parse_header() 43 wv->block_idx = AV_RL32(data + 16); in ff_wv_parse_header() 44 wv->samples = AV_RL32(data + 20); in ff_wv_parse_header() 45 wv->flags = AV_RL32(data + 24); in ff_wv_parse_header() 46 wv->crc = AV_RL32(data + 28); in ff_wv_parse_header()
|
D | argo_brp.c | 102 if (AV_RL32(p->buf) != BRP_TAG) in argo_brp_probe() 162 brp->fhdr.magic = AV_RL32(buf + 0); in argo_brp_read_header() 163 brp->fhdr.num_streams = AV_RL32(buf + 4); in argo_brp_read_header() 164 brp->fhdr.byte_rate = AV_RL32(buf + 8); in argo_brp_read_header() 188 hdr->codec_id = AV_RL32(buf + 0); in argo_brp_read_header() 189 hdr->id = AV_RL32(buf + 4); in argo_brp_read_header() 190 hdr->duration_ms = AV_RL32(buf + 8); in argo_brp_read_header() 191 hdr->byte_rate = AV_RL32(buf + 12); in argo_brp_read_header() 192 hdr->extradata_size = AV_RL32(buf + 16); in argo_brp_read_header() 216 bvid->num_frames = AV_RL32(buf + 0); in argo_brp_read_header() [all …]
|
D | apm.c | 63 ext->magic = AV_RL32(buf + 0); in apm_parse_extradata() 64 ext->file_size = AV_RL32(buf + 4); in apm_parse_extradata() 65 ext->data_size = AV_RL32(buf + 8); in apm_parse_extradata() 66 ext->unk1 = AV_RL32(buf + 12); in apm_parse_extradata() 67 ext->unk2 = AV_RL32(buf + 16); in apm_parse_extradata() 69 ext->state.has_saved = AV_RL32(buf + 20); in apm_parse_extradata() 70 ext->state.predictor_r = AV_RL32(buf + 24); in apm_parse_extradata() 71 ext->state.step_index_r = AV_RL32(buf + 28); in apm_parse_extradata() 72 ext->state.saved_r = AV_RL32(buf + 32); in apm_parse_extradata() 73 ext->state.predictor_l = AV_RL32(buf + 36); in apm_parse_extradata() [all …]
|
D | boadec.c | 31 if ( AV_RL32(p->buf ) != 1 in probe() 32 || AV_RL32(p->buf + 8) > 100000 in probe() 33 || AV_RL32(p->buf + 12) > 8 in probe() 34 || AV_RL32(p->buf + 16) != 2096 in probe() 35 ||!AV_RL32(p->buf + 21) in probe() 37 || AV_RL32(p->buf + 48) % AV_RL32(p->buf + 21) in probe()
|
D | pp_bnk.c | 69 hdr->bank_id = AV_RL32(buf + 0); in pp_bnk_parse_header() 70 hdr->sample_rate = AV_RL32(buf + 4); in pp_bnk_parse_header() 71 hdr->always1 = AV_RL32(buf + 8); in pp_bnk_parse_header() 72 hdr->track_count = AV_RL32(buf + 12); in pp_bnk_parse_header() 73 hdr->flags = AV_RL32(buf + 16); in pp_bnk_parse_header() 78 trk->id = AV_RL32(buf + 0); in pp_bnk_parse_track() 79 trk->size = AV_RL32(buf + 4); in pp_bnk_parse_track() 80 trk->sample_rate = AV_RL32(buf + 8); in pp_bnk_parse_track() 81 trk->always1_1 = AV_RL32(buf + 12); in pp_bnk_parse_track() 82 trk->always1_2 = AV_RL32(buf + 16); in pp_bnk_parse_track() [all …]
|
D | 4xm.c | 88 if ((AV_RL32(&p->buf[0]) != RIFF_TAG) || in fourxm_probe() 89 (AV_RL32(&p->buf[8]) != FOURXMV_TAG)) in fourxm_probe() 121 AV_WL32(st->codecpar->extradata, AV_RL32(buf + 16)); in parse_vtrk() 122 st->codecpar->width = AV_RL32(buf + 36); in parse_vtrk() 123 st->codecpar->height = AV_RL32(buf + 40); in parse_vtrk() 139 track = AV_RL32(buf + 8); in parse_strk() 152 fourxm->tracks[track].adpcm = AV_RL32(buf + 12); in parse_strk() 153 fourxm->tracks[track].channels = AV_RL32(buf + 36); in parse_strk() 154 fourxm->tracks[track].sample_rate = AV_RL32(buf + 40); in parse_strk() 155 fourxm->tracks[track].bits = AV_RL32(buf + 44); in parse_strk() [all …]
|
D | webpenc.c | 61 if (AV_RL32(pkt->data) == AV_RL32("RIFF")) in is_animated_webp_packet() 66 if (AV_RL32(pkt->data + skip) == AV_RL32("VP8X")) { in is_animated_webp_packet() 85 if (AV_RL32(w->last_pkt.data) == AV_RL32("RIFF")) in flush() 88 if (AV_RL32(w->last_pkt.data + skip) == AV_RL32("VP8X")) { in flush() 91 skip += AV_RL32(w->last_pkt.data + skip + 4) + 8; in flush()
|
D | bink.c | 75 AV_RL32(b+8) > 0 && // num_frames in probe() 76 AV_RL32(b+20) > 0 && AV_RL32(b+20) <= BINK_MAX_WIDTH && in probe() 77 AV_RL32(b+24) > 0 && AV_RL32(b+24) <= BINK_MAX_HEIGHT && in probe() 78 AV_RL32(b+28) > 0 && AV_RL32(b+32) > 0) // fps num,den in probe() 105 if (vst->codecpar->codec_tag == AV_RL32("SMUS")) { in read_header() 110 } while (!avio_feof(pb) && (vst->codecpar->codec_tag & 0xFFFFFF) != AV_RL32("BIK")); in read_header() 170 if ((signature == AV_RL32("BIK") && (revision == 'k')) || in read_header() 171 (signature == AV_RL32("KB2") && (revision == 'i' || revision == 'j' || revision == 'k'))) in read_header() 285 AV_RL32(pkt->data) / (2 * s->streams[bink->current_track]->codecpar->channels); in read_packet()
|
D | fwse.c | 29 if (AV_RL32(p->buf) != MKTAG('F','W','S','E')) in fwse_probe() 31 if (AV_RL32(p->buf+4) != 2 && AV_RL32(p->buf+4) != 3) in fwse_probe() 33 if (AV_RL32(p->buf+16) != 1 && AV_RL32(p->buf+16) != 2) in fwse_probe()
|
D | oggparsecelt.c | 57 version = AV_RL32(p + 28); in celt_header() 59 sample_rate = AV_RL32(p + 36); in celt_header() 60 nb_channels = AV_RL32(p + 40); in celt_header() 61 overlap = AV_RL32(p + 48); in celt_header() 63 extra_headers = AV_RL32(p + 56); in celt_header()
|
D | srtenc.c | 70 x1 = AV_RL32(p ); in srt_write_packet() 71 y1 = AV_RL32(p + 4); in srt_write_packet() 72 x2 = AV_RL32(p + 8); in srt_write_packet() 73 y2 = AV_RL32(p + 12); in srt_write_packet()
|
D | dfa.c | 30 if (p->buf_size < 4 || AV_RL32(p->buf) != MKTAG('D', 'F', 'I', 'A')) in dfa_probe() 33 if (AV_RL32(p->buf + 16) != 0x80) in dfa_probe() 100 frame_size = AV_RL32(pkt->data + pkt->size - 8); in dfa_read_packet() 105 if (AV_RL32(pkt->data + pkt->size - 12) == MKTAG('E', 'O', 'F', 'R')) { in dfa_read_packet()
|
D | oggparseogm.c | 145 t = AV_RL32(p + 96); in ogm_dshow_header() 152 st->codecpar->codec_id = ff_codec_get_id(ff_codec_bmp_tags, AV_RL32(p + 68)); in ogm_dshow_header() 154 st->codecpar->width = AV_RL32(p + 176); in ogm_dshow_header() 155 st->codecpar->height = AV_RL32(p + 180); in ogm_dshow_header() 163 st->codecpar->sample_rate = AV_RL32(p + 128); in ogm_dshow_header() 164 st->codecpar->bit_rate = AV_RL32(p + 132) * 8; in ogm_dshow_header()
|
D | idcin.c | 117 w = AV_RL32(&p->buf[0]); in idcin_probe() 122 h = AV_RL32(&p->buf[4]); in idcin_probe() 127 sample_rate = AV_RL32(&p->buf[8]); in idcin_probe() 132 number = AV_RL32(&p->buf[12]); in idcin_probe() 137 number = AV_RL32(&p->buf[16]); in idcin_probe() 142 if (AV_RL32(&p->buf[i]) == 1) in idcin_probe() 145 if (i+12 > p->buf_size || AV_RL32(&p->buf[i+8]) != w*h) in idcin_probe()
|
D | derf.c | 29 if (AV_RL32(p->buf) != MKTAG('D','E','R','F')) in derf_probe() 31 if (AV_RL32(p->buf+4) != 1 && AV_RL32(p->buf+4) != 2) in derf_probe()
|
D | oggparsespeex.c | 71 st->codecpar->sample_rate = AV_RL32(p + 36); in speex_header() 76 st->codecpar->channels = AV_RL32(p + 48); in speex_header() 84 spxp->packet_size = AV_RL32(p + 56); in speex_header() 85 frames_per_packet = AV_RL32(p + 64); in speex_header()
|
D | txd.c | 35 if (AV_RL32(pd->buf ) == TXD_FILE && in txd_probe() 36 (AV_RL32(pd->buf+8) == TXD_MARKER || AV_RL32(pd->buf+8) == TXD_MARKER2)) in txd_probe()
|
/third_party/ffmpeg/libavcodec/ |
D | dxv.c | 306 prev = AV_RL32(ctx->tex_data + 4 * (pos - idx)); in dxv_decompress_dxt1() 310 prev = AV_RL32(ctx->tex_data + 4 * (pos - idx)); in dxv_decompress_dxt1() 317 prev = AV_RL32(ctx->tex_data + 4 * (pos - idx)); in dxv_decompress_dxt1() 326 prev = AV_RL32(ctx->tex_data + 4 * (pos - idx)); in dxv_decompress_dxt1() 447 next = AV_RL32(src + endoffset); in get_opcodes() 462 next = AV_RL32(src + offset); in get_opcodes() 523 AV_WL32(dst, AV_RL32(dst - (8 + offset))); in dxv_decompress_cgo() 524 AV_WL32(dst + 4, AV_RL32(dst - (4 + offset))); in dxv_decompress_cgo() 531 AV_WL32(dst, AV_RL32(dst - (8 + offset))); in dxv_decompress_cgo() 532 AV_WL32(dst + 4, AV_RL32(dst - (4 + offset))); in dxv_decompress_cgo() [all …]
|
D | ffwavesynth.c | 248 ws->nb_inter = AV_RL32(edata); in wavesynth_parse_extradata() 261 in->type = AV_RL32(edata + 16); in wavesynth_parse_extradata() 262 in->channels = AV_RL32(edata + 20); in wavesynth_parse_extradata() 275 f1 = AV_RL32(edata + 0); in wavesynth_parse_extradata() 276 f2 = AV_RL32(edata + 4); in wavesynth_parse_extradata() 277 a1 = AV_RL32(edata + 8); in wavesynth_parse_extradata() 278 a2 = AV_RL32(edata + 12); in wavesynth_parse_extradata() 279 phi = AV_RL32(edata + 16); in wavesynth_parse_extradata() 297 a1 = AV_RL32(edata + 0); in wavesynth_parse_extradata() 298 a2 = AV_RL32(edata + 4); in wavesynth_parse_extradata() [all …]
|
D | srtdec.c | 67 x1 = AV_RL32(p ); in srt_decode_frame() 68 y1 = AV_RL32(p + 4); in srt_decode_frame() 69 x2 = AV_RL32(p + 8); in srt_decode_frame() 70 y2 = AV_RL32(p + 12); in srt_decode_frame()
|
D | 4xm.c | 447 bitstream_size = AV_RL32(buf + 8); in decode_p_frame() 448 wordstream_size = AV_RL32(buf + 12); in decode_p_frame() 449 bytestream_size = AV_RL32(buf + 16); in decode_p_frame() 776 const unsigned int bitstream_size = AV_RL32(buf); in decode_i_frame() 788 prestream_size = 4 * AV_RL32(buf + bitstream_size + 4); in decode_i_frame() 849 if (buf_size < AV_RL32(buf + 4) + 8) { in decode_frame() 851 buf_size, AV_RL32(buf + 4)); in decode_frame() 855 frame_4cc = AV_RL32(buf); in decode_frame() 857 if (frame_4cc == AV_RL32("cfrm")) { in decode_frame() 868 id = AV_RL32(buf + 12); in decode_frame() [all …]
|
/third_party/ffmpeg/libavutil/ |
D | twofish.c | 146 return AV_RL32(s); in tf_RS() 184 return AV_RL32(l); in tf_h() 210 P[0] = AV_RL32(src) ^ cs->K[0]; in twofish_encrypt() 211 P[1] = AV_RL32(src + 4) ^ cs->K[1]; in twofish_encrypt() 212 P[2] = AV_RL32(src + 8) ^ cs->K[2]; in twofish_encrypt() 213 P[3] = AV_RL32(src + 12) ^ cs->K[3]; in twofish_encrypt() 238 P[2] = AV_RL32(src) ^ cs->K[4]; in twofish_decrypt() 239 P[3] = AV_RL32(src + 4) ^ cs->K[5]; in twofish_decrypt() 240 P[0] = AV_RL32(src + 8) ^ cs->K[6]; in twofish_decrypt() 241 P[1] = AV_RL32(src + 12) ^ cs->K[7]; in twofish_decrypt() [all …]
|
D | lfg.c | 41 c->state[i ] = AV_RL32(tmp); in av_lfg_init() 42 c->state[i + 1] = AV_RL32(tmp + 4); in av_lfg_init() 43 c->state[i + 2] = AV_RL32(tmp + 8); in av_lfg_init() 44 c->state[i + 3] = AV_RL32(tmp + 12); in av_lfg_init()
|
/third_party/ffmpeg/libavutil/avr32/ |
D | intreadwrite.h | 109 #define AV_RL32(p) av_bswap32(AV_RB32(p)) macro 146 #define AV_RL32 AV_RL32 macro 147 static av_always_inline uint32_t AV_RL32(const void *p) in AV_RL32() function 177 v.hl[1] = AV_RL32(p); in AV_RL64() 178 v.hl[0] = AV_RL32((const uint32_t*)p+1); in AV_RL64()
|
/third_party/ffmpeg/libavutil/tomi/ |
D | intreadwrite.h | 114 #define AV_RL32 AV_RL32 macro 115 static av_always_inline uint32_t AV_RL32(const void *p) in AV_RL32() function
|