Home
last modified time | relevance | path

Searched refs:HISTORY_SIZE (Results 1 - 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dnotchlc.c75 #define HISTORY_SIZE (64 * 1024) macro
96 if (pos + num_literals < HISTORY_SIZE) { in lz4_decompress()
102 if (pos == HISTORY_SIZE) { in lz4_decompress()
103 bytestream2_put_buffer(pb, history, HISTORY_SIZE); in lz4_decompress()
124 reference_pos = (pos >= delta) ? (pos - delta) : (HISTORY_SIZE + pos - delta); in lz4_decompress()
125 if (pos + match_length < HISTORY_SIZE && reference_pos + match_length < HISTORY_SIZE) { in lz4_decompress()
136 if (pos == HISTORY_SIZE) { in lz4_decompress()
137 bytestream2_put_buffer(pb, history, HISTORY_SIZE); in lz4_decompress()
140 reference_pos %= HISTORY_SIZE; in lz4_decompress()
[all...]
H A Dapedec.c50 #define HISTORY_SIZE 512 macro
132 int32_t historybuffer[HISTORY_SIZE + PREDICTOR_SIZE];
147 int64_t historybuffer[HISTORY_SIZE + PREDICTOR_SIZE];
284 if (!(s->filterbuf[i] = av_malloc((ape_filter_orders[s->fset][i] * 3 + HISTORY_SIZE) * 4))) in ape_decode_init()
1037 if (p->buf == p->historybuffer + HISTORY_SIZE) { in predictor_decode_stereo_3800()
1082 if (p->buf == p->historybuffer + HISTORY_SIZE) { in predictor_decode_mono_3800()
1140 if (p->buf == p->historybuffer + HISTORY_SIZE) { in predictor_decode_stereo_3930()
1162 if (p->buf == p->historybuffer + HISTORY_SIZE) { in predictor_decode_mono_3930()
1248 if (p->buf == p->historybuffer + HISTORY_SIZE) { in predictor_decode_stereo_3950()
1291 if (p->buf == p->historybuffer + HISTORY_SIZE) { in predictor_decode_mono_3950()
[all...]

Completed in 4 milliseconds