Searched refs:cxstate (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmqcdec.c45 static int exchange(MqcState *mqc, uint8_t *cxstate, int lps) argument
48 if ((mqc->a < ff_mqc_qe[*cxstate]) ^ (!lps)) {
50 mqc->a = ff_mqc_qe[*cxstate];
51 d = *cxstate & 1;
52 *cxstate = ff_mqc_nmps[*cxstate];
55 mqc->a = ff_mqc_qe[*cxstate];
56 d = 1 - (*cxstate & 1);
57 *cxstate = ff_mqc_nlps[*cxstate];
81 ff_mqc_decode(MqcState *mqc, uint8_t *cxstate) argument
[all...]
H A Dmqc.h54 void ff_mqc_encode(MqcState *mqc, uint8_t *cxstate, int d);
74 * @param cxstate Context
77 int ff_mqc_decode(MqcState *mqc, uint8_t *cxstate);
H A Dmqcenc.c78 void ff_mqc_encode(MqcState *mqc, uint8_t *cxstate, int d) argument
82 qe = ff_mqc_qe[*cxstate];
84 if ((*cxstate & 1) == d){
90 *cxstate = ff_mqc_nmps[*cxstate];
99 *cxstate = ff_mqc_nlps[*cxstate];

Completed in 110 milliseconds