2010-01-30 16:57:40 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* 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
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_DEC_AUDIO_H
|
|
|
|
#define MPLAYER_DEC_AUDIO_H
|
2001-10-30 17:04:59 +00:00
|
|
|
|
2013-04-05 21:06:22 +00:00
|
|
|
#include "audio/chmap.h"
|
2013-11-23 20:25:05 +00:00
|
|
|
#include "audio/audio.h"
|
2014-03-12 09:41:52 +00:00
|
|
|
#include "demux/demux.h"
|
2012-11-09 00:06:43 +00:00
|
|
|
#include "demux/stheader.h"
|
2008-03-06 08:34:50 +00:00
|
|
|
|
2013-11-10 22:38:18 +00:00
|
|
|
struct mp_audio_buffer;
|
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
|
|
|
struct mp_decoder_list;
|
2011-07-02 06:22:32 +00:00
|
|
|
|
2013-11-23 20:22:17 +00:00
|
|
|
struct dec_audio {
|
2013-12-21 17:23:59 +00:00
|
|
|
struct mp_log *log;
|
2013-11-23 20:22:17 +00:00
|
|
|
struct MPOpts *opts;
|
2013-12-21 17:23:59 +00:00
|
|
|
struct mpv_global *global;
|
2013-11-23 20:22:17 +00:00
|
|
|
const struct ad_functions *ad_driver;
|
|
|
|
struct sh_stream *header;
|
|
|
|
struct af_stream *afilter;
|
|
|
|
char *decoder_desc;
|
2014-07-29 16:05:55 +00:00
|
|
|
int init_retries;
|
2014-11-10 21:01:23 +00:00
|
|
|
struct mp_audio_pool *pool;
|
|
|
|
struct mp_audio decode_format;
|
|
|
|
struct mp_audio *waiting; // used on format-change
|
2013-11-23 20:22:17 +00:00
|
|
|
// set by decoder
|
2014-05-26 22:15:41 +00:00
|
|
|
int bitrate; // input bitrate, can change with VBR sources
|
2013-11-23 20:22:17 +00:00
|
|
|
// last known pts value in output from decoder
|
|
|
|
double pts;
|
|
|
|
// number of samples output by decoder after last known pts
|
|
|
|
int pts_offset;
|
2013-11-23 20:26:04 +00:00
|
|
|
// For free use by the ad_driver
|
2013-11-23 20:22:17 +00:00
|
|
|
void *priv;
|
|
|
|
};
|
|
|
|
|
2014-07-20 18:42:03 +00:00
|
|
|
enum {
|
|
|
|
AD_OK = 0,
|
|
|
|
AD_ERR = -1,
|
2014-07-28 18:40:43 +00:00
|
|
|
AD_EOF = -2,
|
|
|
|
AD_NEW_FMT = -3,
|
|
|
|
AD_WAIT = -4,
|
2014-07-20 18:42:03 +00:00
|
|
|
};
|
|
|
|
|
2013-11-23 20:22:17 +00:00
|
|
|
struct mp_decoder_list *audio_decoder_list(void);
|
|
|
|
int audio_init_best_codec(struct dec_audio *d_audio, char *audio_decoders);
|
|
|
|
int audio_decode(struct dec_audio *d_audio, struct mp_audio_buffer *outbuf,
|
2013-11-10 22:38:18 +00:00
|
|
|
int minsamples);
|
2014-07-28 18:40:43 +00:00
|
|
|
int initial_audio_decode(struct dec_audio *d_audio);
|
2013-11-27 19:54:07 +00:00
|
|
|
void audio_reset_decoding(struct dec_audio *d_audio);
|
2013-11-23 20:22:17 +00:00
|
|
|
void audio_uninit(struct dec_audio *d_audio);
|
2002-10-05 22:55:45 +00:00
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_DEC_AUDIO_H */
|