Searched refs:bitstream_buf (Results 1 – 3 of 3) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | eatqi.c | 47 void *bitstream_buf; member 151 av_fast_padded_malloc(&t->bitstream_buf, &t->bitstream_buf_size, in tqi_decode_frame() 153 if (!t->bitstream_buf) in tqi_decode_frame() 155 t->bsdsp.bswap_buf(t->bitstream_buf, (const uint32_t *) buf, in tqi_decode_frame() 157 init_get_bits(&t->gb, t->bitstream_buf, 8 * (buf_end - buf)); in tqi_decode_frame() 178 av_freep(&t->bitstream_buf); in tqi_decode_end()
|
D | eamad.c | 55 void *bitstream_buf; member 309 av_fast_padded_malloc(&s->bitstream_buf, &s->bitstream_buf_size, in decode_frame() 311 if (!s->bitstream_buf) in decode_frame() 313 s->bbdsp.bswap16_buf(s->bitstream_buf, (const uint16_t *)(buf + bytestream2_tell(&gb)), in decode_frame() 315 …memset((uint8_t*)s->bitstream_buf + bytestream2_get_bytes_left(&gb), 0, AV_INPUT_BUFFER_PADDING_SI… in decode_frame() 316 init_get_bits(&s->gb, s->bitstream_buf, 8*(bytestream2_get_bytes_left(&gb))); in decode_frame() 338 av_freep(&t->bitstream_buf); in decode_end()
|
D | rawdec.c | 54 void *bitstream_buf; member 327 av_fast_padded_malloc(&context->bitstream_buf, &context->bitstream_buf_size, buf_size); in MKSCALE16() 328 if (!context->bitstream_buf) in MKSCALE16() 331 … context->bbdsp.bswap16_buf(context->bitstream_buf, (const uint16_t*)buf, buf_size / 2); in MKSCALE16() 333 … context->bbdsp.bswap_buf(context->bitstream_buf, (const uint32_t*)buf, buf_size / 4); in MKSCALE16() 336 buf = context->bitstream_buf; in MKSCALE16()
|