2010-01-30 16:57:40 +00:00
|
|
|
/*
|
2015-04-13 07:36:54 +00:00
|
|
|
* This file is part of mpv.
|
2010-01-30 16:57:40 +00:00
|
|
|
*
|
2015-04-13 07:36:54 +00:00
|
|
|
* mpv is free software; you can redistribute it and/or modify
|
2010-01-30 16:57:40 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
2015-04-13 07:36:54 +00:00
|
|
|
* mpv is distributed in the hope that it will be useful,
|
2010-01-30 16:57:40 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
2015-04-13 07:36:54 +00:00
|
|
|
* with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2010-01-30 16:57:40 +00:00
|
|
|
*/
|
|
|
|
|
2002-03-25 21:06:01 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2011-08-21 19:47:59 +00:00
|
|
|
#include <stdbool.h>
|
2011-12-22 03:54:48 +00:00
|
|
|
#include <assert.h>
|
2002-03-25 21:06:01 +00:00
|
|
|
|
2011-08-21 19:13:49 +00:00
|
|
|
#include <libavcodec/avcodec.h>
|
2012-01-28 11:41:36 +00:00
|
|
|
#include <libavutil/opt.h>
|
2013-07-11 17:20:41 +00:00
|
|
|
#include <libavutil/common.h>
|
2014-10-03 15:29:53 +00:00
|
|
|
#include <libavutil/intreadwrite.h>
|
2011-08-21 19:13:49 +00:00
|
|
|
|
2016-01-11 18:03:40 +00:00
|
|
|
#include "mpv_talloc.h"
|
2011-08-21 19:47:59 +00:00
|
|
|
|
2002-03-25 21:06:01 +00:00
|
|
|
#include "config.h"
|
2013-12-17 01:39:45 +00:00
|
|
|
#include "common/av_common.h"
|
|
|
|
#include "common/codecs.h"
|
|
|
|
#include "common/msg.h"
|
2013-12-17 01:02:25 +00:00
|
|
|
#include "options/options.h"
|
2002-03-25 21:06:01 +00:00
|
|
|
|
2013-07-22 12:41:56 +00:00
|
|
|
#include "ad.h"
|
2012-11-03 13:06:53 +00:00
|
|
|
#include "audio/fmt-conversion.h"
|
2002-03-25 21:06:01 +00:00
|
|
|
|
2011-08-21 19:47:59 +00:00
|
|
|
struct priv {
|
|
|
|
AVCodecContext *avctx;
|
2012-04-18 22:26:56 +00:00
|
|
|
AVFrame *avframe;
|
audio: add support for using non-interleaved audio from decoders directly
Most libavcodec decoders output non-interleaved audio. Add direct
support for this, and remove the hack that repacked non-interleaved
audio back to packed audio.
Remove the minlen argument from the decoder callback. Instead of
forcing every decoder to have its own decode loop to fill the buffer
until minlen is reached, leave this to the caller. So if a decoder
doesn't return enough data, it's simply called again. (In future, I
even want to change it so that decoders don't read packets directly,
but instead the caller has to pass packets to the decoders. This fits
well with this change, because now the decoder callback typically
decodes at most one packet.)
ad_mpg123.c receives some heavy refactoring. The main problem is that
it wanted to handle format changes when there was no data in the decode
output buffer yet. This sounds reasonable, but actually it would write
data into a buffer prepared for old data, since the caller doesn't know
about the format change yet. (I.e. the best place for a format change
would be _after_ writing the last sample to the output buffer.) It's
possible that this code was not perfectly sane before this commit,
and perhaps lost one frame of data after a format change, but I didn't
confirm this. Trying to fix this, I ended up rewriting the decoding
and also the probing.
2013-11-12 21:27:44 +00:00
|
|
|
struct mp_audio frame;
|
2013-04-06 23:27:33 +00:00
|
|
|
bool force_channel_map;
|
2016-02-22 18:58:11 +00:00
|
|
|
uint32_t skip_samples, trim_samples;
|
2016-02-22 19:10:38 +00:00
|
|
|
bool preroll_done;
|
2016-02-22 12:08:08 +00:00
|
|
|
double next_pts;
|
2016-06-22 19:37:36 +00:00
|
|
|
bool needs_reset;
|
2016-03-24 15:39:15 +00:00
|
|
|
AVRational codec_timebase;
|
2011-08-21 19:47:59 +00:00
|
|
|
};
|
|
|
|
|
2013-11-23 20:22:17 +00:00
|
|
|
static void uninit(struct dec_audio *da);
|
2013-07-22 12:41:56 +00:00
|
|
|
|
2014-06-10 23:39:51 +00:00
|
|
|
#define OPT_BASE_STRUCT struct ad_lavc_params
|
|
|
|
struct ad_lavc_params {
|
|
|
|
float ac3drc;
|
|
|
|
int downmix;
|
|
|
|
int threads;
|
2014-08-02 01:12:09 +00:00
|
|
|
char **avopts;
|
2014-06-10 23:39:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const struct m_sub_options ad_lavc_conf = {
|
|
|
|
.opts = (const m_option_t[]) {
|
2015-03-30 17:44:52 +00:00
|
|
|
OPT_FLOATRANGE("ac3drc", ac3drc, 0, 0, 6),
|
2014-06-10 23:39:51 +00:00
|
|
|
OPT_FLAG("downmix", downmix, 0),
|
2016-02-11 21:06:58 +00:00
|
|
|
OPT_INTRANGE("threads", threads, 0, 0, 16),
|
2014-08-02 01:12:09 +00:00
|
|
|
OPT_KEYVALUELIST("o", avopts, 0),
|
2014-06-10 23:39:51 +00:00
|
|
|
{0}
|
|
|
|
},
|
|
|
|
.size = sizeof(struct ad_lavc_params),
|
|
|
|
.defaults = &(const struct ad_lavc_params){
|
2015-03-30 17:44:52 +00:00
|
|
|
.ac3drc = 0,
|
2014-06-10 23:39:51 +00:00
|
|
|
.downmix = 1,
|
|
|
|
.threads = 1,
|
|
|
|
},
|
2011-08-21 19:47:59 +00:00
|
|
|
};
|
|
|
|
|
2013-11-23 20:22:17 +00:00
|
|
|
static int init(struct dec_audio *da, const char *decoder)
|
2002-03-25 21:06:01 +00:00
|
|
|
{
|
2013-11-23 20:22:17 +00:00
|
|
|
struct MPOpts *mpopts = da->opts;
|
2014-06-10 23:39:51 +00:00
|
|
|
struct ad_lavc_params *opts = mpopts->ad_lavc_params;
|
2002-04-03 21:01:15 +00:00
|
|
|
AVCodecContext *lavc_context;
|
|
|
|
AVCodec *lavc_codec;
|
2016-02-15 19:34:45 +00:00
|
|
|
struct mp_codec_params *c = da->codec;
|
2002-04-01 13:10:03 +00:00
|
|
|
|
2013-04-06 23:27:33 +00:00
|
|
|
struct priv *ctx = talloc_zero(NULL, struct priv);
|
2013-11-23 20:22:17 +00:00
|
|
|
da->priv = ctx;
|
2013-04-06 23:27:33 +00:00
|
|
|
|
2016-08-19 12:19:46 +00:00
|
|
|
ctx->codec_timebase = mp_get_codec_timebase(da->codec);
|
2016-03-24 15:39:15 +00:00
|
|
|
|
2016-01-12 22:48:19 +00:00
|
|
|
ctx->force_channel_map = c->force_channels;
|
2014-09-24 20:55:50 +00:00
|
|
|
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 14:15:19 +00:00
|
|
|
lavc_codec = avcodec_find_decoder_by_name(decoder);
|
|
|
|
if (!lavc_codec) {
|
2013-12-21 17:23:59 +00:00
|
|
|
MP_ERR(da, "Cannot find codec '%s' in libavcodec...\n", decoder);
|
2013-11-23 20:22:17 +00:00
|
|
|
uninit(da);
|
2011-08-21 19:13:49 +00:00
|
|
|
return 0;
|
2002-03-25 21:06:01 +00:00
|
|
|
}
|
2009-07-06 23:26:13 +00:00
|
|
|
|
2012-01-28 11:41:36 +00:00
|
|
|
lavc_context = avcodec_alloc_context3(lavc_codec);
|
2011-08-21 19:47:59 +00:00
|
|
|
ctx->avctx = lavc_context;
|
2014-03-16 11:50:15 +00:00
|
|
|
ctx->avframe = av_frame_alloc();
|
|
|
|
lavc_context->refcounted_frames = 1;
|
demux_lavf, ad_lavc, vd_lavc: pass codec header data directly
Instead of putting codec header data into WAVEFORMATEX and
BITMAPINFOHEADER, pass it directly via AVCodecContext. To do this, we
add mp_copy_lav_codec_headers(), which copies the codec header data
from one AVCodecContext to another (originally, the plan was to use
avcodec_copy_context() for this, but it looks like this would turn
decoder initialization into an even worse mess).
Get rid of the silly CodecID <-> codec_tag mapping. This was originally
needed for codecs.conf: codec tags were used to identify codecs, but
libavformat didn't always return useful codec tags (different file
formats can have different, overlapping tag numbers). Since we don't
go through WAVEFORMATEX etc. and pass all header data directly via
AVCodecContext, we can be absolutely sure that the codec tag mapping is
not needed anymore.
Note that this also destroys the "standard" MPlayer method of exporting
codec header data. WAVEFORMATEX and BITMAPINFOHEADER made sure that
other non-libavcodec decoders could be initialized. However, all these
decoders have been removed, so this is just cruft full of old hacks that
are not needed anymore. There's still ad_spdif and ad_mpg123, bu neither
of these need codec header data. Should we ever add non-libavcodec
decoders, better data structures without the past hacks could be added
to export the headers.
2013-02-09 14:15:37 +00:00
|
|
|
lavc_context->codec_type = AVMEDIA_TYPE_AUDIO;
|
|
|
|
lavc_context->codec_id = lavc_codec->id;
|
2016-08-23 10:06:47 +00:00
|
|
|
lavc_context->time_base = ctx->codec_timebase;
|
demux_lavf, ad_lavc, vd_lavc: pass codec header data directly
Instead of putting codec header data into WAVEFORMATEX and
BITMAPINFOHEADER, pass it directly via AVCodecContext. To do this, we
add mp_copy_lav_codec_headers(), which copies the codec header data
from one AVCodecContext to another (originally, the plan was to use
avcodec_copy_context() for this, but it looks like this would turn
decoder initialization into an even worse mess).
Get rid of the silly CodecID <-> codec_tag mapping. This was originally
needed for codecs.conf: codec tags were used to identify codecs, but
libavformat didn't always return useful codec tags (different file
formats can have different, overlapping tag numbers). Since we don't
go through WAVEFORMATEX etc. and pass all header data directly via
AVCodecContext, we can be absolutely sure that the codec tag mapping is
not needed anymore.
Note that this also destroys the "standard" MPlayer method of exporting
codec header data. WAVEFORMATEX and BITMAPINFOHEADER made sure that
other non-libavcodec decoders could be initialized. However, all these
decoders have been removed, so this is just cruft full of old hacks that
are not needed anymore. There's still ad_spdif and ad_mpg123, bu neither
of these need codec header data. Should we ever add non-libavcodec
decoders, better data structures without the past hacks could be added
to export the headers.
2013-02-09 14:15:37 +00:00
|
|
|
|
2016-08-04 18:49:20 +00:00
|
|
|
if (opts->downmix && mpopts->audio_output_channels.num_chmaps == 1) {
|
2013-04-06 20:43:12 +00:00
|
|
|
lavc_context->request_channel_layout =
|
2016-08-04 18:49:20 +00:00
|
|
|
mp_chmap_to_lavc(&mpopts->audio_output_channels.chmaps[0]);
|
2013-04-06 20:43:12 +00:00
|
|
|
}
|
2002-10-28 00:40:42 +00:00
|
|
|
|
2012-01-28 11:41:36 +00:00
|
|
|
// Always try to set - option only exists for AC3 at the moment
|
2013-03-31 02:24:53 +00:00
|
|
|
av_opt_set_double(lavc_context, "drc_scale", opts->ac3drc,
|
2012-01-28 11:41:36 +00:00
|
|
|
AV_OPT_SEARCH_CHILDREN);
|
demux_lavf, ad_lavc, vd_lavc: pass codec header data directly
Instead of putting codec header data into WAVEFORMATEX and
BITMAPINFOHEADER, pass it directly via AVCodecContext. To do this, we
add mp_copy_lav_codec_headers(), which copies the codec header data
from one AVCodecContext to another (originally, the plan was to use
avcodec_copy_context() for this, but it looks like this would turn
decoder initialization into an even worse mess).
Get rid of the silly CodecID <-> codec_tag mapping. This was originally
needed for codecs.conf: codec tags were used to identify codecs, but
libavformat didn't always return useful codec tags (different file
formats can have different, overlapping tag numbers). Since we don't
go through WAVEFORMATEX etc. and pass all header data directly via
AVCodecContext, we can be absolutely sure that the codec tag mapping is
not needed anymore.
Note that this also destroys the "standard" MPlayer method of exporting
codec header data. WAVEFORMATEX and BITMAPINFOHEADER made sure that
other non-libavcodec decoders could be initialized. However, all these
decoders have been removed, so this is just cruft full of old hacks that
are not needed anymore. There's still ad_spdif and ad_mpg123, bu neither
of these need codec header data. Should we ever add non-libavcodec
decoders, better data structures without the past hacks could be added
to export the headers.
2013-02-09 14:15:37 +00:00
|
|
|
|
2014-10-04 10:30:14 +00:00
|
|
|
#if HAVE_AVFRAME_SKIP_SAMPLES
|
2014-10-03 15:29:53 +00:00
|
|
|
// Let decoder add AV_FRAME_DATA_SKIP_SAMPLES.
|
|
|
|
av_opt_set(lavc_context, "flags2", "+skip_manual", AV_OPT_SEARCH_CHILDREN);
|
2014-10-04 10:30:14 +00:00
|
|
|
#endif
|
2014-10-03 15:29:53 +00:00
|
|
|
|
2014-08-02 01:12:09 +00:00
|
|
|
mp_set_avopts(da->log, lavc_context, opts->avopts);
|
2013-03-31 02:24:53 +00:00
|
|
|
|
2016-01-12 22:48:19 +00:00
|
|
|
lavc_context->codec_tag = c->codec_tag;
|
|
|
|
lavc_context->sample_rate = c->samplerate;
|
|
|
|
lavc_context->bit_rate = c->bitrate;
|
|
|
|
lavc_context->block_align = c->block_align;
|
|
|
|
lavc_context->bits_per_coded_sample = c->bits_per_coded_sample;
|
|
|
|
lavc_context->channels = c->channels.num;
|
|
|
|
if (!mp_chmap_is_unknown(&c->channels))
|
|
|
|
lavc_context->channel_layout = mp_chmap_to_lavc(&c->channels);
|
2002-10-28 00:40:42 +00:00
|
|
|
|
2014-09-24 23:56:51 +00:00
|
|
|
// demux_mkv
|
2016-01-12 22:48:19 +00:00
|
|
|
mp_lavc_set_extradata(lavc_context, c->extradata, c->extradata_size);
|
2005-02-01 19:19:40 +00:00
|
|
|
|
2016-03-31 20:00:45 +00:00
|
|
|
mp_set_lav_codec_headers(lavc_context, c);
|
demux_lavf, ad_lavc, vd_lavc: pass codec header data directly
Instead of putting codec header data into WAVEFORMATEX and
BITMAPINFOHEADER, pass it directly via AVCodecContext. To do this, we
add mp_copy_lav_codec_headers(), which copies the codec header data
from one AVCodecContext to another (originally, the plan was to use
avcodec_copy_context() for this, but it looks like this would turn
decoder initialization into an even worse mess).
Get rid of the silly CodecID <-> codec_tag mapping. This was originally
needed for codecs.conf: codec tags were used to identify codecs, but
libavformat didn't always return useful codec tags (different file
formats can have different, overlapping tag numbers). Since we don't
go through WAVEFORMATEX etc. and pass all header data directly via
AVCodecContext, we can be absolutely sure that the codec tag mapping is
not needed anymore.
Note that this also destroys the "standard" MPlayer method of exporting
codec header data. WAVEFORMATEX and BITMAPINFOHEADER made sure that
other non-libavcodec decoders could be initialized. However, all these
decoders have been removed, so this is just cruft full of old hacks that
are not needed anymore. There's still ad_spdif and ad_mpg123, bu neither
of these need codec header data. Should we ever add non-libavcodec
decoders, better data structures without the past hacks could be added
to export the headers.
2013-02-09 14:15:37 +00:00
|
|
|
|
2015-01-05 11:17:55 +00:00
|
|
|
mp_set_avcodec_threads(da->log, lavc_context, opts->threads);
|
2013-12-04 19:58:53 +00:00
|
|
|
|
2002-03-25 21:06:01 +00:00
|
|
|
/* open it */
|
2012-01-28 11:41:36 +00:00
|
|
|
if (avcodec_open2(lavc_context, lavc_codec, NULL) < 0) {
|
2013-12-21 17:23:59 +00:00
|
|
|
MP_ERR(da, "Could not open codec.\n");
|
2013-11-23 20:22:17 +00:00
|
|
|
uninit(da);
|
2002-03-25 21:06:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-02-22 12:08:08 +00:00
|
|
|
ctx->next_pts = MP_NOPTS_VALUE;
|
|
|
|
|
2011-08-21 19:13:49 +00:00
|
|
|
return 1;
|
2002-03-25 21:06:01 +00:00
|
|
|
}
|
|
|
|
|
2013-11-23 20:22:17 +00:00
|
|
|
static void uninit(struct dec_audio *da)
|
2002-03-25 21:06:01 +00:00
|
|
|
{
|
2013-11-23 20:22:17 +00:00
|
|
|
struct priv *ctx = da->priv;
|
2011-08-21 20:04:20 +00:00
|
|
|
if (!ctx)
|
|
|
|
return;
|
2011-08-21 19:47:59 +00:00
|
|
|
AVCodecContext *lavc_context = ctx->avctx;
|
2002-10-28 00:40:42 +00:00
|
|
|
|
2011-08-21 20:04:20 +00:00
|
|
|
if (lavc_context) {
|
2012-01-28 11:41:36 +00:00
|
|
|
if (avcodec_close(lavc_context) < 0)
|
2013-12-21 17:23:59 +00:00
|
|
|
MP_ERR(da, "Could not close codec.\n");
|
2011-08-21 20:04:20 +00:00
|
|
|
av_freep(&lavc_context->extradata);
|
|
|
|
av_freep(&lavc_context);
|
|
|
|
}
|
2014-03-16 11:50:15 +00:00
|
|
|
av_frame_free(&ctx->avframe);
|
2002-03-25 21:06:01 +00:00
|
|
|
}
|
|
|
|
|
2013-11-23 20:22:17 +00:00
|
|
|
static int control(struct dec_audio *da, int cmd, void *arg)
|
2002-03-25 21:06:01 +00:00
|
|
|
{
|
2013-11-23 20:22:17 +00:00
|
|
|
struct priv *ctx = da->priv;
|
2011-08-21 19:13:49 +00:00
|
|
|
switch (cmd) {
|
2013-11-27 19:54:07 +00:00
|
|
|
case ADCTRL_RESET:
|
2011-08-21 19:47:59 +00:00
|
|
|
avcodec_flush_buffers(ctx->avctx);
|
2014-11-03 18:56:38 +00:00
|
|
|
ctx->skip_samples = 0;
|
2016-02-22 18:58:11 +00:00
|
|
|
ctx->trim_samples = 0;
|
2016-02-22 19:10:38 +00:00
|
|
|
ctx->preroll_done = false;
|
2016-02-22 12:08:08 +00:00
|
|
|
ctx->next_pts = MP_NOPTS_VALUE;
|
2016-06-22 19:37:36 +00:00
|
|
|
ctx->needs_reset = false;
|
2011-08-21 19:13:49 +00:00
|
|
|
return CONTROL_TRUE;
|
2004-02-18 15:23:41 +00:00
|
|
|
}
|
|
|
|
return CONTROL_UNKNOWN;
|
2002-03-25 21:06:01 +00:00
|
|
|
}
|
|
|
|
|
2016-01-19 21:24:26 +00:00
|
|
|
static int decode_packet(struct dec_audio *da, struct demux_packet *mpkt,
|
|
|
|
struct mp_audio **out)
|
2012-04-18 22:26:56 +00:00
|
|
|
{
|
2013-11-23 20:22:17 +00:00
|
|
|
struct priv *priv = da->priv;
|
2012-04-18 22:26:56 +00:00
|
|
|
AVCodecContext *avctx = priv->avctx;
|
audio: add support for using non-interleaved audio from decoders directly
Most libavcodec decoders output non-interleaved audio. Add direct
support for this, and remove the hack that repacked non-interleaved
audio back to packed audio.
Remove the minlen argument from the decoder callback. Instead of
forcing every decoder to have its own decode loop to fill the buffer
until minlen is reached, leave this to the caller. So if a decoder
doesn't return enough data, it's simply called again. (In future, I
even want to change it so that decoders don't read packets directly,
but instead the caller has to pass packets to the decoders. This fits
well with this change, because now the decoder callback typically
decodes at most one packet.)
ad_mpg123.c receives some heavy refactoring. The main problem is that
it wanted to handle format changes when there was no data in the decode
output buffer yet. This sounds reasonable, but actually it would write
data into a buffer prepared for old data, since the caller doesn't know
about the format change yet. (I.e. the best place for a format change
would be _after_ writing the last sample to the output buffer.) It's
possible that this code was not perfectly sane before this commit,
and perhaps lost one frame of data after a format change, but I didn't
confirm this. Trying to fix this, I ended up rewriting the decoding
and also the probing.
2013-11-12 21:27:44 +00:00
|
|
|
|
2016-07-01 13:51:34 +00:00
|
|
|
// If the decoder discards the timestamp for some reason, we use the
|
|
|
|
// interpolated PTS. Initialize it so that it works for the initial
|
|
|
|
// packet as well.
|
|
|
|
if (mpkt && priv->next_pts == MP_NOPTS_VALUE)
|
|
|
|
priv->next_pts = mpkt->pts;
|
|
|
|
|
2013-12-04 19:57:52 +00:00
|
|
|
int in_len = mpkt ? mpkt->len : 0;
|
2013-07-11 17:10:33 +00:00
|
|
|
|
2012-04-18 22:26:56 +00:00
|
|
|
AVPacket pkt;
|
2016-03-24 15:39:15 +00:00
|
|
|
mp_set_av_packet(&pkt, mpkt, &priv->codec_timebase);
|
2013-06-02 23:55:48 +00:00
|
|
|
|
2012-04-18 22:26:56 +00:00
|
|
|
int got_frame = 0;
|
2014-03-16 11:50:15 +00:00
|
|
|
av_frame_unref(priv->avframe);
|
2016-03-24 16:53:30 +00:00
|
|
|
|
2016-06-22 19:37:36 +00:00
|
|
|
if (priv->needs_reset)
|
|
|
|
control(da, ADCTRL_RESET, NULL);
|
|
|
|
|
2016-03-24 16:53:30 +00:00
|
|
|
#if HAVE_AVCODEC_NEW_CODEC_API
|
|
|
|
int ret = avcodec_send_packet(avctx, &pkt);
|
|
|
|
if (ret >= 0 || ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) {
|
|
|
|
if (ret >= 0 && mpkt)
|
|
|
|
mpkt->len = 0;
|
|
|
|
ret = avcodec_receive_frame(avctx, priv->avframe);
|
|
|
|
if (ret >= 0)
|
|
|
|
got_frame = 1;
|
2016-06-22 19:37:36 +00:00
|
|
|
if (ret == AVERROR_EOF)
|
|
|
|
priv->needs_reset = true;
|
2016-03-24 16:53:30 +00:00
|
|
|
if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
#else
|
2012-04-18 22:26:56 +00:00
|
|
|
int ret = avcodec_decode_audio4(avctx, priv->avframe, &got_frame, &pkt);
|
2013-12-04 19:57:52 +00:00
|
|
|
if (mpkt) {
|
|
|
|
// At least "shorten" decodes sub-frames, instead of the whole packet.
|
|
|
|
// At least "mpc8" can return 0 and wants the packet again next time.
|
|
|
|
if (ret >= 0) {
|
|
|
|
ret = FFMIN(ret, mpkt->len); // sanity check against decoder overreads
|
|
|
|
mpkt->buffer += ret;
|
|
|
|
mpkt->len -= ret;
|
|
|
|
mpkt->pts = MP_NOPTS_VALUE; // don't reset PTS next time
|
|
|
|
}
|
2013-12-04 22:30:01 +00:00
|
|
|
// LATM may need many packets to find mux info
|
2016-01-19 21:24:26 +00:00
|
|
|
if (ret == AVERROR(EAGAIN)) {
|
|
|
|
mpkt->len = 0;
|
2016-01-21 21:10:15 +00:00
|
|
|
return 0;
|
2016-01-19 21:24:26 +00:00
|
|
|
}
|
2013-07-11 17:20:41 +00:00
|
|
|
}
|
2016-03-24 16:53:30 +00:00
|
|
|
#endif
|
2012-04-18 22:26:56 +00:00
|
|
|
if (ret < 0) {
|
2014-07-21 17:29:37 +00:00
|
|
|
MP_ERR(da, "Error decoding audio.\n");
|
2016-01-21 21:10:15 +00:00
|
|
|
return -1;
|
2012-04-18 22:26:56 +00:00
|
|
|
}
|
|
|
|
if (!got_frame)
|
2016-01-21 21:10:15 +00:00
|
|
|
return 0;
|
audio: add support for using non-interleaved audio from decoders directly
Most libavcodec decoders output non-interleaved audio. Add direct
support for this, and remove the hack that repacked non-interleaved
audio back to packed audio.
Remove the minlen argument from the decoder callback. Instead of
forcing every decoder to have its own decode loop to fill the buffer
until minlen is reached, leave this to the caller. So if a decoder
doesn't return enough data, it's simply called again. (In future, I
even want to change it so that decoders don't read packets directly,
but instead the caller has to pass packets to the decoders. This fits
well with this change, because now the decoder callback typically
decodes at most one packet.)
ad_mpg123.c receives some heavy refactoring. The main problem is that
it wanted to handle format changes when there was no data in the decode
output buffer yet. This sounds reasonable, but actually it would write
data into a buffer prepared for old data, since the caller doesn't know
about the format change yet. (I.e. the best place for a format change
would be _after_ writing the last sample to the output buffer.) It's
possible that this code was not perfectly sane before this commit,
and perhaps lost one frame of data after a format change, but I didn't
confirm this. Trying to fix this, I ended up rewriting the decoding
and also the probing.
2013-11-12 21:27:44 +00:00
|
|
|
|
2016-03-24 15:39:15 +00:00
|
|
|
double out_pts = mp_pts_from_av(priv->avframe->pkt_pts, &priv->codec_timebase);
|
2013-12-04 19:57:52 +00:00
|
|
|
|
2014-11-10 21:01:23 +00:00
|
|
|
struct mp_audio *mpframe = mp_audio_from_avframe(priv->avframe);
|
|
|
|
if (!mpframe)
|
2016-01-21 21:10:15 +00:00
|
|
|
return -1;
|
2014-11-10 21:01:23 +00:00
|
|
|
|
|
|
|
struct mp_chmap lavc_chmap = mpframe->channels;
|
|
|
|
if (lavc_chmap.num != avctx->channels)
|
|
|
|
mp_chmap_from_channels(&lavc_chmap, avctx->channels);
|
|
|
|
if (priv->force_channel_map) {
|
2016-02-15 19:34:45 +00:00
|
|
|
if (lavc_chmap.num == da->codec->channels.num)
|
|
|
|
lavc_chmap = da->codec->channels;
|
2014-11-10 21:01:23 +00:00
|
|
|
}
|
|
|
|
mp_audio_set_channels(mpframe, &lavc_chmap);
|
|
|
|
|
2015-11-08 16:22:56 +00:00
|
|
|
mpframe->pts = out_pts;
|
|
|
|
|
2016-02-22 12:08:08 +00:00
|
|
|
if (mpframe->pts == MP_NOPTS_VALUE)
|
|
|
|
mpframe->pts = priv->next_pts;
|
|
|
|
if (mpframe->pts != MP_NOPTS_VALUE)
|
|
|
|
priv->next_pts = mpframe->pts + mpframe->samples / (double)mpframe->rate;
|
|
|
|
|
2014-11-10 21:01:23 +00:00
|
|
|
#if HAVE_AVFRAME_SKIP_SAMPLES
|
|
|
|
AVFrameSideData *sd =
|
|
|
|
av_frame_get_side_data(priv->avframe, AV_FRAME_DATA_SKIP_SAMPLES);
|
|
|
|
if (sd && sd->size >= 10) {
|
|
|
|
char *d = sd->data;
|
|
|
|
priv->skip_samples += AV_RL32(d + 0);
|
2016-02-22 18:58:11 +00:00
|
|
|
priv->trim_samples += AV_RL32(d + 4);
|
2014-11-10 21:01:23 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-02-22 19:10:38 +00:00
|
|
|
if (!priv->preroll_done) {
|
|
|
|
// Skip only if this isn't already handled by AV_FRAME_DATA_SKIP_SAMPLES.
|
|
|
|
if (!priv->skip_samples)
|
|
|
|
priv->skip_samples = avctx->delay;
|
|
|
|
priv->preroll_done = true;
|
|
|
|
}
|
|
|
|
|
2016-02-22 18:50:09 +00:00
|
|
|
uint32_t skip = MPMIN(priv->skip_samples, mpframe->samples);
|
|
|
|
if (skip) {
|
|
|
|
mp_audio_skip_samples(mpframe, skip);
|
|
|
|
priv->skip_samples -= skip;
|
|
|
|
}
|
2016-02-22 18:58:11 +00:00
|
|
|
uint32_t trim = MPMIN(priv->trim_samples, mpframe->samples);
|
|
|
|
if (trim) {
|
|
|
|
mpframe->samples -= trim;
|
|
|
|
priv->trim_samples -= trim;
|
|
|
|
}
|
2016-02-22 18:50:09 +00:00
|
|
|
|
2014-11-10 21:01:23 +00:00
|
|
|
*out = mpframe;
|
|
|
|
|
|
|
|
av_frame_unref(priv->avframe);
|
2014-10-03 15:29:53 +00:00
|
|
|
|
2014-11-10 21:01:23 +00:00
|
|
|
MP_DBG(da, "Decoded %d -> %d samples\n", in_len, mpframe->samples);
|
audio: add support for using non-interleaved audio from decoders directly
Most libavcodec decoders output non-interleaved audio. Add direct
support for this, and remove the hack that repacked non-interleaved
audio back to packed audio.
Remove the minlen argument from the decoder callback. Instead of
forcing every decoder to have its own decode loop to fill the buffer
until minlen is reached, leave this to the caller. So if a decoder
doesn't return enough data, it's simply called again. (In future, I
even want to change it so that decoders don't read packets directly,
but instead the caller has to pass packets to the decoders. This fits
well with this change, because now the decoder callback typically
decodes at most one packet.)
ad_mpg123.c receives some heavy refactoring. The main problem is that
it wanted to handle format changes when there was no data in the decode
output buffer yet. This sounds reasonable, but actually it would write
data into a buffer prepared for old data, since the caller doesn't know
about the format change yet. (I.e. the best place for a format change
would be _after_ writing the last sample to the output buffer.) It's
possible that this code was not perfectly sane before this commit,
and perhaps lost one frame of data after a format change, but I didn't
confirm this. Trying to fix this, I ended up rewriting the decoding
and also the probing.
2013-11-12 21:27:44 +00:00
|
|
|
return 0;
|
2002-03-25 21:06:01 +00:00
|
|
|
}
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 14:15:19 +00:00
|
|
|
|
|
|
|
static void add_decoders(struct mp_decoder_list *list)
|
|
|
|
{
|
|
|
|
mp_add_lavc_decoders(list, AVMEDIA_TYPE_AUDIO);
|
|
|
|
}
|
2013-07-22 12:41:56 +00:00
|
|
|
|
|
|
|
const struct ad_functions ad_lavc = {
|
|
|
|
.name = "lavc",
|
|
|
|
.add_decoders = add_decoders,
|
|
|
|
.init = init,
|
|
|
|
.uninit = uninit,
|
|
|
|
.control = control,
|
2014-07-21 17:29:37 +00:00
|
|
|
.decode_packet = decode_packet,
|
2013-07-22 12:41:56 +00:00
|
|
|
};
|