Searched refs:rice (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dttaenc.c127 ff_tta_rice_init(&s->ch_ctx[i].rice, 10, 10);
133 TTARice *rice = &c->rice; local
158 k = rice->k0;
160 rice->sum0 += outval - (rice->sum0 >> 4);
161 if (rice->k0 > 0 && rice->sum0 < ff_tta_shift_16[rice->k0])
162 rice
[all...]
H A Dtta.c254 ff_tta_rice_init(&s->ch_ctx[i].rice, 10, 10);
261 TTARice *rice = &s->ch_ctx[cur_chan].rice; local
269 k = rice->k0;
272 k = rice->k1;
293 rice->sum1 += value - (rice->sum1 >> 4);
294 if (rice->k1 > 0 && rice->sum1 < ff_tta_shift_16[rice
[all...]
H A Dttadata.h41 TTARice rice; member in struct:TTAChannel
H A Dapedec.c162 APERice riceX; ///< rice code parameters for the second channel
163 APERice riceY; ///< rice code parameters for the first channel
456 static inline void update_rice(APERice *rice, unsigned int x) argument
458 int lim = rice->k ? (1 << (rice->k + 4)) : 0;
459 rice->ksum += ((x + 1) / 2) - ((rice->ksum + 16) >> 5);
461 if (rice->ksum < lim)
462 rice->k--;
463 else if (rice
479 ape_decode_value_3860(APEContext *ctx, GetBitContext *gb, APERice *rice) argument
514 ape_decode_value_3900(APEContext *ctx, APERice *rice) argument
551 ape_decode_value_3990(APEContext *ctx, APERice *rice) argument
597 decode_array_0000(APEContext *ctx, GetBitContext *gb, int32_t *out, APERice *rice, int blockstodecode) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dtta.c55 TTARice rice; member in struct:TTAChannel
359 rice_init(&s->ch_ctx[i].rice, 10, 10);
365 TTARice *rice = &s->ch_ctx[cur_chan].rice; local
373 k = rice->k0;
376 k = rice->k1;
393 rice->sum1 += value - (rice->sum1 >> 4);
394 if (rice->k1 > 0 && rice
[all...]
H A Dapedec.c152 APERice riceX; ///< rice code parameters for the second channel
153 APERice riceY; ///< rice code parameters for the first channel
379 static inline void update_rice(APERice *rice, int x) argument
381 int lim = rice->k ? (1 << (rice->k + 4)) : 0;
382 rice->ksum += ((x + 1) / 2) - ((rice->ksum + 16) >> 5);
384 if (rice->ksum < lim)
385 rice->k--;
386 else if (rice
390 ape_decode_value(APEContext *ctx, APERice *rice) argument
[all...]

Completed in 47 milliseconds