Home
last modified time | relevance | path

Searched refs:AV_RB24 (Results 1 - 25 of 65) sorted by relevance

123

/third_party/ffmpeg/libavcodec/
H A Ddolby_e_parse.c55 return AV_RB24(key) >> 24 - s->word_bits; in parse_key()
83 put_bits(&pb, 20, AV_RB24(src) >> 4 ^ key); in ff_dolby_e_convert_input()
88 AV_WB24(dst, AV_RB24(src) ^ key); in ff_dolby_e_convert_input()
105 hdr = AV_RB24(buf); in ff_dolby_e_parse_header()
H A Daliaspixenc.c85 pixel = AV_RB24(in_buf); in encode_frame()
87 pixel == AV_RB24(in_buf)) { in encode_frame()
H A Dcinepak.c282 chunk_size = AV_RB24 (&data[1]) - 4; in cinepak_decode_strip()
326 encoded_buf_size = AV_RB24(&s->data[1]); in cinepak_predecode_check()
363 int strip_size = AV_RB24 (data + 1); in cinepak_predecode_check()
402 strip_size = AV_RB24 (&s->data[1]) - 12; in cinepak_decode()
H A Dbintext.c80 s->palette[i] = 0xFF000000 | (AV_RB24(p) << 2) | ((AV_RB24(p) >> 4) & 0x30303); in decode_init()
H A Deatgv.c88 size = AV_RB24(src); in unpack()
299 s->palette[i] = 0xFFU << 24 | AV_RB24(buf); in tgv_decode_frame()
H A Dtak.c86 CRC = AV_RB24(buf + buf_size); in ff_tak_check_crc()
H A Dhevc_mp4toannexb_bsf.c104 AV_RB24(ctx->par_in->extradata) == 1 || in hevc_mp4toannexb_init()
H A Drl2.c164 s->palette[i] = 0xFFU << 24 | AV_RB24(&avctx->extradata[6 + i * 3]); in rl2_decode_init()
/third_party/ffmpeg/libavutil/avr32/
H A Dintreadwrite.h64 #define AV_RB24 AV_RB24 macro
65 static av_always_inline uint32_t AV_RB24(const void *p) in AV_RB24() function
/third_party/ffmpeg/libavformat/
H A Dswfdec.c87 if ( AV_RB24(p->buf) != AV_RB24("CWS") in swf_probe()
88 && AV_RB24(p->buf) != AV_RB24("FWS")) in swf_probe()
91 if ( AV_RB24(p->buf) == AV_RB24("CWS") in swf_probe()
436 if (alpha_bmp) colormap[i] = buf[3]<<24 | AV_RB24(buf + 4*i); in swf_read_packet()
437 else colormap[i] = 0xffU <<24 | AV_RB24(buf + 3*i); in swf_read_packet()
H A Dflacdec.c113 samplerate = AV_RB24(st->codecpar->extradata + 10) >> 4; in flac_read_header()
239 int size = AV_RB24(p->buf + 5); in flac_probe()
242 int sample_rate = AV_RB24(p->buf + 18) >> 4; in flac_probe()
H A Doggparsevp8.c56 st->sample_aspect_ratio.num = AV_RB24(p + 12); in vp8_header()
57 st->sample_aspect_ratio.den = AV_RB24(p + 15); in vp8_header()
H A Dloasdec.c44 uint32_t header = AV_RB24(buf2); in loas_probe()
H A Dhls_sample_encryption.c161 if (nalu->length - i > 3 && AV_RB24(&data[i]) == 0x000003) { in remove_scep_3_bytes()
179 else if (ctx->buf_end - ctx->buf_ptr >= 3 && AV_RB24(ctx->buf_ptr) == 0x000001) in get_next_nal_unit()
189 else if (ctx->buf_end - ctx->buf_ptr >= 3 && AV_RB24(ctx->buf_ptr) == 0x000001) in get_next_nal_unit()
H A Dmpegvideodec.c61 if (AV_RB24(ptr + j + 9) & 0xFFFFFE) in mpegvideo_probe()
H A Dlmlm4.c54 } else if (AV_RB24(buf + 8) == 0x000001) { /* PES Signal */ in lmlm4_probe()
H A Dmpl2dec.c44 if (AV_RB24(ptr) == 0xefbbbf) in mpl2_probe()
H A Dstldec.c42 if (AV_RB24(ptr) == 0xEFBBBF) in stl_probe()
H A Doggparseflac.c68 samplerate = AV_RB24(st->codecpar->extradata + 10) >> 4; in flac_header()
H A Dmicrodvddec.c45 if (AV_RB24(ptr) == 0xEFBBBF) in microdvd_probe()
H A Dsubviewerdec.c44 if (AV_RB24(ptr) == 0xEFBBBF) in subviewer_probe()
H A Drawenc.c363 AV_RB24(pkt->data) != 0x000001) in h264_check_bitstream()
386 AV_RB24(pkt->data) != 0x000001) in hevc_check_bitstream()
/third_party/ffmpeg/libavutil/
H A Dintreadwrite.h101 # if defined(AV_RN24) && !defined(AV_RB24)
102 # define AV_RB24(p) AV_RN24(p) macro
103 # elif !defined(AV_RN24) && defined(AV_RB24)
104 # define AV_RN24(p) AV_RB24(p)
443 #ifndef AV_RB24
444 # define AV_RB24(x) \ macro
/third_party/ffmpeg/libavfilter/
H A Dvf_stereo3d.c649 AV_WB24(&dst[x], AV_RB24(&src[x * 2])); in interleave_cols_to_any()
977 AV_WB24(&dst[x ], (b&1) == (y&1) ? AV_RB24(&left[p*m]) : AV_RB24(&right[p*m])); in filter_frame()
978 AV_WB24(&dst[x+3], (b&1) != (y&1) ? AV_RB24(&left[p*m]) : AV_RB24(&right[p*m])); in filter_frame()
1034 AV_WB24(&dst[x ], b&1 ? AV_RB24(&left[p*m]) : AV_RB24(&right[p*m])); in filter_frame()
1035 AV_WB24(&dst[x+3], !(b&1) ? AV_RB24(&left[p*m]) : AV_RB24(&right[p*m])); in filter_frame()
H A Dvf_hflip_init.h62 int32_t v = AV_RB24(in); in hflip_b24_c()

Completed in 12 milliseconds

123