1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
|
// Copyright (c) 2012 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/filters/ffmpeg_audio_decoder.h"
#include <stdint.h>
#include "base/callback_helpers.h"
#include "base/single_thread_task_runner.h"
#include "media/base/audio_buffer.h"
#include "media/base/audio_bus.h"
#include "media/base/audio_decoder_config.h"
#include "media/base/audio_discard_helper.h"
#include "media/base/bind_to_current_loop.h"
#include "media/base/decoder_buffer.h"
#include "media/base/limits.h"
#include "media/base/timestamp_constants.h"
#include "media/ffmpeg/ffmpeg_common.h"
#include "media/ffmpeg/ffmpeg_decoding_loop.h"
#include "media/filters/ffmpeg_glue.h"
namespace media {
// Return the number of channels from the data in |frame|.
static inline int DetermineChannels(AVFrame* frame) {
return frame->channels;
}
// Called by FFmpeg's allocation routine to allocate a buffer. Uses
// AVCodecContext.opaque to get the object reference in order to call
// GetAudioBuffer() to do the actual allocation.
static int GetAudioBufferImpl(struct AVCodecContext* s,
AVFrame* frame,
int flags) {
FFmpegAudioDecoder* decoder = static_cast<FFmpegAudioDecoder*>(s->opaque);
return decoder->GetAudioBuffer(s, frame, flags);
}
// Called by FFmpeg's allocation routine to free a buffer. |opaque| is the
// AudioBuffer allocated, so unref it.
static void ReleaseAudioBufferImpl(void* opaque, uint8_t* data) {
if (opaque)
static_cast<AudioBuffer*>(opaque)->Release();
}
FFmpegAudioDecoder::FFmpegAudioDecoder(
const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
MediaLog* media_log)
: task_runner_(task_runner),
state_(kUninitialized),
av_sample_format_(0),
media_log_(media_log),
pool_(new AudioBufferMemoryPool()) {}
FFmpegAudioDecoder::~FFmpegAudioDecoder() {
DCHECK(task_runner_->BelongsToCurrentThread());
if (state_ != kUninitialized)
ReleaseFFmpegResources();
}
std::string FFmpegAudioDecoder::GetDisplayName() const {
return "FFmpegAudioDecoder";
}
void FFmpegAudioDecoder::Initialize(
const AudioDecoderConfig& config,
CdmContext* /* cdm_context */,
const InitCB& init_cb,
const OutputCB& output_cb,
const WaitingForDecryptionKeyCB& /* waiting_for_decryption_key_cb */) {
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK(config.IsValidConfig());
InitCB bound_init_cb = BindToCurrentLoop(init_cb);
if (config.is_encrypted()) {
bound_init_cb.Run(false);
return;
}
FFmpegGlue::InitializeFFmpeg();
if (!ConfigureDecoder(config)) {
av_sample_format_ = 0;
bound_init_cb.Run(false);
return;
}
// Success!
config_ = config;
output_cb_ = BindToCurrentLoop(output_cb);
state_ = kNormal;
bound_init_cb.Run(true);
}
void FFmpegAudioDecoder::Decode(scoped_refptr<DecoderBuffer> buffer,
const DecodeCB& decode_cb) {
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK(!decode_cb.is_null());
CHECK_NE(state_, kUninitialized);
DecodeCB decode_cb_bound = BindToCurrentLoop(decode_cb);
if (state_ == kError) {
decode_cb_bound.Run(DecodeStatus::DECODE_ERROR);
return;
}
// Do nothing if decoding has finished.
if (state_ == kDecodeFinished) {
decode_cb_bound.Run(DecodeStatus::OK);
return;
}
DecodeBuffer(*buffer, decode_cb_bound);
}
void FFmpegAudioDecoder::Reset(const base::Closure& closure) {
DCHECK(task_runner_->BelongsToCurrentThread());
avcodec_flush_buffers(codec_context_.get());
state_ = kNormal;
ResetTimestampState(config_);
task_runner_->PostTask(FROM_HERE, closure);
}
void FFmpegAudioDecoder::DecodeBuffer(const DecoderBuffer& buffer,
const DecodeCB& decode_cb) {
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK_NE(state_, kUninitialized);
DCHECK_NE(state_, kDecodeFinished);
DCHECK_NE(state_, kError);
// Make sure we are notified if http://crbug.com/49709 returns. Issue also
// occurs with some damaged files.
if (!buffer.end_of_stream() && buffer.timestamp() == kNoTimestamp) {
DVLOG(1) << "Received a buffer without timestamps!";
decode_cb.Run(DecodeStatus::DECODE_ERROR);
return;
}
if (!FFmpegDecode(buffer)) {
state_ = kError;
decode_cb.Run(DecodeStatus::DECODE_ERROR);
return;
}
if (buffer.end_of_stream())
state_ = kDecodeFinished;
decode_cb.Run(DecodeStatus::OK);
}
bool FFmpegAudioDecoder::FFmpegDecode(const DecoderBuffer& buffer) {
AVPacket packet;
av_init_packet(&packet);
if (buffer.end_of_stream()) {
packet.data = NULL;
packet.size = 0;
} else {
packet.data = const_cast<uint8_t*>(buffer.data());
packet.size = buffer.data_size();
DCHECK(packet.data);
DCHECK_GT(packet.size, 0);
}
bool decoded_frame_this_loop = false;
// base::Unretained and base::ConstRef are safe to use with the callback given
// to DecodePacket() since that callback is only used the function call.
switch (decoding_loop_->DecodePacket(
&packet, base::BindRepeating(
&FFmpegAudioDecoder::OnNewFrame, base::Unretained(this),
base::ConstRef(buffer), &decoded_frame_this_loop))) {
case FFmpegDecodingLoop::DecodeStatus::kSendPacketFailed:
MEDIA_LOG(ERROR, media_log_)
<< "Failed to send audio packet for decoding: "
<< buffer.AsHumanReadableString();
return false;
case FFmpegDecodingLoop::DecodeStatus::kFrameProcessingFailed:
// OnNewFrame() should have already issued a MEDIA_LOG for this.
return false;
case FFmpegDecodingLoop::DecodeStatus::kDecodeFrameFailed:
DCHECK(!buffer.end_of_stream())
<< "End of stream buffer produced an error! "
<< "This is quite possibly a bug in the audio decoder not handling "
<< "end of stream AVPackets correctly.";
MEDIA_LOG(DEBUG, media_log_)
<< GetDisplayName() << " failed to decode an audio buffer: "
<< AVErrorToString(decoding_loop_->last_averror_code()) << ", at "
<< buffer.AsHumanReadableString();
break;
case FFmpegDecodingLoop::DecodeStatus::kOkay:
break;
}
// Even if we didn't decode a frame this loop, we should still send the packet
// to the discard helper for caching.
if (!decoded_frame_this_loop && !buffer.end_of_stream()) {
const bool result = discard_helper_->ProcessBuffers(buffer, nullptr);
DCHECK(!result);
}
return true;
}
bool FFmpegAudioDecoder::OnNewFrame(const DecoderBuffer& buffer,
bool* decoded_frame_this_loop,
AVFrame* frame) {
const int channels = DetermineChannels(frame);
// Translate unsupported into discrete layouts for discrete configurations;
// ffmpeg does not have a labeled discrete configuration internally.
ChannelLayout channel_layout = ChannelLayoutToChromeChannelLayout(
codec_context_->channel_layout, codec_context_->channels);
if (channel_layout == CHANNEL_LAYOUT_UNSUPPORTED &&
config_.channel_layout() == CHANNEL_LAYOUT_DISCRETE) {
channel_layout = CHANNEL_LAYOUT_DISCRETE;
}
const bool is_sample_rate_change =
frame->sample_rate != config_.samples_per_second();
const bool is_config_change = is_sample_rate_change ||
channels != config_.channels() ||
channel_layout != config_.channel_layout();
if (is_config_change) {
// Sample format is never expected to change.
if (frame->format != av_sample_format_) {
MEDIA_LOG(ERROR, media_log_)
<< "Unsupported midstream configuration change!"
<< " Sample Rate: " << frame->sample_rate << " vs "
<< config_.samples_per_second()
<< " ChannelLayout: " << channel_layout << " vs "
<< config_.channel_layout() << " << Channels: " << channels << " vs "
<< config_.channels() << ", Sample Format: " << frame->format
<< " vs " << av_sample_format_;
// This is an unrecoverable error, so bail out.
return false;
}
MEDIA_LOG(DEBUG, media_log_)
<< " Detected midstream configuration change"
<< " PTS:" << buffer.timestamp().InMicroseconds()
<< " Sample Rate: " << frame->sample_rate << " vs "
<< config_.samples_per_second() << ", ChannelLayout: " << channel_layout
<< " vs " << config_.channel_layout() << ", Channels: " << channels
<< " vs " << config_.channels();
config_.Initialize(config_.codec(), config_.sample_format(), channel_layout,
frame->sample_rate, config_.extra_data(),
config_.encryption_scheme(), config_.seek_preroll(),
config_.codec_delay());
if (is_sample_rate_change)
ResetTimestampState(config_);
}
// Get the AudioBuffer that the data was decoded into. Adjust the number
// of frames, in case fewer than requested were actually decoded.
scoped_refptr<AudioBuffer> output =
reinterpret_cast<AudioBuffer*>(av_buffer_get_opaque(frame->buf[0]));
DCHECK_EQ(config_.channels(), output->channel_count());
const int unread_frames = output->frame_count() - frame->nb_samples;
DCHECK_GE(unread_frames, 0);
if (unread_frames > 0)
output->TrimEnd(unread_frames);
*decoded_frame_this_loop = true;
if (discard_helper_->ProcessBuffers(buffer, output)) {
if (is_config_change &&
output->sample_rate() != config_.samples_per_second()) {
// At the boundary of the config change, FFmpeg's AAC decoder gives the
// previous sample rate when calling our GetAudioBuffer. Set the correct
// sample rate before sending the buffer along.
// TODO(chcunningham): Fix FFmpeg and upstream it.
output->AdjustSampleRate(config_.samples_per_second());
}
output_cb_.Run(output);
}
return true;
}
void FFmpegAudioDecoder::ReleaseFFmpegResources() {
decoding_loop_.reset();
codec_context_.reset();
}
bool FFmpegAudioDecoder::ConfigureDecoder(const AudioDecoderConfig& config) {
DCHECK(config.IsValidConfig());
DCHECK(!config.is_encrypted());
// Release existing decoder resources if necessary.
ReleaseFFmpegResources();
// Initialize AVCodecContext structure.
codec_context_.reset(avcodec_alloc_context3(NULL));
AudioDecoderConfigToAVCodecContext(config, codec_context_.get());
codec_context_->opaque = this;
codec_context_->get_buffer2 = GetAudioBufferImpl;
if (!config.should_discard_decoder_delay())
codec_context_->flags2 |= AV_CODEC_FLAG2_SKIP_MANUAL;
AVDictionary* codec_options = NULL;
if (config.codec() == kCodecOpus) {
codec_context_->request_sample_fmt = AV_SAMPLE_FMT_FLT;
// Disable phase inversion to avoid artifacts in mono downmix. See
// http://crbug.com/806219
if (config.target_output_channel_layout() == CHANNEL_LAYOUT_MONO) {
int result = av_dict_set(&codec_options, "apply_phase_inv", "0", 0);
DCHECK_GE(result, 0);
}
}
AVCodec* codec = avcodec_find_decoder(codec_context_->codec_id);
if (!codec ||
avcodec_open2(codec_context_.get(), codec, &codec_options) < 0) {
DLOG(ERROR) << "Could not initialize audio decoder: "
<< codec_context_->codec_id;
ReleaseFFmpegResources();
state_ = kUninitialized;
return false;
}
// Verify avcodec_open2() used all given options.
DCHECK_EQ(0, av_dict_count(codec_options));
// Success!
av_sample_format_ = codec_context_->sample_fmt;
if (codec_context_->channels != config.channels()) {
MEDIA_LOG(ERROR, media_log_)
<< "Audio configuration specified " << config.channels()
<< " channels, but FFmpeg thinks the file contains "
<< codec_context_->channels << " channels";
ReleaseFFmpegResources();
state_ = kUninitialized;
return false;
}
decoding_loop_.reset(new FFmpegDecodingLoop(codec_context_.get(), true));
ResetTimestampState(config);
return true;
}
void FFmpegAudioDecoder::ResetTimestampState(const AudioDecoderConfig& config) {
// Opus codec delay is handled by ffmpeg.
const int codec_delay =
config.codec() == kCodecOpus ? 0 : config.codec_delay();
discard_helper_.reset(new AudioDiscardHelper(config.samples_per_second(),
codec_delay,
config.codec() == kCodecVorbis));
discard_helper_->Reset(codec_delay);
}
int FFmpegAudioDecoder::GetAudioBuffer(struct AVCodecContext* s,
AVFrame* frame,
int flags) {
DCHECK(s->codec->capabilities & AV_CODEC_CAP_DR1);
DCHECK_EQ(s->codec_type, AVMEDIA_TYPE_AUDIO);
// Since this routine is called by FFmpeg when a buffer is required for
// audio data, use the values supplied by FFmpeg (ignoring the current
// settings). FFmpegDecode() gets to determine if the buffer is useable or
// not.
AVSampleFormat format = static_cast<AVSampleFormat>(frame->format);
SampleFormat sample_format =
AVSampleFormatToSampleFormat(format, s->codec_id);
int channels = DetermineChannels(frame);
if (channels <= 0 || channels >= limits::kMaxChannels) {
DLOG(ERROR) << "Requested number of channels (" << channels
<< ") exceeds limit.";
return AVERROR(EINVAL);
}
int bytes_per_channel = SampleFormatToBytesPerChannel(sample_format);
if (frame->nb_samples <= 0)
return AVERROR(EINVAL);
if (s->channels != channels) {
DLOG(ERROR) << "AVCodecContext and AVFrame disagree on channel count.";
return AVERROR(EINVAL);
}
if (s->sample_rate != frame->sample_rate) {
DLOG(ERROR) << "AVCodecContext and AVFrame disagree on sample rate."
<< s->sample_rate << " vs " << frame->sample_rate;
return AVERROR(EINVAL);
}
if (s->sample_rate < limits::kMinSampleRate ||
s->sample_rate > limits::kMaxSampleRate) {
DLOG(ERROR) << "Requested sample rate (" << s->sample_rate
<< ") is outside supported range (" << limits::kMinSampleRate
<< " to " << limits::kMaxSampleRate << ").";
return AVERROR(EINVAL);
}
// Determine how big the buffer should be and allocate it. FFmpeg may adjust
// how big each channel data is in order to meet the alignment policy, so
// we need to take this into consideration.
int buffer_size_in_bytes = av_samples_get_buffer_size(
&frame->linesize[0], channels, frame->nb_samples, format,
0 /* align, use ffmpeg default */);
// Check for errors from av_samples_get_buffer_size().
if (buffer_size_in_bytes < 0)
return buffer_size_in_bytes;
int frames_required = buffer_size_in_bytes / bytes_per_channel / channels;
DCHECK_GE(frames_required, frame->nb_samples);
ChannelLayout channel_layout =
config_.channel_layout() == CHANNEL_LAYOUT_DISCRETE
? CHANNEL_LAYOUT_DISCRETE
: ChannelLayoutToChromeChannelLayout(s->channel_layout, s->channels);
if (channel_layout == CHANNEL_LAYOUT_UNSUPPORTED) {
DLOG(ERROR) << "Unsupported channel layout.";
return AVERROR(EINVAL);
}
scoped_refptr<AudioBuffer> buffer =
AudioBuffer::CreateBuffer(sample_format, channel_layout, channels,
s->sample_rate, frames_required, pool_);
// Initialize the data[] and extended_data[] fields to point into the memory
// allocated for AudioBuffer. |number_of_planes| will be 1 for interleaved
// audio and equal to |channels| for planar audio.
int number_of_planes = buffer->channel_data().size();
if (number_of_planes <= AV_NUM_DATA_POINTERS) {
DCHECK_EQ(frame->extended_data, frame->data);
for (int i = 0; i < number_of_planes; ++i)
frame->data[i] = buffer->channel_data()[i];
} else {
// There are more channels than can fit into data[], so allocate
// extended_data[] and fill appropriately.
frame->extended_data = static_cast<uint8_t**>(
av_malloc(number_of_planes * sizeof(*frame->extended_data)));
int i = 0;
for (; i < AV_NUM_DATA_POINTERS; ++i)
frame->extended_data[i] = frame->data[i] = buffer->channel_data()[i];
for (; i < number_of_planes; ++i)
frame->extended_data[i] = buffer->channel_data()[i];
}
// Now create an AVBufferRef for the data just allocated. It will own the
// reference to the AudioBuffer object.
AudioBuffer* opaque = buffer.get();
opaque->AddRef();
frame->buf[0] = av_buffer_create(frame->data[0], buffer_size_in_bytes,
ReleaseAudioBufferImpl, opaque, 0);
return 0;
}
} // namespace media
|