Home
last modified time | relevance | path

Searched refs:bitstream_buf (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/libavcodec/
Deatqi.c49 void *bitstream_buf; member
153 av_fast_padded_malloc(&t->bitstream_buf, &t->bitstream_buf_size, in tqi_decode_frame()
155 if (!t->bitstream_buf) in tqi_decode_frame()
157 t->bsdsp.bswap_buf(t->bitstream_buf, (const uint32_t *) buf, in tqi_decode_frame()
159 init_get_bits(&t->gb, t->bitstream_buf, 8 * (buf_end - buf)); in tqi_decode_frame()
180 av_freep(&t->bitstream_buf); in tqi_decode_end()
Deamad.c57 void *bitstream_buf; member
311 av_fast_padded_malloc(&s->bitstream_buf, &s->bitstream_buf_size, in decode_frame()
313 if (!s->bitstream_buf) in decode_frame()
315 s->bbdsp.bswap16_buf(s->bitstream_buf, (const uint16_t *)(buf + bytestream2_tell(&gb)), in decode_frame()
317 …memset((uint8_t*)s->bitstream_buf + bytestream2_get_bytes_left(&gb), 0, AV_INPUT_BUFFER_PADDING_SI… in decode_frame()
318 init_get_bits(&s->gb, s->bitstream_buf, 8*(bytestream2_get_bytes_left(&gb))); in decode_frame()
340 av_freep(&t->bitstream_buf); in decode_end()
Drawdec.c55 void *bitstream_buf; member
328 av_fast_padded_malloc(&context->bitstream_buf, &context->bitstream_buf_size, buf_size); in MKSCALE16()
329 if (!context->bitstream_buf) in MKSCALE16()
332 … context->bbdsp.bswap16_buf(context->bitstream_buf, (const uint16_t*)buf, buf_size / 2); in MKSCALE16()
334 … context->bbdsp.bswap_buf(context->bitstream_buf, (const uint32_t*)buf, buf_size / 4); in MKSCALE16()
337 buf = context->bitstream_buf; in MKSCALE16()
496 av_freep(&context->bitstream_buf); in raw_close_decoder()