Searched refs:last_code (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dlzwenc.c60 int last_code; ///< Value of last output code or LZW_PREFIX_EMPTY member in struct:LZWEncodeState
213 s->last_code = LZW_PREFIX_EMPTY;
234 if (s->last_code == LZW_PREFIX_EMPTY)
239 int code = findCode(s, c, s->last_code);
241 writeCode(s, s->last_code);
242 addCode(s, c, s->last_code, code);
245 s->last_code = s->tab[code].code;
262 if (s->last_code != -1)
263 writeCode(s, s->last_code);
266 s->last_code
[all...]
H A Dmpeg12.c2245 int last_code = 0; local
2282 if (last_code == 0) {
2286 av_log(avctx, AV_LOG_ERROR, "ignoring SEQ_START_CODE after %X\n", last_code);
2303 if (last_code == 0 || last_code == SLICE_MIN_START_CODE) {
2314 last_code = PICTURE_START_CODE;
2316 av_log(avctx, AV_LOG_ERROR, "ignoring pic after %X\n", last_code);
2326 if (last_code == 0) {
2329 av_log(avctx, AV_LOG_ERROR, "ignoring seq ext after %X\n", last_code);
2344 if (last_code
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dlzwenc.c61 int last_code; ///< Value of last output code or LZW_PREFIX_EMPTY member in struct:LZWEncodeState
214 s->last_code = LZW_PREFIX_EMPTY;
235 if (s->last_code == LZW_PREFIX_EMPTY)
240 int code = findCode(s, c, s->last_code);
242 writeCode(s, s->last_code);
243 addCode(s, c, s->last_code, code);
246 s->last_code = s->tab[code].code;
263 if (s->last_code != -1)
264 writeCode(s, s->last_code);
270 s->last_code
[all...]
H A Dmpeg12dec.c2358 int last_code = 0, skip_frame = 0; local
2410 if (last_code == 0) {
2416 "ignoring SEQ_START_CODE after %X\n", last_code);
2452 if (last_code == 0 || last_code == SLICE_MIN_START_CODE) {
2464 last_code = PICTURE_START_CODE;
2467 "ignoring pic after %X\n", last_code);
2477 if (last_code == 0) {
2481 "ignoring seq ext after %X\n", last_code);
2496 if (last_code
[all...]

Completed in 89 milliseconds