Home
last modified time | relevance | path

Searched refs:bswap_buf (Results 1 – 24 of 24) sorted by relevance

/third_party/ffmpeg/libavformat/
Dframecrcenc.c79 uint8_t bswap_buf[FFMAX(sizeof(AVCPBProperties), in framecrc_write_packet() local
98 #define BSWAP(struct, field) bswap(bswap_buf, offsetof(struct, field), sizeof(((struct){0}).field)) in framecrc_write_packet()
100 memcpy(bswap_buf, sd->data, sizeof(AVCPBProperties)); in framecrc_write_packet()
101 data = bswap_buf; in framecrc_write_packet()
111 memcpy(bswap_buf, sd->data, sizeof(AVProducerReferenceTime)); in framecrc_write_packet()
112 data = bswap_buf; in framecrc_write_packet()
/third_party/ffmpeg/libavcodec/x86/
Dbswapdsp_init.c35 c->bswap_buf = ff_bswap32_buf_sse2; in ff_bswapdsp_init_x86()
37 c->bswap_buf = ff_bswap32_buf_ssse3; in ff_bswapdsp_init_x86()
39 c->bswap_buf = ff_bswap32_buf_avx2; in ff_bswapdsp_init_x86()
/third_party/ffmpeg/libavcodec/
Dbswapdsp.c25 static void bswap_buf(uint32_t *dst, const uint32_t *src, int w) in bswap_buf() function
51 c->bswap_buf = bswap_buf; in ff_bswapdsp_init()
Dbswapdsp.h25 void (*bswap_buf)(uint32_t *dst, const uint32_t *src, int w); member
Dmpc7.c95 c->bdsp.bswap_buf((uint32_t *) buf, (const uint32_t *) avctx->extradata, 4); in mpc7_decode_init()
213 c->bdsp.bswap_buf((uint32_t *) c->bits, (const uint32_t *) buf, in mpc7_decode_frame()
Dylc.c321 s->bdsp.bswap_buf((uint32_t *) s->buffer, in decode_frame()
342 s->bdsp.bswap_buf((uint32_t *) s->buffer, in decode_frame()
Deatqi.c157 t->bsdsp.bswap_buf(t->bitstream_buf, (const uint32_t *) buf, in tqi_decode_frame()
Dfraps.c109 s->bdsp.bswap_buf((uint32_t *) s->tmpbuf, in fraps2_decode_plane()
Dmimic.c413 ctx->bbdsp.bswap_buf(ctx->swap_buf, in mimic_decode_frame()
Dasvdec.c237 a->bbdsp.bswap_buf((uint32_t *) a->bitstream_buffer, in decode_frame()
Dasvenc.c296 a->bbdsp.bswap_buf((uint32_t *) pkt->data, in encode_frame()
Dtruespeech.c84 dec->bdsp.bswap_buf((uint32_t *) dec->buffer, (const uint32_t *) input, 8); in truespeech_read_frame()
D4xm.c470 f->bbdsp.bswap_buf(f->bitstream_buffer, (const uint32_t *) (buf + extra), in decode_p_frame()
814 f->bbdsp.bswap_buf(f->bitstream_buffer, (const uint32_t *) prestream, in decode_i_frame()
Dmotionpixels.c297 mp->bdsp.bswap_buf((uint32_t *) mp->bswapbuf, (const uint32_t *) buf, in mp_decode_frame()
Dimm4.c373 s->bdsp.bswap_buf((uint32_t *)s->bitstream, in decode_frame()
Dutvideodec.c153 c->bdsp.bswap_buf((uint32_t *) c->slice_bits, in decode_plane10()
314 c->bdsp.bswap_buf((uint32_t *) c->slice_bits, in decode_plane()
Drawdec.c334 … context->bbdsp.bswap_buf(context->bitstream_buf, (const uint32_t*)buf, buf_size / 4); in MKSCALE16()
Dutvideoenc.c524 c->bdsp.bswap_buf((uint32_t *) c->slice_bits, in encode_plane()
Dhuffyuvdec.c1211 s->bdsp.bswap_buf((uint32_t *) s->bitstream_buffer, in decode_frame()
1254 s->bdsp.bswap_buf((uint32_t *)s->bitstream_buffer, in decode_frame()
Dtruemotion2.c910 l->bdsp.bswap_buf((uint32_t *) l->buffer, (const uint32_t *) buf, in decode_frame()
Dhuffyuvenc.c1024 s->bdsp.bswap_buf((uint32_t *) pkt->data, (uint32_t *) pkt->data, size); in encode_frame()
Dapedec.c1499 s->bdsp.bswap_buf((uint32_t *) s->data, (const uint32_t *) buf, in ape_decode_frame()
Dalsdec.c1890 ctx->bdsp.bswap_buf((uint32_t *) ctx->crc_buffer, in decode_frame()
/third_party/ffmpeg/tests/checkasm/
Dbswapdsp.c70 if (check_func(h.bswap_buf, "bswap_buf")) in checkasm_check_bswapdsp()