2009-05-08 21:51:13 +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_STHEADER_H
|
|
|
|
#define MPLAYER_STHEADER_H
|
2002-03-03 18:47:29 +00:00
|
|
|
|
2011-01-16 18:03:08 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
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
|
|
|
#include "codec_tags.h"
|
|
|
|
|
2004-04-28 10:18:33 +00:00
|
|
|
#include "aviheader.h"
|
|
|
|
#include "ms_hdr.h"
|
2008-04-16 01:23:38 +00:00
|
|
|
struct MPOpts;
|
2009-04-19 14:37:03 +00:00
|
|
|
struct demuxer;
|
2002-09-22 00:43:14 +00:00
|
|
|
|
2012-08-03 10:24:55 +00:00
|
|
|
enum stream_type {
|
2012-08-19 16:01:30 +00:00
|
|
|
STREAM_VIDEO,
|
2012-07-29 19:04:57 +00:00
|
|
|
STREAM_AUDIO,
|
2012-08-03 10:24:55 +00:00
|
|
|
STREAM_SUB,
|
2012-08-19 16:01:30 +00:00
|
|
|
STREAM_TYPE_COUNT,
|
2012-07-29 19:04:57 +00:00
|
|
|
};
|
|
|
|
|
2002-09-22 00:43:14 +00:00
|
|
|
// Stream headers:
|
2002-01-16 12:24:36 +00:00
|
|
|
|
2012-08-03 10:24:55 +00:00
|
|
|
struct sh_stream {
|
|
|
|
enum stream_type type;
|
2012-08-19 16:01:30 +00:00
|
|
|
struct demuxer *demuxer;
|
2012-08-03 10:24:55 +00:00
|
|
|
// Index into demuxer->streams.
|
|
|
|
int index;
|
|
|
|
// The (possibly) type specific id, e.g. aid or sid.
|
|
|
|
int tid;
|
|
|
|
// Index into stream array (currently one array per type, e.g. a_streams).
|
|
|
|
int stream_index;
|
2012-08-19 16:01:30 +00:00
|
|
|
// Demuxer specific ID (always set, defaults to tid).
|
2012-08-03 10:24:55 +00:00
|
|
|
int demuxer_id;
|
|
|
|
// Abomination.
|
|
|
|
struct sh_common *common_header;
|
|
|
|
// One of these is non-NULL, the others are NULL, depending on the stream
|
|
|
|
// type.
|
|
|
|
struct sh_audio *audio;
|
|
|
|
struct sh_video *video;
|
|
|
|
struct sh_sub *sub;
|
|
|
|
|
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
|
|
|
// E.g. "h264" (usually corresponds to AVCodecDescriptor.name)
|
|
|
|
const char *codec;
|
|
|
|
|
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
|
|
|
// Codec specific header data (set by demux_lavf.c)
|
|
|
|
// Other demuxers use sh_audio->wf and sh_video->bih instead.
|
|
|
|
struct AVCodecContext *lav_headers;
|
2012-10-28 23:06:51 +00:00
|
|
|
|
2012-08-03 10:24:55 +00:00
|
|
|
char *title;
|
2013-02-09 14:15:28 +00:00
|
|
|
char *lang; // language code
|
2012-12-10 17:52:06 +00:00
|
|
|
bool default_track; // container default track flag
|
|
|
|
bool attached_picture; // stream is a picture (such as album art)
|
2012-08-03 10:24:55 +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
|
|
|
// Human readable description of the running decoder, or NULL
|
|
|
|
char *decoder_desc;
|
|
|
|
|
2012-08-03 10:24:55 +00:00
|
|
|
// shouldn't exist type of stuff
|
|
|
|
struct MPOpts *opts;
|
|
|
|
};
|
|
|
|
|
2012-07-29 19:04:57 +00:00
|
|
|
|
2011-07-03 07:30:50 +00:00
|
|
|
#define SH_COMMON \
|
2012-08-03 10:24:55 +00:00
|
|
|
struct sh_stream *gsh; \
|
2011-07-03 07:30:50 +00:00
|
|
|
struct MPOpts *opts; \
|
|
|
|
struct demux_stream *ds; \
|
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
|
|
|
/* usually a FourCC, exact meaning depends on gsh->format */ \
|
2011-07-03 07:30:50 +00:00
|
|
|
unsigned int format; \
|
|
|
|
int initialized; \
|
|
|
|
/* number of seconds stream should be delayed \
|
|
|
|
* (according to dwStart or similar) */ \
|
|
|
|
float stream_delay; \
|
|
|
|
/* things needed for parsing */ \
|
|
|
|
bool needs_parsing; \
|
|
|
|
struct AVCodecContext *avctx; \
|
|
|
|
struct AVCodecParserContext *parser; \
|
|
|
|
/* audio: last known pts value in output from decoder \
|
|
|
|
* video: predicted/interpolated PTS of the current frame */ \
|
|
|
|
double pts; \
|
|
|
|
/* decoder context */ \
|
|
|
|
void *context; \
|
2009-12-27 14:40:56 +00:00
|
|
|
|
2009-12-29 22:53:08 +00:00
|
|
|
typedef struct sh_common {
|
2011-07-03 07:30:50 +00:00
|
|
|
SH_COMMON
|
2009-12-27 14:40:56 +00:00
|
|
|
} sh_common_t;
|
|
|
|
|
2008-04-16 02:00:34 +00:00
|
|
|
typedef struct sh_audio {
|
2011-07-03 07:30:50 +00:00
|
|
|
SH_COMMON
|
|
|
|
int aid;
|
|
|
|
// output format:
|
|
|
|
int sample_format;
|
|
|
|
int samplerate;
|
|
|
|
int container_out_samplerate;
|
|
|
|
int samplesize;
|
|
|
|
int channels;
|
|
|
|
int o_bps; // == samplerate*samplesize*channels (uncompr. bytes/sec)
|
|
|
|
int i_bps; // == bitrate (compressed bytes/sec)
|
|
|
|
// in buffers:
|
|
|
|
int audio_in_minsize; // initial size to allocate for a_in_buffer if any
|
|
|
|
char *a_in_buffer; // input buffer used by some decoders
|
|
|
|
int a_in_buffer_len;
|
|
|
|
int a_in_buffer_size;
|
|
|
|
// decoder buffers:
|
|
|
|
int audio_out_minsize; // minimal output from decoder may be this much
|
|
|
|
char *a_buffer; // buffer for decoder output
|
|
|
|
int a_buffer_len;
|
|
|
|
int a_buffer_size;
|
|
|
|
struct af_stream *afilter; // the audio filter stream
|
|
|
|
const struct ad_functions *ad_driver;
|
|
|
|
// win32-compatible codec parameters:
|
|
|
|
AVIStreamHeader audio;
|
|
|
|
WAVEFORMATEX *wf;
|
|
|
|
// note codec extradata may be either under "wf" or "codecdata"
|
|
|
|
unsigned char *codecdata;
|
|
|
|
int codecdata_len;
|
|
|
|
int pts_bytes; // bytes output by decoder after last known pts
|
2001-04-06 01:18:59 +00:00
|
|
|
} sh_audio_t;
|
|
|
|
|
2008-04-16 02:00:34 +00:00
|
|
|
typedef struct sh_video {
|
2011-07-03 07:30:50 +00:00
|
|
|
SH_COMMON
|
|
|
|
int vid;
|
|
|
|
float timer; // absolute time in video stream, since last start/seek
|
|
|
|
// frame counters:
|
|
|
|
float num_frames; // number of frames played
|
|
|
|
int num_frames_decoded; // number of frames decoded
|
|
|
|
double i_pts; // PTS for the _next_ I/P frame (internal mpeg demuxing)
|
|
|
|
float next_frame_time;
|
|
|
|
double last_pts;
|
|
|
|
double buffered_pts[32];
|
|
|
|
int num_buffered_pts;
|
|
|
|
double codec_reordered_pts;
|
|
|
|
double prev_codec_reordered_pts;
|
|
|
|
int num_reordered_pts_problems;
|
|
|
|
double sorted_pts;
|
|
|
|
double prev_sorted_pts;
|
|
|
|
int num_sorted_pts_problems;
|
|
|
|
int pts_assoc_mode;
|
|
|
|
// output format: (set by demuxer)
|
|
|
|
float fps; // frames per second (set only if constant fps)
|
|
|
|
float frametime; // 1/fps
|
|
|
|
float aspect; // aspect ratio stored in the file (for prescaling)
|
|
|
|
float stream_aspect; // aspect ratio in media headers (DVD IFO files)
|
|
|
|
int i_bps; // == bitrate (compressed bytes/sec)
|
|
|
|
int disp_w, disp_h; // display size (filled by demuxer)
|
2012-08-20 21:03:59 +00:00
|
|
|
int colorspace; // mp_csp
|
|
|
|
int color_range; // mp_csp_levels
|
2011-07-03 07:30:50 +00:00
|
|
|
// output driver/filters: (set by libmpcodecs core)
|
|
|
|
unsigned int outfmt;
|
|
|
|
struct vf_instance *vfilter; // video filter chain
|
|
|
|
int output_flags; // query_format() results for output filters+vo
|
|
|
|
const struct vd_functions *vd_driver;
|
|
|
|
int vf_initialized; // -1 failed, 0 not done, 1 done
|
|
|
|
// win32-compatible codec parameters:
|
|
|
|
AVIStreamHeader video;
|
|
|
|
BITMAPINFOHEADER *bih;
|
2001-04-06 01:18:59 +00:00
|
|
|
} sh_video_t;
|
|
|
|
|
2008-04-16 02:00:34 +00:00
|
|
|
typedef struct sh_sub {
|
2011-07-03 07:30:50 +00:00
|
|
|
SH_COMMON
|
|
|
|
int sid;
|
|
|
|
char type; // t = text, v = VobSub, a = SSA/ASS, m, x, b, d, p
|
|
|
|
bool active; // after track switch decoder may stay initialized, not active
|
|
|
|
unsigned char *extradata; // extra header data passed from demuxer
|
|
|
|
int extradata_len;
|
|
|
|
const struct sd_functions *sd_driver;
|
2006-11-13 18:38:29 +00:00
|
|
|
} sh_sub_t;
|
|
|
|
|
2002-09-21 23:23:03 +00:00
|
|
|
// demuxer.c:
|
2006-08-26 19:17:04 +00:00
|
|
|
#define new_sh_audio(d, i) new_sh_audio_aid(d, i, i)
|
2011-07-03 07:30:50 +00:00
|
|
|
struct sh_audio *new_sh_audio_aid(struct demuxer *demuxer, int id, int aid);
|
2006-08-26 19:17:04 +00:00
|
|
|
#define new_sh_video(d, i) new_sh_video_vid(d, i, i)
|
2011-07-03 07:30:50 +00:00
|
|
|
struct sh_video *new_sh_video_vid(struct demuxer *demuxer, int id, int vid);
|
2006-11-13 16:18:05 +00:00
|
|
|
#define new_sh_sub(d, i) new_sh_sub_sid(d, i, i)
|
2011-07-03 07:30:50 +00:00
|
|
|
struct sh_sub *new_sh_sub_sid(struct demuxer *demuxer, int id, int sid);
|
2012-09-07 12:42:25 +00:00
|
|
|
struct sh_sub *new_sh_sub_sid_lang(struct demuxer *demuxer, int id, int sid,
|
|
|
|
const char *lang);
|
2001-04-15 03:40:37 +00:00
|
|
|
|
2010-08-21 16:04:18 +00:00
|
|
|
const char *sh_sub_type2str(int type);
|
|
|
|
|
2002-09-21 23:23:03 +00:00
|
|
|
// video.c:
|
2011-07-03 07:30:50 +00:00
|
|
|
int video_read_properties(struct sh_video *sh_video);
|
|
|
|
int video_read_frame(struct sh_video *sh_video, float *frame_time_ptr,
|
|
|
|
unsigned char **start, int force_fps);
|
2002-03-03 18:47:29 +00:00
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_STHEADER_H */
|