Home | History | Annotate | Download | only in filters

Lines Matching refs:codec_context_

139   DCHECK(!codec_context_);
189 avcodec_flush_buffers(codec_context_.get());
225 codec_context_->codec_id == AV_CODEC_ID_VORBIS &&
273 codec_context_.get(), av_frame_.get(), &frame_decoded, &packet);
348 codec_context_.reset();
371 codec_context_.reset(avcodec_alloc_context3(NULL));
372 AudioDecoderConfigToAVCodecContext(config_, codec_context_.get());
374 codec_context_->opaque = this;
375 codec_context_->get_buffer2 = GetAudioBuffer;
376 codec_context_->refcounted_frames = 1;
378 AVCodec* codec = avcodec_find_decoder(codec_context_->codec_id);
379 if (!codec || avcodec_open2(codec_context_.get(), codec, NULL) < 0) {
381 << codec_context_->codec_id;
391 av_sample_format_ = codec_context_->sample_fmt;
393 if (codec_context_->channels !=
398 << codec_context_->channels << " channels";