/external/chromium_org/media/cdm/ppapi/ |
ffmpeg_cdm_video_decoder.cc | 177 av_frame_.reset(av_frame_alloc()); 225 avcodec_get_frame_defaults(av_frame_.get()); 228 // |av_frame_->reordered_opaque| 229 av_frame_->reordered_opaque = codec_context_->reordered_opaque; 233 av_frame_.get(), 250 if (!av_frame_->data[cdm::VideoFrame::kYPlane] || 251 !av_frame_->data[cdm::VideoFrame::kUPlane] || 252 !av_frame_->data[cdm::VideoFrame::kVPlane]) { 267 DCHECK_EQ(av_frame_->format, PIX_FMT_YUV420P); 268 DCHECK_EQ(av_frame_->width % 2, 0) [all...] |
ffmpeg_cdm_audio_decoder.cc | 183 av_frame_.reset(av_frame_alloc()); 274 avcodec_get_frame_defaults(av_frame_.get()); 278 codec_context_.get(), av_frame_.get(), &frame_decoded, &packet); 315 if (av_frame_->sample_rate != samples_per_second_ || 316 av_frame_->channels != channels_ || 317 av_frame_->format != av_sample_format_) { 319 << " Sample Rate: " << av_frame_->sample_rate << " vs " 321 << ", Channels: " << av_frame_->channels << " vs " 323 << ", Sample Format: " << av_frame_->format << " vs " 329 NULL, codec_context_->channels, av_frame_->nb_samples [all...] |
ffmpeg_cdm_audio_decoder.h | 68 scoped_ptr_malloc<AVFrame, ScopedPtrAVFreeFrame> av_frame_; member in class:media::FFmpegCdmAudioDecoder
|
ffmpeg_cdm_video_decoder.h | 43 // Allocates storage, then copies video frame stored in |av_frame_| to 51 scoped_ptr_malloc<AVFrame, ScopedPtrAVFreeFrame> av_frame_; member in class:media::FFmpegCdmVideoDecoder
|
/external/chromium_org/media/filters/ |
ffmpeg_video_decoder.cc | 215 DCHECK(!av_frame_); 290 avcodec_get_frame_defaults(av_frame_.get()); 307 // |av_frame_->reordered_opaque| 308 av_frame_->reordered_opaque = codec_context_->reordered_opaque; 313 av_frame_.get(), 335 if (!av_frame_->data[VideoFrame::kYPlane] || 336 !av_frame_->data[VideoFrame::kUPlane] || 337 !av_frame_->data[VideoFrame::kVPlane]) { 343 if (!av_frame_->opaque) { 347 *video_frame = static_cast<VideoFrame*>(av_frame_->opaque) [all...] |
ffmpeg_audio_decoder.cc | 375 av_frame_.reset(av_frame_alloc()); 400 av_frame_.reset(); 429 codec_context_.get(), av_frame_.get(), &frame_decoded, &packet); 467 int channels = DetermineChannels(av_frame_.get()); 469 if (av_frame_->sample_rate != samples_per_second_ || 471 av_frame_->format != av_sample_format_) { 473 << " Sample Rate: " << av_frame_->sample_rate << " vs " 477 << ", Sample Format: " << av_frame_->format << " vs " 483 av_frame_unref(av_frame_.get()); 490 av_buffer_get_opaque(av_frame_->buf[0])) [all...] |
ffmpeg_audio_decoder.h | 92 scoped_ptr_malloc<AVFrame, ScopedPtrAVFreeFrame> av_frame_; member in class:media::FFmpegAudioDecoder
|
ffmpeg_video_decoder.h | 67 // Releases resources associated with |codec_context_| and |av_frame_| 85 scoped_ptr_malloc<AVFrame, ScopedPtrAVFreeFrame> av_frame_; member in class:media::FFmpegVideoDecoder
|