Home
last modified time | relevance | path

Searched refs:prev_mode (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/opus/src/src/
Dopus_decoder.c65 int prev_mode; member
136 st->prev_mode = 0; in opus_decoder_init()
261 if (st->prev_mode == 0) in opus_decode_frame()
269 mode = st->prev_mode; in opus_decode_frame()
280 if (data!=NULL && st->prev_mode > 0 && ( in opus_decode_frame()
281 (mode == MODE_CELT_ONLY && st->prev_mode != MODE_CELT_ONLY && !st->prev_redundancy) in opus_decode_frame()
282 || (mode != MODE_CELT_ONLY && st->prev_mode == MODE_CELT_ONLY) ) in opus_decode_frame()
317 if (st->prev_mode==MODE_CELT_ONLY) in opus_decode_frame()
456 if (mode != st->prev_mode && st->prev_mode > 0 && !st->prev_redundancy) in opus_decode_frame()
467 if (st->prev_mode == MODE_HYBRID && !(redundancy && celt_to_silk && st->prev_redundancy) ) in opus_decode_frame()
[all …]
Dopus_encoder.c91 int prev_mode; member
1155 if (st->prev_mode==MODE_CELT_ONLY) in opus_encode_native()
1177 if (st->prev_mode == MODE_CELT_ONLY) in opus_encode_native()
1179 else if (st->prev_mode>0) in opus_encode_native()
1200 && st->mode != MODE_CELT_ONLY && st->prev_mode != MODE_CELT_ONLY) in opus_encode_native()
1209 if (st->prev_mode > 0 && in opus_encode_native()
1210 ((st->mode != MODE_CELT_ONLY && st->prev_mode == MODE_CELT_ONLY) || in opus_encode_native()
1211 (st->mode == MODE_CELT_ONLY && st->prev_mode != MODE_CELT_ONLY))) in opus_encode_native()
1220 st->mode = st->prev_mode; in opus_encode_native()
1245 if (st->mode != MODE_CELT_ONLY && st->prev_mode == MODE_CELT_ONLY) in opus_encode_native()
[all …]
/external/opencv/cxcore/src/
Dcxerror.cpp317 int prev_mode = context->err_mode; in cvSetErrMode() local
319 return prev_mode; in cvSetErrMode()
/external/qemu/distrib/sdl-1.2.15/src/video/
DSDL_video.c586 SDL_Surface *prev_mode, *mode; in SDL_SetVideoMode() local
680 prev_mode = SDL_VideoSurface; in SDL_SetVideoMode()
683 mode = video->SetVideoMode(this, prev_mode,video_w,video_h,video_bpp,flags); in SDL_SetVideoMode()
707 SDL_VideoSurface = (mode != NULL) ? mode : prev_mode; in SDL_SetVideoMode()