Searched refs:MAX_BLOCKSIZE (Results 1 – 8 of 8) sorted by relevance
/third_party/ffmpeg/libavcodec/arm/ |
D | mlpdsp_armv5te.S | 28 #define MAX_BLOCKSIZE (40 * MAX_RATEFACTOR) macro 114 .set OFFSET_ST, 4 * (MAX_BLOCKSIZE + MAX_FIR_ORDER) 242 str ST0, [PST, #4 * (MAX_BLOCKSIZE + MAX_FIR_ORDER)] 256 .set OFFSET_ST, 4 * (MAX_BLOCKSIZE + MAX_FIR_ORDER) 334 str ST2, [PST, #4 * (MAX_BLOCKSIZE + MAX_FIR_ORDER)]
|
/third_party/ffmpeg/libavcodec/ |
D | mlpdec.c | 163 int8_t bypassed_lsbs[MAX_BLOCKSIZE][MAX_CHANNELS]; 164 DECLARE_ALIGNED(32, int32_t, sample_buffer)[MAX_BLOCKSIZE][MAX_CHANNELS]; 334 if (mh.access_unit_size > MAX_BLOCKSIZE) { in read_major_sync() 337 mh.access_unit_size, MAX_BLOCKSIZE); in read_major_sync() 933 int32_t state_buffer[NUM_FILTERS][MAX_BLOCKSIZE + MAX_FIR_ORDER]; in filter_channel() 934 int32_t *firbuf = state_buffer[FIR] + MAX_BLOCKSIZE; in filter_channel() 935 int32_t *iirbuf = state_buffer[IIR] + MAX_BLOCKSIZE; in filter_channel()
|
D | mlp.h | 56 #define MAX_BLOCKSIZE (40 * MAX_RATEFACTOR) macro
|
D | diracdec.c | 55 #define MAX_BLOCKSIZE 32 /* maximum xblen/yblen we support */ macro 226 DECLARE_ALIGNED(16, uint8_t, obmc_weight)[3][MAX_BLOCKSIZE*MAX_BLOCKSIZE]; 293 int max_xblen = MAX_BLOCKSIZE >> (i ? s->chroma_x_shift : 0); in alloc_sequence_buffers() 294 int max_yblen = MAX_BLOCKSIZE >> (i ? s->chroma_y_shift : 0); in alloc_sequence_buffers() 340 s->edge_emu_buffer_base = av_malloc_array(stride, MAX_BLOCKSIZE); in alloc_buffers() 342 s->mctmp = av_malloc_array((stride+MAX_BLOCKSIZE), (h+MAX_BLOCKSIZE) * sizeof(*s->mctmp)); in alloc_buffers() 343 s->mcscratch = av_malloc_array(stride, MAX_BLOCKSIZE); in alloc_buffers() 1151 if (FFMAX(s->plane[0].xblen, s->plane[0].yblen) > MAX_BLOCKSIZE) { in dirac_unpack_prediction_parameters() 1613 init_obmc_weight(p, s->obmc_weight[0], MAX_BLOCKSIZE, 1, 0, top, bottom); in init_obmc_weights() 1614 init_obmc_weight(p, s->obmc_weight[1], MAX_BLOCKSIZE, 0, 0, top, bottom); in init_obmc_weights() [all …]
|
D | mlpdsp.c | 33 int32_t *iirbuf = state + MAX_BLOCKSIZE + MAX_FIR_ORDER; in mlp_filter_channel()
|
D | shorten.c | 37 #define MAX_BLOCKSIZE 65535 macro 439 if (!blocksize || blocksize > MAX_BLOCKSIZE) { in read_header() 651 if (!blocksize || blocksize > MAX_BLOCKSIZE) { in shorten_decode_frame()
|
D | mlpenc.c | 2251 if (ctx->frame_size[ctx->frame_index] > MAX_BLOCKSIZE) { in mlp_encode_frame() 2253 ctx->frame_size[ctx->frame_index], MAX_BLOCKSIZE); in mlp_encode_frame()
|
/third_party/ffmpeg/libavcodec/x86/ |
D | mlpdsp_init.c | 126 #define IOFFS AV_STRINGIFY(4*(MAX_FIR_ORDER + MAX_BLOCKSIZE))
|