Home
last modified time | relevance | path

Searched refs:AV_RL24 (Results 1 – 20 of 20) sorted by relevance

/third_party/ffmpeg/libavutil/avr32/
Dintreadwrite.h78 #define AV_RL24 AV_RL24 macro
79 static av_always_inline uint32_t AV_RL24(const void *p) in AV_RL24() function
/third_party/ffmpeg/libavutil/
Dintreadwrite.h163 # if defined(AV_RN24) && !defined(AV_RL24)
164 # define AV_RL24(p) AV_RN24(p) macro
165 # elif !defined(AV_RN24) && defined(AV_RL24)
166 # define AV_RN24(p) AV_RL24(p)
457 #ifndef AV_RL24
458 # define AV_RL24(x) \ macro
Dmem.c368 uint32_t v = AV_RL24(dst - 3); in fill24()
/third_party/ffmpeg/libavformat/
Ds337m.c102 data_type = AV_RL24(buf ); in s337m_probe()
103 data_size = AV_RL24(buf + 3); in s337m_probe()
Dcdxl.c58 if (AV_RL24(&buf[29])) in cdxl_read_probe()
Dnsvdec.c722 int vsize = AV_RL24(p->buf+i+19) >> 4; in nsv_probe()
Dmxfenc.c2798 sample = AV_RL24(samples)<< 4; in mxf_write_d10_audio_packet()
/third_party/ffmpeg/libavcodec/
Dvp8_parser.c58 sync_code = AV_RL24(buf + 3); in parse()
Dkgv1dec.c114 offsets[oidx] = AV_RL24(buf); in decode_frame()
Dspeedhq.c372 slice_len = AV_RL24(buf + last_offset); in decode_speedhq_field()
511 second_field_offset = AV_RL24(buf + 1); in speedhq_decode_frame()
Ddsicinvideo.c225 cin->palette[buf[0]] = 0xFFU << 24 | AV_RL24(buf + 1); in cinvideo_decode_frame()
Dbytestream.h93 DEF(unsigned int, le24, 3, AV_RL24, AV_WL24)
Dtexturedsp.c242 int tmp = AV_RL24(src); in decompress_indices()
Dvp8.c323 int size = AV_RL24(sizes + 3 * i); in setup_partitions()
566 part1_size = AV_RL24(buf) >> 4; in vp7_decode_frame_header()
724 header_size = AV_RL24(buf) >> 5; in vp8_decode_frame_header()
746 if (AV_RL24(buf) != 0x2a019d) { in vp8_decode_frame_header()
748 "Invalid start code 0x%x\n", AV_RL24(buf)); in vp8_decode_frame_header()
Dpngdec.c1411 int tcolor = AV_RL24(s->transparent_color_be); in decode_frame_common()
1413 *pixel-- = AV_RL24(rowp-2) == tcolor ? 0 : 0xff; in decode_frame_common()
Dmss2.c707 if (buf_size < 4 || !(WMV9codedFrameSize = AV_RL24(buf))) in mss2_decode_frame()
Ddxv.c71 int tmp = AV_RL24(src); in decompress_indices()
Diff.c355 s->ham_palbuf[i*2+1] = 0xFF000000 | AV_RL24(palette + i*3); in extract_header()
Dj2kenc.c1608 … bytestream_put_be24(&s->buf, HAVE_BIGENDIAN ? AV_RB24(palette + 1) : AV_RL24(palette)); in encode_frame()
/third_party/ffmpeg/libavfilter/
Dvf_super2xsai.c90 #define READ_COLOR3(dst, src_line, off) dst = AV_RL24 (src_line + 3*off) in super2xsai()