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
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "DVDAudioCodecFFmpeg.h"
#include "../../DVDStreamInfo.h"
#include "DVDCodecs/DVDCodecs.h"
#include "ServiceBroker.h"
#include "cores/AudioEngine/Utils/AEUtil.h"
#include "cores/FFmpeg.h"
#include "settings/AdvancedSettings.h"
#include "settings/Settings.h"
#include "settings/SettingsComponent.h"
#include "utils/log.h"
extern "C" {
#include <libavutil/opt.h>
}
CDVDAudioCodecFFmpeg::CDVDAudioCodecFFmpeg(CProcessInfo &processInfo) : CDVDAudioCodec(processInfo)
{
m_pCodecContext = NULL;
m_channels = 0;
m_layout = 0;
m_pFrame = nullptr;
m_eof = false;
}
CDVDAudioCodecFFmpeg::~CDVDAudioCodecFFmpeg()
{
Dispose();
}
bool CDVDAudioCodecFFmpeg::Open(CDVDStreamInfo &hints, CDVDCodecOptions &options)
{
if (hints.cryptoSession)
{
CLog::Log(LOGERROR,"CDVDAudioCodecFFmpeg::Open() CryptoSessions unsupported!");
return false;
}
FFMPEG_FMT_CONST AVCodec* pCodec = nullptr;
bool allowdtshddecode = true;
// set any special options
for(std::vector<CDVDCodecOption>::iterator it = options.m_keys.begin(); it != options.m_keys.end(); ++it)
if (it->m_name == "allowdtshddecode")
allowdtshddecode = atoi(it->m_value.c_str()) != 0;
if (hints.codec == AV_CODEC_ID_DTS && allowdtshddecode)
pCodec = avcodec_find_decoder_by_name("dcadec");
if (!pCodec)
pCodec = avcodec_find_decoder(hints.codec);
if (!pCodec)
{
CLog::Log(LOGDEBUG, "CDVDAudioCodecFFmpeg::Open() Unable to find codec {}", hints.codec);
return false;
}
m_pCodecContext = avcodec_alloc_context3(pCodec);
if (!m_pCodecContext)
return false;
m_pCodecContext->debug = 0;
m_pCodecContext->workaround_bugs = 1;
if (pCodec->capabilities & AV_CODEC_CAP_TRUNCATED)
m_pCodecContext->flags |= AV_CODEC_FLAG_TRUNCATED;
m_matrixEncoding = AV_MATRIX_ENCODING_NONE;
m_channels = 0;
#if LIBAVCODEC_BUILD >= AV_VERSION_INT(59, 37, 100) && \
LIBAVUTIL_BUILD >= AV_VERSION_INT(57, 28, 100)
av_channel_layout_uninit(&m_pCodecContext->ch_layout);
m_pCodecContext->ch_layout.order = AV_CHANNEL_ORDER_NATIVE;
m_pCodecContext->ch_layout.nb_channels = hints.channels;
#else
m_pCodecContext->channels = hints.channels;
#endif
m_hint_layout = hints.channellayout;
m_pCodecContext->sample_rate = hints.samplerate;
m_pCodecContext->block_align = hints.blockalign;
m_pCodecContext->bit_rate = hints.bitrate;
m_pCodecContext->bits_per_coded_sample = hints.bitspersample;
if(m_pCodecContext->bits_per_coded_sample == 0)
m_pCodecContext->bits_per_coded_sample = 16;
if( hints.extradata && hints.extrasize > 0 )
{
m_pCodecContext->extradata = (uint8_t*)av_mallocz(hints.extrasize + AV_INPUT_BUFFER_PADDING_SIZE);
if(m_pCodecContext->extradata)
{
m_pCodecContext->extradata_size = hints.extrasize;
memcpy(m_pCodecContext->extradata, hints.extradata, hints.extrasize);
}
}
float applyDrc = CServiceBroker::GetSettingsComponent()->GetAdvancedSettings()->m_audioApplyDrc;
if (applyDrc >= 0.0f)
av_opt_set_double(m_pCodecContext, "drc_scale", static_cast<double>(applyDrc),
AV_OPT_SEARCH_CHILDREN);
if (avcodec_open2(m_pCodecContext, pCodec, NULL) < 0)
{
CLog::Log(LOGDEBUG,"CDVDAudioCodecFFmpeg::Open() Unable to open codec");
Dispose();
return false;
}
m_pFrame = av_frame_alloc();
if (!m_pFrame)
{
Dispose();
return false;
}
m_iSampleFormat = AV_SAMPLE_FMT_NONE;
m_matrixEncoding = AV_MATRIX_ENCODING_NONE;
m_hasDownmix = false;
m_codecName = "ff-" + std::string(m_pCodecContext->codec->name);
CLog::Log(LOGINFO, "CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder {}",
m_pCodecContext->codec->name);
return true;
}
void CDVDAudioCodecFFmpeg::Dispose()
{
av_frame_free(&m_pFrame);
avcodec_free_context(&m_pCodecContext);
}
bool CDVDAudioCodecFFmpeg::AddData(const DemuxPacket &packet)
{
if (!m_pCodecContext)
return false;
if (m_eof)
{
Reset();
}
AVPacket* avpkt = av_packet_alloc();
if (!avpkt)
{
CLog::Log(LOGERROR, "CDVDAudioCodecFFmpeg::{} - av_packet_alloc failed: {}", __FUNCTION__,
strerror(errno));
return false;
}
avpkt->data = packet.pData;
avpkt->size = packet.iSize;
avpkt->dts = (packet.dts == DVD_NOPTS_VALUE)
? AV_NOPTS_VALUE
: static_cast<int64_t>(packet.dts / DVD_TIME_BASE * AV_TIME_BASE);
avpkt->pts = (packet.pts == DVD_NOPTS_VALUE)
? AV_NOPTS_VALUE
: static_cast<int64_t>(packet.pts / DVD_TIME_BASE * AV_TIME_BASE);
avpkt->side_data = static_cast<AVPacketSideData*>(packet.pSideData);
avpkt->side_data_elems = packet.iSideDataElems;
int ret = avcodec_send_packet(m_pCodecContext, avpkt);
//! @todo: properly handle avpkt side_data. this works around our improper use of the side_data
// as we pass pointers to ffmpeg allocated memory for the side_data. we should really be allocating
// and storing our own AVPacket. This will require some extensive changes.
av_buffer_unref(&avpkt->buf);
av_free(avpkt);
// try again
if (ret == AVERROR(EAGAIN))
{
return false;
}
return true;
}
void CDVDAudioCodecFFmpeg::GetData(DVDAudioFrame &frame)
{
frame.nb_frames = 0;
uint8_t* data[16]{};
int bytes = GetData(data);
if (!bytes)
{
return;
}
frame.passthrough = false;
frame.format.m_dataFormat = m_format.m_dataFormat;
frame.format.m_channelLayout = m_format.m_channelLayout;
frame.framesize = (CAEUtil::DataFormatToBits(frame.format.m_dataFormat) >> 3) * frame.format.m_channelLayout.Count();
if(frame.framesize == 0)
return;
frame.nb_frames = bytes/frame.framesize;
frame.framesOut = 0;
frame.planes = AE_IS_PLANAR(frame.format.m_dataFormat) ? frame.format.m_channelLayout.Count() : 1;
for (unsigned int i=0; i<frame.planes; i++)
frame.data[i] = data[i];
frame.bits_per_sample = CAEUtil::DataFormatToBits(frame.format.m_dataFormat);
frame.format.m_sampleRate = m_format.m_sampleRate;
frame.matrix_encoding = GetMatrixEncoding();
frame.audio_service_type = GetAudioServiceType();
frame.profile = GetProfile();
// compute duration.
if (frame.format.m_sampleRate)
frame.duration = ((double)frame.nb_frames * DVD_TIME_BASE) / frame.format.m_sampleRate;
else
frame.duration = 0.0;
int64_t bpts = m_pFrame->best_effort_timestamp;
if(bpts != AV_NOPTS_VALUE)
frame.pts = (double)bpts * DVD_TIME_BASE / AV_TIME_BASE;
else
frame.pts = DVD_NOPTS_VALUE;
frame.hasDownmix = m_hasDownmix;
if (frame.hasDownmix)
{
frame.centerMixLevel = m_downmixInfo.center_mix_level;
}
}
int CDVDAudioCodecFFmpeg::GetData(uint8_t** dst)
{
int ret = avcodec_receive_frame(m_pCodecContext, m_pFrame);
if (!ret)
{
if (m_pFrame->nb_side_data)
{
for (int i = 0; i < m_pFrame->nb_side_data; i++)
{
AVFrameSideData *sd = m_pFrame->side_data[i];
if (sd->data)
{
if (sd->type == AV_FRAME_DATA_MATRIXENCODING)
{
m_matrixEncoding = *(enum AVMatrixEncoding*)sd->data;
}
else if (sd->type == AV_FRAME_DATA_DOWNMIX_INFO)
{
m_downmixInfo = *(AVDownmixInfo*)sd->data;
m_hasDownmix = true;
}
}
}
}
m_format.m_dataFormat = GetDataFormat();
m_format.m_channelLayout = GetChannelMap();
m_format.m_sampleRate = GetSampleRate();
m_format.m_frameSize = m_format.m_channelLayout.Count() *
CAEUtil::DataFormatToBits(m_format.m_dataFormat) >> 3;
#if LIBAVCODEC_BUILD >= AV_VERSION_INT(59, 37, 100) && \
LIBAVUTIL_BUILD >= AV_VERSION_INT(57, 28, 100)
int channels = m_pFrame->ch_layout.nb_channels;
#else
int channels = m_pFrame->channels;
#endif
int planes = av_sample_fmt_is_planar(m_pCodecContext->sample_fmt) ? channels : 1;
for (int i=0; i<planes; i++)
dst[i] = m_pFrame->extended_data[i];
return m_pFrame->nb_samples * channels * av_get_bytes_per_sample(m_pCodecContext->sample_fmt);
}
return 0;
}
void CDVDAudioCodecFFmpeg::Reset()
{
if (m_pCodecContext) avcodec_flush_buffers(m_pCodecContext);
m_eof = false;
}
int CDVDAudioCodecFFmpeg::GetChannels()
{
#if LIBAVCODEC_BUILD >= AV_VERSION_INT(59, 37, 100) && \
LIBAVUTIL_BUILD >= AV_VERSION_INT(57, 28, 100)
return m_pCodecContext->ch_layout.nb_channels;
#else
return m_pCodecContext->channels;
#endif
}
int CDVDAudioCodecFFmpeg::GetSampleRate()
{
if (m_pCodecContext)
return m_pCodecContext->sample_rate;
return 0;
}
enum AEDataFormat CDVDAudioCodecFFmpeg::GetDataFormat()
{
switch(m_pCodecContext->sample_fmt)
{
case AV_SAMPLE_FMT_U8 : return AE_FMT_U8;
case AV_SAMPLE_FMT_U8P : return AE_FMT_U8P;
case AV_SAMPLE_FMT_S16: return AE_FMT_S16NE;
case AV_SAMPLE_FMT_S16P: return AE_FMT_S16NEP;
case AV_SAMPLE_FMT_S32: return AE_FMT_S32NE;
case AV_SAMPLE_FMT_S32P: return AE_FMT_S32NEP;
case AV_SAMPLE_FMT_FLT: return AE_FMT_FLOAT;
case AV_SAMPLE_FMT_FLTP: return AE_FMT_FLOATP;
case AV_SAMPLE_FMT_DBL: return AE_FMT_DOUBLE;
case AV_SAMPLE_FMT_DBLP: return AE_FMT_DOUBLEP;
case AV_SAMPLE_FMT_NONE:
default:
CLog::Log(LOGERROR, "CDVDAudioCodecFFmpeg::GetDataFormat - invalid data format");
return AE_FMT_INVALID;
}
}
int CDVDAudioCodecFFmpeg::GetBitRate()
{
if (m_pCodecContext)
return static_cast<int>(m_pCodecContext->bit_rate);
return 0;
}
enum AVMatrixEncoding CDVDAudioCodecFFmpeg::GetMatrixEncoding()
{
return m_matrixEncoding;
}
enum AVAudioServiceType CDVDAudioCodecFFmpeg::GetAudioServiceType()
{
if (m_pCodecContext)
return m_pCodecContext->audio_service_type;
return AV_AUDIO_SERVICE_TYPE_MAIN;
}
int CDVDAudioCodecFFmpeg::GetProfile()
{
if (m_pCodecContext)
return m_pCodecContext->profile;
return 0;
}
static unsigned count_bits(int64_t value)
{
unsigned bits = 0;
for(;value;++bits)
value &= value - 1;
return bits;
}
void CDVDAudioCodecFFmpeg::BuildChannelMap()
{
#if LIBAVCODEC_BUILD >= AV_VERSION_INT(59, 37, 100) && \
LIBAVUTIL_BUILD >= AV_VERSION_INT(57, 28, 100)
int codecChannels = m_pCodecContext->ch_layout.nb_channels;
uint64_t codecChannelLayout = m_pCodecContext->ch_layout.u.mask;
#else
int codecChannels = m_pCodecContext->channels;
uint64_t codecChannelLayout = m_pCodecContext->channel_layout;
#endif
if (m_channels == codecChannels && m_layout == codecChannelLayout)
return; //nothing to do here
m_channels = codecChannels;
m_layout = codecChannelLayout;
int64_t layout;
int bits = count_bits(codecChannelLayout);
if (bits == codecChannels)
layout = codecChannelLayout;
else
{
CLog::Log(LOGINFO,
"CDVDAudioCodecFFmpeg::GetChannelMap - FFmpeg reported {} channels, but the layout "
"contains {} - trying hints",
codecChannels, bits);
if (static_cast<int>(count_bits(m_hint_layout)) == codecChannels)
layout = m_hint_layout;
else
{
#if LIBAVCODEC_BUILD >= AV_VERSION_INT(59, 37, 100) && \
LIBAVUTIL_BUILD >= AV_VERSION_INT(57, 28, 100)
AVChannelLayout def_layout = {};
av_channel_layout_default(&def_layout, codecChannels);
layout = def_layout.u.mask;
av_channel_layout_uninit(&def_layout);
#else
layout = av_get_default_channel_layout(m_pCodecContext->channels);
#endif
CLog::Log(LOGINFO, "Using default layout...");
}
}
m_channelLayout.Reset();
if (layout & AV_CH_FRONT_LEFT ) m_channelLayout += AE_CH_FL ;
if (layout & AV_CH_FRONT_RIGHT ) m_channelLayout += AE_CH_FR ;
if (layout & AV_CH_FRONT_CENTER ) m_channelLayout += AE_CH_FC ;
if (layout & AV_CH_LOW_FREQUENCY ) m_channelLayout += AE_CH_LFE ;
if (layout & AV_CH_BACK_LEFT ) m_channelLayout += AE_CH_BL ;
if (layout & AV_CH_BACK_RIGHT ) m_channelLayout += AE_CH_BR ;
if (layout & AV_CH_FRONT_LEFT_OF_CENTER ) m_channelLayout += AE_CH_FLOC;
if (layout & AV_CH_FRONT_RIGHT_OF_CENTER) m_channelLayout += AE_CH_FROC;
if (layout & AV_CH_BACK_CENTER ) m_channelLayout += AE_CH_BC ;
if (layout & AV_CH_SIDE_LEFT ) m_channelLayout += AE_CH_SL ;
if (layout & AV_CH_SIDE_RIGHT ) m_channelLayout += AE_CH_SR ;
if (layout & AV_CH_TOP_CENTER ) m_channelLayout += AE_CH_TC ;
if (layout & AV_CH_TOP_FRONT_LEFT ) m_channelLayout += AE_CH_TFL ;
if (layout & AV_CH_TOP_FRONT_CENTER ) m_channelLayout += AE_CH_TFC ;
if (layout & AV_CH_TOP_FRONT_RIGHT ) m_channelLayout += AE_CH_TFR ;
if (layout & AV_CH_TOP_BACK_LEFT ) m_channelLayout += AE_CH_BL ;
if (layout & AV_CH_TOP_BACK_CENTER ) m_channelLayout += AE_CH_BC ;
if (layout & AV_CH_TOP_BACK_RIGHT ) m_channelLayout += AE_CH_BR ;
m_channels = codecChannels;
}
CAEChannelInfo CDVDAudioCodecFFmpeg::GetChannelMap()
{
BuildChannelMap();
return m_channelLayout;
}
|