// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "remoting/base/decoder_vp8.h" #include "media/base/media.h" #include "media/base/yuv_convert.h" #include "remoting/base/util.h" extern "C" { #define VPX_CODEC_DISABLE_COMPAT 1 #include "third_party/libvpx/include/vpx/vpx_codec.h" #include "third_party/libvpx/include/vpx/vpx_decoder.h" #include "third_party/libvpx/include/vpx/vp8dx.h" } namespace remoting { DecoderVp8::DecoderVp8() : state_(kUninitialized), codec_(NULL) { } DecoderVp8::~DecoderVp8() { if (codec_) { vpx_codec_err_t ret = vpx_codec_destroy(codec_); CHECK(ret == VPX_CODEC_OK) << "Failed to destroy codec"; } delete codec_; } void DecoderVp8::Initialize(scoped_refptr frame, const gfx::Rect& clip, int bytes_per_src_pixel) { DCHECK_EQ(kUninitialized, state_); if (frame->format() != media::VideoFrame::RGB32) { LOG(INFO) << "DecoderVp8 only supports RGB32 as output"; state_ = kError; return; } frame_ = frame; state_ = kReady; } void DecoderVp8::DecodeBytes(const std::string& encoded_bytes) { DCHECK_EQ(kReady, state_); // Initialize the codec as needed. if (!codec_) { codec_ = new vpx_codec_ctx_t(); vpx_codec_err_t ret = vpx_codec_dec_init( codec_, (const vpx_codec_iface_t*)media::GetVp8DxAlgoAddress(), NULL, 0); if (ret != VPX_CODEC_OK) { LOG(INFO) << "Cannot initialize codec."; delete codec_; codec_ = NULL; state_ = kError; return; } } LOG(WARNING) << "Decoding " << encoded_bytes.size(); // Do the actual decoding. vpx_codec_err_t ret = vpx_codec_decode( codec_, reinterpret_cast(encoded_bytes.data()), encoded_bytes.size(), NULL, 0); if (ret != VPX_CODEC_OK) { LOG(INFO) << "Decoding failed:" << vpx_codec_err_to_string(ret) << "\n" << "Details: " << vpx_codec_error(codec_) << "\n" << vpx_codec_error_detail(codec_); } // Gets the decoded data. vpx_codec_iter_t iter = NULL; vpx_image_t* image = vpx_codec_get_frame(codec_, &iter); if (!image) { LOG(INFO) << "No video frame decoded"; } // Perform YUV conversion. media::ConvertYUVToRGB32(image->planes[0], image->planes[1], image->planes[2], frame_->data(media::VideoFrame::kRGBPlane), frame_->width(), frame_->height(), image->stride[0], image->stride[1], frame_->stride(media::VideoFrame::kRGBPlane), media::YV12); } void DecoderVp8::Reset() { frame_ = NULL; state_ = kUninitialized; } bool DecoderVp8::IsReadyForData() { return state_ == kReady; } VideoPacketFormat::Encoding DecoderVp8::Encoding() { return VideoPacketFormat::ENCODING_VP8; } } // namespace remoting