blob: 1c18ac253de6c1d6f36fcd5755cd4bd48632ac41 [file] [log] [blame]
// Copyright 2018 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 "media/base/video_thumbnail_decoder.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "media/base/decoder_buffer.h"
#include "media/base/video_frame.h"
namespace media {
VideoThumbnailDecoder::VideoThumbnailDecoder(
std::unique_ptr<VideoDecoder> decoder,
const VideoDecoderConfig& config,
std::vector<uint8_t> encoded_data)
: decoder_(std::move(decoder)),
config_(config),
encoded_data_(std::move(encoded_data)),
weak_factory_(this) {
DCHECK(!encoded_data_.empty());
DCHECK(config_.IsValidConfig());
}
VideoThumbnailDecoder::~VideoThumbnailDecoder() = default;
void VideoThumbnailDecoder::Start(VideoFrameCallback video_frame_callback) {
video_frame_callback_ = std::move(video_frame_callback);
DCHECK(video_frame_callback_);
decoder_->Initialize(
config_, false, nullptr,
base::BindRepeating(&VideoThumbnailDecoder::OnVideoDecoderInitialized,
weak_factory_.GetWeakPtr()),
base::BindRepeating(&VideoThumbnailDecoder::OnVideoFrameDecoded,
weak_factory_.GetWeakPtr()),
base::DoNothing());
}
void VideoThumbnailDecoder::OnVideoDecoderInitialized(bool success) {
if (!success) {
NotifyComplete(nullptr);
return;
}
auto buffer =
DecoderBuffer::CopyFrom(&encoded_data_[0], encoded_data_.size());
encoded_data_.clear();
decoder_->Decode(
buffer, base::BindRepeating(&VideoThumbnailDecoder::OnVideoBufferDecoded,
weak_factory_.GetWeakPtr()));
}
void VideoThumbnailDecoder::OnVideoBufferDecoded(DecodeStatus status) {
if (status != DecodeStatus::OK) {
NotifyComplete(nullptr);
return;
}
// Enqueue eos since only one video frame is needed for thumbnail.
decoder_->Decode(
DecoderBuffer::CreateEOSBuffer(),
base::BindRepeating(&VideoThumbnailDecoder::OnEosBufferDecoded,
weak_factory_.GetWeakPtr()));
}
void VideoThumbnailDecoder::OnEosBufferDecoded(DecodeStatus status) {
if (status != DecodeStatus::OK)
NotifyComplete(nullptr);
}
void VideoThumbnailDecoder::OnVideoFrameDecoded(
const scoped_refptr<VideoFrame>& frame) {
NotifyComplete(std::move(frame));
}
void VideoThumbnailDecoder::NotifyComplete(scoped_refptr<VideoFrame> frame) {
DCHECK(video_frame_callback_);
std::move(video_frame_callback_).Run(std::move(frame));
}
} // namespace media