Home | History | Annotate | Download | only in vp8

Lines Matching refs:decoder_

502       decoder_(NULL),
535 if (decoder_ == NULL) {
536 decoder_ = new vpx_dec_ctx_t;
557 if (vpx_codec_dec_init(decoder_, vpx_codec_vp8_dx(), &cfg, flags)) {
566 vpx_codec_control(decoder_, VP8_SET_POSTPROC, &ppcfg);
618 vpx_codec_control(decoder_, VP8_SET_POSTPROC, &ppcfg);
655 if (vpx_codec_decode(decoder_, NULL, 0, 0, VPX_DL_REALTIME)) {
662 vpx_codec_get_frame(decoder_, &iter);
679 if (vpx_codec_decode(decoder_,
715 img = vpx_codec_get_frame(decoder_, &iter);
734 if (vpx_codec_control(decoder_, VP8D_GET_LAST_REF_UPDATES,
742 if (vpx_codec_control(decoder_, VP8D_GET_FRAME_CORRUPTED, &corrupted)) {
781 if (vpx_codec_decode(decoder_,
791 if (vpx_codec_decode(decoder_, NULL, 0, 0, VPX_DL_REALTIME))
837 if (decoder_ != NULL) {
838 if (vpx_codec_destroy(decoder_)) {
841 delete decoder_;
842 decoder_ = NULL;
877 if (vpx_codec_decode(copy->decoder_, last_keyframe_._buffer,
935 if (vpx_codec_control(decoder_, VP8_COPY_REFERENCE, ref_frame_)
939 if (vpx_codec_control(static_cast<VP8DecoderImpl*>(copyTo)->decoder_,