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_DEMUXER_H
|
|
|
|
#define MPLAYER_DEMUXER_H
|
2001-04-23 16:12:21 +00:00
|
|
|
|
2008-06-17 09:09:36 +00:00
|
|
|
#include <sys/types.h>
|
2008-03-05 23:32:01 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2009-03-16 21:30:48 +00:00
|
|
|
#include <stdbool.h>
|
2008-03-05 23:32:01 +00:00
|
|
|
|
2012-11-09 00:06:43 +00:00
|
|
|
#include "core/bstr.h"
|
|
|
|
#include "core/mp_common.h"
|
2011-08-20 17:25:43 +00:00
|
|
|
#include "demux_packet.h"
|
2012-08-19 16:01:30 +00:00
|
|
|
#include "stheader.h"
|
2006-07-07 18:26:51 +00:00
|
|
|
|
2008-04-16 01:23:38 +00:00
|
|
|
struct MPOpts;
|
|
|
|
|
2013-01-13 12:55:22 +00:00
|
|
|
#if (__GNUC__ >= 3)
|
2011-02-10 10:05:26 +00:00
|
|
|
#define likely(x) __builtin_expect((x) != 0, 1)
|
|
|
|
#define unlikely(x) __builtin_expect((x) != 0, 0)
|
2008-10-16 18:26:01 +00:00
|
|
|
#else
|
|
|
|
#define likely(x) (x)
|
|
|
|
#define unlikely(x) (x)
|
|
|
|
#endif
|
|
|
|
|
2001-04-26 20:43:12 +00:00
|
|
|
#define MAX_PACKS 4096
|
2008-10-04 04:52:27 +00:00
|
|
|
#define MAX_PACK_BYTES 0x8000000 // 128 MiB
|
2001-04-23 16:12:21 +00:00
|
|
|
|
2011-02-11 17:52:44 +00:00
|
|
|
enum demuxer_type {
|
|
|
|
DEMUXER_TYPE_UNKNOWN = 0,
|
|
|
|
DEMUXER_TYPE_MPEG_PS,
|
|
|
|
DEMUXER_TYPE_AVI,
|
|
|
|
DEMUXER_TYPE_AVI_NI,
|
|
|
|
DEMUXER_TYPE_AVI_NINI,
|
|
|
|
DEMUXER_TYPE_ASF,
|
|
|
|
DEMUXER_TYPE_TV,
|
|
|
|
DEMUXER_TYPE_Y4M,
|
|
|
|
DEMUXER_TYPE_MF,
|
|
|
|
DEMUXER_TYPE_RAWAUDIO,
|
|
|
|
DEMUXER_TYPE_RAWVIDEO,
|
2012-09-07 12:26:02 +00:00
|
|
|
DEMUXER_TYPE_MPEG_ES,
|
|
|
|
DEMUXER_TYPE_MPEG4_ES,
|
|
|
|
DEMUXER_TYPE_H264_ES,
|
|
|
|
DEMUXER_TYPE_MPEG_PES,
|
|
|
|
DEMUXER_TYPE_MPEG_GXF,
|
2011-02-11 17:52:44 +00:00
|
|
|
DEMUXER_TYPE_GIF,
|
|
|
|
DEMUXER_TYPE_MPEG_TS,
|
|
|
|
DEMUXER_TYPE_MATROSKA,
|
|
|
|
DEMUXER_TYPE_LAVF,
|
|
|
|
DEMUXER_TYPE_NSV,
|
|
|
|
DEMUXER_TYPE_AVS,
|
|
|
|
DEMUXER_TYPE_AAC,
|
|
|
|
DEMUXER_TYPE_MPC,
|
|
|
|
DEMUXER_TYPE_MNG,
|
EDL: add support for new EDL file format
The timeline code previously added to support Matroska ordered
chapters allows constructing a playback timeline from segments picked
from multiple source files. Add support for a new EDL format to make
this machinery available for use with file formats other than Matroska
and in a manner easier to use than creating files with ordered
chapters.
Unlike the old -edl option which specifies an additional file with
edits to apply to the video file given as the main argument, the new
EDL format is used by giving only the EDL file as the file to play;
that file then contains the filename(s) to use as source files where
actual video segments come from. Filename paths in the EDL file are
ignored. Currently the source files are only searched for in the
directory of the EDL file; support for a search path option will
likely be added in the future.
Format of the EDL files
The first line in the file must be "mplayer EDL file, version 2".
The rest of the lines belong to one of these classes:
1) lines specifying source files
2) empty lines
3) lines specifying timeline segments.
Lines beginning with '<' specify source files. These lines first
contain an identifier used to refer to the source file later, then the
filename separated by whitespace. The identifier must start with a
letter. Filenames that start or end with whitespace or contain
newlines are not supported.
On other lines '#' characters delimit comments. Lines that contain
only whitespace after comments have been removed are ignored.
Timeline segments must appear in the file in chronological order. Each
segment has the following information associated with it:
- duration
- output start time
- output end time (= output start time + duration)
- source id (specifies the file the content of the segment comes from)
- source start time (timestamp in the source file)
- source end time (= source start time + duration)
The output timestamps must form a continuous timeline from 0 to the
end of the last segment, such that each new segment starts from the
time the previous one ends at. Source files and times may change
arbitrarily between segments.
The general format for lines specifying timeline segments is
[output time info] source_id [source time info]
source_id must be an identifier defined on a '<' line. Both the time
info parts consists of zero or more of the following elements:
1) timestamp
2) -timestamp
3) +duration
4) *
5) -*
, where "timestamp" and "duration" are decimal numbers (computations
are done with nanosecond precision). Whitespace around "+" and "-" is
optional. 1) and 2) specify start and end time of the segment on
output or source side. 3) specifies duration; the semantics are the
same whether this appears on output or source side. 4) and 5) are
ignored on the output side (they're always implicitly assumed). On the
source side 4) specifies that the segment starts where the previous
segment _using this source_ ended; if there was no previous segment
time 0 is used. 5) specifies that the segment ends where the next
segment using this source starts.
Redundant information may be omitted. It will be filled in using the
following rules:
- output start for first segment is 0
- two of [output start, output end, duration] imply third
- two of [source start, source end, duration] imply third
- output start = output end of previous segment
- output end = output start of next segment
- if "*", source start = source end of earlier segment
- if "-*", source end = source start of a later segment
As a special rule, a last zero-duration segment without a source
specification may appear. This will produce no corresponding segment
in the resulting timeline, but can be used as syntax to specify the
end time of the timeline (with effect equal to adding -time on the
previous line).
Examples:
----- begin -----
mplayer EDL file, version 2
< id1 filename
0 id1 123
100 id1 456
200 id1 789
300
----- end -----
All segments come from the source file "filename". First segment
(output time 0-100) comes from time 123-223, second 456-556, third
789-889.
----- begin -----
mplayer EDL file, version 2
< f filename
f 60-120
f 600-660
f 30- 90
----- end -----
Play first seconds 60-120 from the file, then 600-660, then 30-90.
----- begin -----
mplayer EDL file, version 2
< id1 filename1
< id2 filename2
+10 id1 *
+10 id2 *
+10 id1 *
+10 id2 *
+10 id1 *
+10 id2 *
----- end -----
This plays time 0-10 from filename1, then 0-10 from filename1, then
10-20 from filename1, then 10-20 from filename2, then 20-30 from
filename1, then 20-30 from filename2.
----- begin -----
mplayer EDL file, version 2
< t1 filename1
< t2 filename2
t1 * +2 # segment 1
+2 t2 100 # segment 2
t1 * # segment 3
t2 *-* # segment 4
t1 3 -* # segment 5
+0.111111 t2 102.5 # segment 6
7.37 t1 5 +1 # segment 7
----- end -----
This rather pathological example illustrates the rules for filling in
implied data. All the values can be determined by recursively applying
the rules given above, and the full end result is this:
+2 0-2 t1 0-2 # segment 1
+2 2-4 t2 100-102 # segment 2
+0.758889 4-4.758889 t1 2-2.758889 # segment 3
+0.5 4.4758889-5.258889 t2 102-102.5 # segment 4
+2 5.258889-7.258889 t1 3-5 # segment 5
+0.111111 7.258889-7.37 t2 102.5-102.611111 # segment 6
+1 7.37-8.37 t1 5-6 # segment 7
2011-02-14 11:05:35 +00:00
|
|
|
DEMUXER_TYPE_EDL,
|
2012-01-01 16:45:24 +00:00
|
|
|
DEMUXER_TYPE_CUE,
|
2013-06-21 19:34:55 +00:00
|
|
|
DEMUXER_TYPE_SUBREADER,
|
2013-06-22 00:09:52 +00:00
|
|
|
DEMUXER_TYPE_LIBASS,
|
2002-09-13 18:58:14 +00:00
|
|
|
|
2011-02-11 17:52:44 +00:00
|
|
|
/* Values after this are for internal use and can not be selected
|
|
|
|
* as demuxer type by the user (-demuxer option). */
|
|
|
|
DEMUXER_TYPE_END,
|
2002-02-20 16:59:25 +00:00
|
|
|
|
2011-02-11 17:52:44 +00:00
|
|
|
DEMUXER_TYPE_PLAYLIST,
|
|
|
|
};
|
2002-02-21 13:14:52 +00:00
|
|
|
|
2010-11-14 09:53:27 +00:00
|
|
|
enum timestamp_type {
|
|
|
|
TIMESTAMP_TYPE_PTS,
|
|
|
|
TIMESTAMP_TYPE_SORT,
|
|
|
|
};
|
|
|
|
|
2001-04-23 16:12:21 +00:00
|
|
|
|
2002-11-16 03:42:14 +00:00
|
|
|
// DEMUXER control commands/answers
|
|
|
|
#define DEMUXER_CTRL_NOTIMPL -1
|
|
|
|
#define DEMUXER_CTRL_DONTKNOW 0
|
|
|
|
#define DEMUXER_CTRL_OK 1
|
|
|
|
#define DEMUXER_CTRL_GUESS 2
|
2013-04-14 04:20:31 +00:00
|
|
|
|
2013-07-02 10:18:04 +00:00
|
|
|
#define DEMUXER_CTRL_UPDATE_INFO 8
|
2013-04-14 04:20:31 +00:00
|
|
|
#define DEMUXER_CTRL_SWITCHED_TRACKS 9
|
2002-11-16 03:42:14 +00:00
|
|
|
#define DEMUXER_CTRL_GET_TIME_LENGTH 10
|
2013-02-25 23:38:36 +00:00
|
|
|
#define DEMUXER_CTRL_GET_START_TIME 11
|
2005-04-03 14:08:28 +00:00
|
|
|
#define DEMUXER_CTRL_SWITCH_AUDIO 12
|
2006-11-07 22:51:18 +00:00
|
|
|
#define DEMUXER_CTRL_RESYNC 13
|
2006-11-16 21:23:06 +00:00
|
|
|
#define DEMUXER_CTRL_SWITCH_VIDEO 14
|
2006-11-18 14:31:31 +00:00
|
|
|
#define DEMUXER_CTRL_IDENTIFY_PROGRAM 15
|
2008-02-03 12:14:29 +00:00
|
|
|
#define DEMUXER_CTRL_CORRECT_PTS 16
|
core: fix DVD subtitle selection
Add all subtitle tracks as reported by libdvdread at playback start.
Display language for subtitle and audio tracks. This commit restores
these features to the state when demux_mpg was default for DVD playback,
and makes them work with demux_lavf and the recent changes to subtitle
selection in the frontend.
demux_mpg, which was the default demuxer for DVD playback, reordered
the subtitle streams according to the "logical" subtitle track number,
which conforms to the track layout reported by libdvdread, and is what
stream_dvd expects for the STREAM_CTRL_GET_LANG call. demux_lavf, on
the other hand, adds the streams in the order it encounters them in
the MPEG stream. It seems this order is essentially random, and can't
be mapped easily to what stream_dvd expects.
Solve this by making demux_lavf hand out the MPEG stream IDs (using the
demuxer_id field). The MPEG IDs are mapped by mplayer.c by special
casing DVD playback (map_id_from/to_demuxer() functions). This mapping
is essentially the same what demux_mpg did. Making demux_lavf reorder
the streams is out of the question, because its stream handling is
already messy enough.
(Note that demux_lavf doesn't export stream IDs for other formats,
because most time libavformat demuxers do not set AVStream.id, and we
don't know which demuxers do. But we know that MPEG is safe.)
Another major complication is that subtitle tracks are added lazily, as
soon as the demuxer encounters the first subtitle packet for a given
subtitle stream. Add the streams in advance. If a yet non-existent
stream is selected, demux_lavf must be made to auto-select that subtitle
stream as soon as it is added. Otherwise, the first subtitle packet
would be lost. This is done by DEMUXER_CTRL_PRESELECT_SUBTITLE.
demux_mpg didn't need this: the frontend code could just set ds->id to
the desired stream number. But demux_lavf's stream IDs don't map
directly to the stream number as used by libdvdread, which is why this
hack is needed.
2012-08-30 14:43:31 +00:00
|
|
|
#define DEMUXER_CTRL_AUTOSELECT_SUBTITLE 17
|
2002-11-16 03:42:14 +00:00
|
|
|
|
2008-01-29 15:11:38 +00:00
|
|
|
#define SEEK_ABSOLUTE (1 << 0)
|
|
|
|
#define SEEK_FACTOR (1 << 1)
|
2009-03-19 03:25:12 +00:00
|
|
|
#define SEEK_FORWARD (1 << 2)
|
|
|
|
#define SEEK_BACKWARD (1 << 3)
|
2013-04-03 23:43:14 +00:00
|
|
|
#define SEEK_SUBPREROLL (1 << 4)
|
2008-01-29 15:11:38 +00:00
|
|
|
|
2011-08-19 01:59:01 +00:00
|
|
|
// demux_lavf can pass lavf buffers using FF_INPUT_BUFFER_PADDING_SIZE instead
|
2011-08-26 03:29:36 +00:00
|
|
|
#define MP_INPUT_BUFFER_PADDING_SIZE 16
|
2008-07-16 16:18:25 +00:00
|
|
|
|
2008-04-23 06:49:25 +00:00
|
|
|
typedef struct demux_stream {
|
2012-08-19 16:01:30 +00:00
|
|
|
enum stream_type stream_type;
|
2011-02-10 10:05:26 +00:00
|
|
|
int buffer_pos; // current buffer position
|
|
|
|
int buffer_size; // current buffer size
|
|
|
|
unsigned char *buffer; // current buffer, never free() it, always use free_demux_packet(buffer_ref);
|
|
|
|
double pts; // current buffer's pts
|
|
|
|
int pts_bytes; // number of bytes read after last pts stamp
|
|
|
|
int eof; // end of demuxed stream? (true if all buffer empty)
|
2012-11-18 19:46:12 +00:00
|
|
|
int64_t pos; // position in the input stream (file)
|
|
|
|
int64_t dpos; // position in the demuxed stream
|
2011-02-10 10:05:26 +00:00
|
|
|
int pack_no; // serial number of packet
|
2012-07-24 21:23:27 +00:00
|
|
|
bool keyframe; // keyframe flag of current packet
|
2001-04-23 16:12:21 +00:00
|
|
|
//---------------
|
2011-01-27 20:37:51 +00:00
|
|
|
int fill_count; // number of unsuccessful tries to get a packet
|
2011-02-10 10:05:26 +00:00
|
|
|
int packs; // number of packets in buffer
|
|
|
|
int bytes; // total bytes of packets in buffer
|
|
|
|
demux_packet_t *first; // read to current buffer from here
|
|
|
|
demux_packet_t *last; // append new packets from input stream to here
|
|
|
|
demux_packet_t *current; // needed for refcounting of the buffer
|
|
|
|
int id; // stream ID (for multiple audio/video streams)
|
|
|
|
struct demuxer *demuxer; // parent demuxer structure (stream handler)
|
2001-04-23 16:12:21 +00:00
|
|
|
// ---- asf -----
|
2011-02-10 10:05:26 +00:00
|
|
|
struct demux_packet *asf_packet; // read asf fragments here
|
|
|
|
int asf_seq;
|
2001-04-23 16:12:21 +00:00
|
|
|
// ---- stream header ----
|
2012-08-08 19:45:37 +00:00
|
|
|
void *sh; // points to sh_audio or sh_video
|
2001-04-23 16:12:21 +00:00
|
|
|
} demux_stream_t;
|
|
|
|
|
2008-04-24 02:49:44 +00:00
|
|
|
typedef struct demuxer_info {
|
2011-02-10 10:05:26 +00:00
|
|
|
char *name;
|
|
|
|
char *author;
|
|
|
|
char *encoder;
|
|
|
|
char *comments;
|
|
|
|
char *copyright;
|
2001-11-21 16:14:14 +00:00
|
|
|
} demuxer_info_t;
|
|
|
|
|
2012-08-03 10:24:55 +00:00
|
|
|
#define MAX_SH_STREAMS 256
|
|
|
|
#define MAX_A_STREAMS MAX_SH_STREAMS
|
|
|
|
#define MAX_V_STREAMS MAX_SH_STREAMS
|
|
|
|
#define MAX_S_STREAMS MAX_SH_STREAMS
|
2002-02-10 18:09:20 +00:00
|
|
|
|
2008-04-24 02:49:44 +00:00
|
|
|
struct demuxer;
|
2005-08-05 19:57:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Demuxer description structure
|
|
|
|
*/
|
2008-04-24 02:49:44 +00:00
|
|
|
typedef struct demuxer_desc {
|
2011-02-10 10:05:26 +00:00
|
|
|
const char *info; // What is it (long name and/or description)
|
|
|
|
const char *name; // Demuxer name, used with -demuxer switch
|
|
|
|
const char *shortdesc; // Description printed at demuxer detection
|
|
|
|
const char *author; // Demuxer author(s)
|
|
|
|
const char *comment; // Comment, printed with -demuxer help
|
|
|
|
|
2011-02-11 17:52:44 +00:00
|
|
|
enum demuxer_type type;
|
2011-02-10 10:05:26 +00:00
|
|
|
// If 1 detection is safe and fast, do it before file extension check
|
|
|
|
int safe_check;
|
|
|
|
|
|
|
|
// Check if can demux the file, return DEMUXER_TYPE_xxx on success
|
|
|
|
// Mandatory if safe_check == 1, else optional
|
|
|
|
int (*check_file)(struct demuxer *demuxer);
|
|
|
|
/// Get packets from file, return 0 on eof. Mandatory
|
|
|
|
int (*fill_buffer)(struct demuxer *demuxer, struct demux_stream *ds);
|
|
|
|
/// Open the demuxer, return demuxer on success, NULL on failure
|
|
|
|
struct demuxer *(*open)(struct demuxer *demuxer); // Optional
|
|
|
|
/// Close the demuxer
|
|
|
|
void (*close)(struct demuxer *demuxer); // Optional
|
|
|
|
// Seek. Optional
|
|
|
|
void (*seek)(struct demuxer *demuxer, float rel_seek_secs,
|
|
|
|
float audio_delay, int flags);
|
|
|
|
// Various control functions. Optional
|
|
|
|
int (*control)(struct demuxer *demuxer, int cmd, void *arg);
|
2005-08-05 19:57:47 +00:00
|
|
|
} demuxer_desc_t;
|
|
|
|
|
2008-04-24 02:49:44 +00:00
|
|
|
typedef struct demux_chapter
|
2006-08-06 18:55:34 +00:00
|
|
|
{
|
2013-04-12 11:20:37 +00:00
|
|
|
int original_index;
|
2011-02-10 10:05:26 +00:00
|
|
|
uint64_t start, end;
|
|
|
|
char *name;
|
2006-08-06 18:55:34 +00:00
|
|
|
} demux_chapter_t;
|
|
|
|
|
2009-03-16 21:30:48 +00:00
|
|
|
struct matroska_data {
|
|
|
|
unsigned char segment_uid[16];
|
|
|
|
// Ordered chapter information if any
|
|
|
|
struct matroska_chapter {
|
|
|
|
uint64_t start;
|
|
|
|
uint64_t end;
|
|
|
|
bool has_segment_uid;
|
|
|
|
unsigned char segment_uid[16];
|
2009-04-02 02:00:22 +00:00
|
|
|
char *name;
|
2009-03-16 21:30:48 +00:00
|
|
|
} *ordered_chapters;
|
|
|
|
int num_ordered_chapters;
|
|
|
|
};
|
|
|
|
|
2008-04-24 02:49:44 +00:00
|
|
|
typedef struct demux_attachment
|
2008-01-12 01:12:36 +00:00
|
|
|
{
|
2011-02-10 10:05:26 +00:00
|
|
|
char *name;
|
|
|
|
char *type;
|
|
|
|
void *data;
|
|
|
|
unsigned int data_size;
|
2008-01-12 01:12:36 +00:00
|
|
|
} demux_attachment_t;
|
|
|
|
|
2011-08-04 05:38:39 +00:00
|
|
|
struct demuxer_params {
|
|
|
|
unsigned char (*matroska_wanted_uids)[16];
|
2013-04-14 00:49:07 +00:00
|
|
|
int matroska_wanted_segment;
|
|
|
|
bool *matroska_was_valid;
|
2013-06-22 00:09:52 +00:00
|
|
|
struct ass_library *ass_library;
|
2011-08-04 05:38:39 +00:00
|
|
|
};
|
|
|
|
|
2008-04-24 02:49:44 +00:00
|
|
|
typedef struct demuxer {
|
2011-02-10 10:05:26 +00:00
|
|
|
const demuxer_desc_t *desc; ///< Demuxer description structure
|
2011-05-04 20:12:55 +00:00
|
|
|
const char *filetype; // format name when not identified by demuxer (libavformat)
|
2012-11-18 19:46:12 +00:00
|
|
|
int64_t filepos; // input stream current pos.
|
|
|
|
int64_t movi_start;
|
|
|
|
int64_t movi_end;
|
2011-02-10 10:05:26 +00:00
|
|
|
struct stream *stream;
|
|
|
|
double stream_pts; // current stream pts, if applicable (e.g. dvd)
|
|
|
|
double reference_clock;
|
|
|
|
char *filename; // Needed by avs_check_file
|
|
|
|
int synced; // stream synced (used by mpeg)
|
2011-02-11 17:52:44 +00:00
|
|
|
enum demuxer_type type;
|
2011-02-10 10:05:26 +00:00
|
|
|
/* Normally the file_format field is just a copy of the type field above.
|
|
|
|
* There are 2 exceptions I noticed. Internal demux_avi may force
|
|
|
|
* ->type to DEMUXER_TYPE_AVI_[NI|NINI] while leaving ->file_format at
|
|
|
|
* DEMUXER_TYPE_AVI. Internal demux_mov may set ->type to
|
|
|
|
* DEMUXER_TYPE_PLAYLIST and also return that from the check function
|
|
|
|
* or not (looks potentially buggy). */
|
2011-02-11 17:52:44 +00:00
|
|
|
enum demuxer_type file_format;
|
2011-02-10 10:05:26 +00:00
|
|
|
int seekable; // flag
|
2009-03-19 03:25:12 +00:00
|
|
|
/* Set if using absolute seeks for small movements is OK (no pts resets
|
|
|
|
* that would make pts ambigious, preferably supports back/forward flags */
|
|
|
|
bool accurate_seek;
|
2013-03-01 12:20:33 +00:00
|
|
|
// File format allows PTS resets (even if the current file is without)
|
|
|
|
bool ts_resets_possible;
|
2010-11-14 09:53:27 +00:00
|
|
|
enum timestamp_type timestamp_type;
|
2013-02-14 13:49:50 +00:00
|
|
|
bool warned_queue_overflow;
|
2001-04-23 16:12:21 +00:00
|
|
|
|
2012-08-19 16:01:30 +00:00
|
|
|
struct demux_stream *ds[STREAM_TYPE_COUNT]; // video/audio/sub buffers
|
|
|
|
|
|
|
|
// These correspond to ds[], e.g.: audio == ds[STREAM_AUDIO]
|
2011-02-10 10:05:26 +00:00
|
|
|
struct demux_stream *audio; // audio buffer/demuxer
|
|
|
|
struct demux_stream *video; // video buffer/demuxer
|
|
|
|
struct demux_stream *sub; // dvd subtitle buffer/demuxer
|
2006-08-06 18:55:34 +00:00
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
// stream headers:
|
2012-08-03 10:24:55 +00:00
|
|
|
struct sh_audio *a_streams[MAX_SH_STREAMS];
|
|
|
|
struct sh_video *v_streams[MAX_SH_STREAMS];
|
|
|
|
struct sh_sub *s_streams[MAX_SH_STREAMS];
|
|
|
|
|
|
|
|
struct sh_stream **streams;
|
|
|
|
int num_streams;
|
2009-11-07 12:31:05 +00:00
|
|
|
|
2012-08-25 23:19:42 +00:00
|
|
|
int num_editions;
|
|
|
|
int edition;
|
2011-12-31 12:20:08 +00:00
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
struct demux_chapter *chapters;
|
|
|
|
int num_chapters;
|
|
|
|
|
|
|
|
struct demux_attachment *attachments;
|
|
|
|
int num_attachments;
|
2008-01-12 01:12:36 +00:00
|
|
|
|
2009-03-16 21:30:48 +00:00
|
|
|
struct matroska_data matroska_data;
|
EDL: add support for new EDL file format
The timeline code previously added to support Matroska ordered
chapters allows constructing a playback timeline from segments picked
from multiple source files. Add support for a new EDL format to make
this machinery available for use with file formats other than Matroska
and in a manner easier to use than creating files with ordered
chapters.
Unlike the old -edl option which specifies an additional file with
edits to apply to the video file given as the main argument, the new
EDL format is used by giving only the EDL file as the file to play;
that file then contains the filename(s) to use as source files where
actual video segments come from. Filename paths in the EDL file are
ignored. Currently the source files are only searched for in the
directory of the EDL file; support for a search path option will
likely be added in the future.
Format of the EDL files
The first line in the file must be "mplayer EDL file, version 2".
The rest of the lines belong to one of these classes:
1) lines specifying source files
2) empty lines
3) lines specifying timeline segments.
Lines beginning with '<' specify source files. These lines first
contain an identifier used to refer to the source file later, then the
filename separated by whitespace. The identifier must start with a
letter. Filenames that start or end with whitespace or contain
newlines are not supported.
On other lines '#' characters delimit comments. Lines that contain
only whitespace after comments have been removed are ignored.
Timeline segments must appear in the file in chronological order. Each
segment has the following information associated with it:
- duration
- output start time
- output end time (= output start time + duration)
- source id (specifies the file the content of the segment comes from)
- source start time (timestamp in the source file)
- source end time (= source start time + duration)
The output timestamps must form a continuous timeline from 0 to the
end of the last segment, such that each new segment starts from the
time the previous one ends at. Source files and times may change
arbitrarily between segments.
The general format for lines specifying timeline segments is
[output time info] source_id [source time info]
source_id must be an identifier defined on a '<' line. Both the time
info parts consists of zero or more of the following elements:
1) timestamp
2) -timestamp
3) +duration
4) *
5) -*
, where "timestamp" and "duration" are decimal numbers (computations
are done with nanosecond precision). Whitespace around "+" and "-" is
optional. 1) and 2) specify start and end time of the segment on
output or source side. 3) specifies duration; the semantics are the
same whether this appears on output or source side. 4) and 5) are
ignored on the output side (they're always implicitly assumed). On the
source side 4) specifies that the segment starts where the previous
segment _using this source_ ended; if there was no previous segment
time 0 is used. 5) specifies that the segment ends where the next
segment using this source starts.
Redundant information may be omitted. It will be filled in using the
following rules:
- output start for first segment is 0
- two of [output start, output end, duration] imply third
- two of [source start, source end, duration] imply third
- output start = output end of previous segment
- output end = output start of next segment
- if "*", source start = source end of earlier segment
- if "-*", source end = source start of a later segment
As a special rule, a last zero-duration segment without a source
specification may appear. This will produce no corresponding segment
in the resulting timeline, but can be used as syntax to specify the
end time of the timeline (with effect equal to adding -time on the
previous line).
Examples:
----- begin -----
mplayer EDL file, version 2
< id1 filename
0 id1 123
100 id1 456
200 id1 789
300
----- end -----
All segments come from the source file "filename". First segment
(output time 0-100) comes from time 123-223, second 456-556, third
789-889.
----- begin -----
mplayer EDL file, version 2
< f filename
f 60-120
f 600-660
f 30- 90
----- end -----
Play first seconds 60-120 from the file, then 600-660, then 30-90.
----- begin -----
mplayer EDL file, version 2
< id1 filename1
< id2 filename2
+10 id1 *
+10 id2 *
+10 id1 *
+10 id2 *
+10 id1 *
+10 id2 *
----- end -----
This plays time 0-10 from filename1, then 0-10 from filename1, then
10-20 from filename1, then 10-20 from filename2, then 20-30 from
filename1, then 20-30 from filename2.
----- begin -----
mplayer EDL file, version 2
< t1 filename1
< t2 filename2
t1 * +2 # segment 1
+2 t2 100 # segment 2
t1 * # segment 3
t2 *-* # segment 4
t1 3 -* # segment 5
+0.111111 t2 102.5 # segment 6
7.37 t1 5 +1 # segment 7
----- end -----
This rather pathological example illustrates the rules for filling in
implied data. All the values can be determined by recursively applying
the rules given above, and the full end result is this:
+2 0-2 t1 0-2 # segment 1
+2 2-4 t2 100-102 # segment 2
+0.758889 4-4.758889 t1 2-2.758889 # segment 3
+0.5 4.4758889-5.258889 t2 102-102.5 # segment 4
+2 5.258889-7.258889 t1 3-5 # segment 5
+0.111111 7.258889-7.37 t2 102.5-102.611111 # segment 6
+1 7.37-8.37 t1 5-6 # segment 7
2011-02-14 11:05:35 +00:00
|
|
|
// for trivial demuxers which just read the whole file for codec to use
|
|
|
|
struct bstr file_contents;
|
2009-03-16 21:30:48 +00:00
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
void *priv; // demuxer-specific internal data
|
|
|
|
char **info; // metadata
|
|
|
|
struct MPOpts *opts;
|
2011-08-04 05:38:39 +00:00
|
|
|
struct demuxer_params *params;
|
2001-04-23 16:12:21 +00:00
|
|
|
} demuxer_t;
|
|
|
|
|
2006-11-18 14:31:31 +00:00
|
|
|
typedef struct {
|
2011-02-10 10:05:26 +00:00
|
|
|
int progid; //program id
|
|
|
|
int aid, vid, sid; //audio, video and subtitle id
|
2006-11-18 14:31:31 +00:00
|
|
|
} demux_program_t;
|
|
|
|
|
2011-01-17 14:16:39 +00:00
|
|
|
struct demux_packet *new_demux_packet(size_t len);
|
2011-08-19 01:59:01 +00:00
|
|
|
// data must already have suitable padding
|
|
|
|
struct demux_packet *new_demux_packet_fromdata(void *data, size_t len);
|
2013-04-14 21:19:29 +00:00
|
|
|
struct demux_packet *new_demux_packet_from(void *data, size_t len);
|
2011-01-17 14:16:39 +00:00
|
|
|
void resize_demux_packet(struct demux_packet *dp, size_t len);
|
2011-01-17 13:47:57 +00:00
|
|
|
void free_demux_packet(struct demux_packet *dp);
|
2013-06-11 19:39:54 +00:00
|
|
|
struct demux_packet *demux_copy_packet(struct demux_packet *dp);
|
2001-04-23 16:12:21 +00:00
|
|
|
|
2006-06-04 22:41:27 +00:00
|
|
|
#ifndef SIZE_MAX
|
|
|
|
#define SIZE_MAX ((size_t)-1)
|
|
|
|
#endif
|
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
static inline void *realloc_struct(void *ptr, size_t nmemb, size_t size)
|
|
|
|
{
|
|
|
|
if (nmemb > SIZE_MAX / size) {
|
|
|
|
free(ptr);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return realloc(ptr, nmemb * size);
|
2006-06-04 22:41:27 +00:00
|
|
|
}
|
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
void free_demuxer(struct demuxer *demuxer);
|
2001-04-23 16:12:21 +00:00
|
|
|
|
2013-06-21 19:18:03 +00:00
|
|
|
int demuxer_add_packet(demuxer_t *demuxer, struct sh_stream *stream,
|
|
|
|
demux_packet_t *dp);
|
2011-02-10 10:05:26 +00:00
|
|
|
void ds_add_packet(struct demux_stream *ds, struct demux_packet *dp);
|
|
|
|
void ds_read_packet(struct demux_stream *ds, struct stream *stream, int len,
|
2012-11-18 19:46:12 +00:00
|
|
|
double pts, int64_t pos, bool keyframe);
|
2001-04-23 16:12:21 +00:00
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
int demux_fill_buffer(struct demuxer *demux, struct demux_stream *ds);
|
|
|
|
int ds_fill_buffer(struct demux_stream *ds);
|
2001-04-23 16:12:21 +00:00
|
|
|
|
2012-11-18 19:46:12 +00:00
|
|
|
static inline int64_t ds_tell(struct demux_stream *ds)
|
2011-02-10 10:05:26 +00:00
|
|
|
{
|
|
|
|
return (ds->dpos - ds->buffer_size) + ds->buffer_pos;
|
2001-04-23 16:12:21 +00:00
|
|
|
}
|
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
static inline int ds_tell_pts(struct demux_stream *ds)
|
|
|
|
{
|
|
|
|
return (ds->pts_bytes - ds->buffer_size) + ds->buffer_pos;
|
2001-05-10 03:39:54 +00:00
|
|
|
}
|
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
int demux_read_data(struct demux_stream *ds, unsigned char *mem, int len);
|
2012-09-07 12:26:02 +00:00
|
|
|
int demux_pattern_3(struct demux_stream *ds, unsigned char *mem, int maxlen,
|
|
|
|
int *read, uint32_t pattern);
|
2001-04-23 16:12:21 +00:00
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
#define demux_peekc(ds) ( \
|
|
|
|
(likely(ds->buffer_pos<ds->buffer_size)) ? ds->buffer[ds->buffer_pos] \
|
|
|
|
: ((unlikely(!ds_fill_buffer(ds))) ? (-1) : ds->buffer[ds->buffer_pos]))
|
|
|
|
#define demux_getc(ds) ( \
|
|
|
|
(likely(ds->buffer_pos<ds->buffer_size)) ? ds->buffer[ds->buffer_pos++] \
|
|
|
|
: ((unlikely(!ds_fill_buffer(ds))) ? (-1) : ds->buffer[ds->buffer_pos++]))
|
2001-04-23 16:12:21 +00:00
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
void ds_free_packs(struct demux_stream *ds);
|
|
|
|
int ds_get_packet(struct demux_stream *ds, unsigned char **start);
|
|
|
|
int ds_get_packet_pts(struct demux_stream *ds, unsigned char **start,
|
|
|
|
double *pts);
|
2013-06-02 23:28:14 +00:00
|
|
|
struct demux_packet *ds_get_packet_sub(demux_stream_t *ds);
|
2011-12-22 03:54:48 +00:00
|
|
|
struct demux_packet *ds_get_packet2(struct demux_stream *ds, bool repeat_last);
|
2011-02-10 10:05:26 +00:00
|
|
|
double ds_get_next_pts(struct demux_stream *ds);
|
|
|
|
int ds_parse(struct demux_stream *sh, uint8_t **buffer, int *len, double pts,
|
2012-11-18 19:46:12 +00:00
|
|
|
int64_t pos);
|
2011-02-10 10:05:26 +00:00
|
|
|
void ds_clear_parser(struct demux_stream *sh);
|
2001-04-23 16:12:21 +00:00
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
static inline int avi_stream_id(unsigned int id)
|
|
|
|
{
|
|
|
|
unsigned char a, b;
|
|
|
|
a = id - '0';
|
|
|
|
b = (id >> 8) - '0';
|
|
|
|
if (a>9 || b>9)
|
|
|
|
return 100; // invalid ID
|
|
|
|
return a * 10 + b;
|
2001-04-23 16:12:21 +00:00
|
|
|
}
|
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
struct demuxer *demux_open(struct MPOpts *opts, struct stream *stream,
|
|
|
|
int file_format, int aid, int vid, int sid,
|
|
|
|
char *filename);
|
2011-08-04 05:38:39 +00:00
|
|
|
|
|
|
|
struct demuxer *demux_open_withparams(struct MPOpts *opts,
|
2012-08-19 16:11:53 +00:00
|
|
|
struct stream *stream, int file_format,
|
|
|
|
char *force_format, int audio_id,
|
|
|
|
int video_id, int sub_id, char *filename,
|
|
|
|
struct demuxer_params *params);
|
2011-08-04 05:38:39 +00:00
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
void demux_flush(struct demuxer *demuxer);
|
|
|
|
int demux_seek(struct demuxer *demuxer, float rel_seek_secs, float audio_delay,
|
|
|
|
int flags);
|
2001-04-23 16:12:21 +00:00
|
|
|
|
2001-10-30 17:03:11 +00:00
|
|
|
// AVI demuxer params:
|
2011-06-10 08:31:00 +00:00
|
|
|
extern int index_mode; // -1=untouched 0=don't use index 1=use (generate) index
|
2001-10-30 17:03:11 +00:00
|
|
|
extern int force_ni;
|
|
|
|
extern int pts_from_bps;
|
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
int demux_info_add(struct demuxer *demuxer, const char *opt, const char *param);
|
|
|
|
int demux_info_add_bstr(struct demuxer *demuxer, struct bstr opt,
|
|
|
|
struct bstr param);
|
|
|
|
char *demux_info_get(struct demuxer *demuxer, const char *opt);
|
|
|
|
int demux_info_print(struct demuxer *demuxer);
|
2013-07-02 10:18:04 +00:00
|
|
|
void demux_info_update(struct demuxer *demuxer);
|
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
int demux_control(struct demuxer *demuxer, int cmd, void *arg);
|
2002-03-03 18:47:29 +00:00
|
|
|
|
2012-08-19 16:01:30 +00:00
|
|
|
void demuxer_switch_track(struct demuxer *demuxer, enum stream_type type,
|
|
|
|
struct sh_stream *stream);
|
2003-01-19 00:21:54 +00:00
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
int demuxer_type_by_filename(char *filename);
|
2005-08-05 19:57:47 +00:00
|
|
|
|
2008-12-03 23:01:03 +00:00
|
|
|
void demuxer_help(void);
|
2006-08-06 18:55:34 +00:00
|
|
|
|
2011-02-10 10:05:26 +00:00
|
|
|
int demuxer_add_attachment(struct demuxer *demuxer, struct bstr name,
|
2010-05-19 10:44:37 +00:00
|
|
|
struct bstr type, struct bstr data);
|
2011-02-10 10:05:26 +00:00
|
|
|
int demuxer_add_chapter(struct demuxer *demuxer, struct bstr name,
|
2010-01-26 01:31:31 +00:00
|
|
|
uint64_t start, uint64_t end);
|
2011-10-23 02:51:44 +00:00
|
|
|
int demuxer_seek_chapter(struct demuxer *demuxer, int chapter,
|
|
|
|
double *seek_pts);
|
2013-04-12 11:20:37 +00:00
|
|
|
void demuxer_sort_chapters(demuxer_t *demuxer);
|
2006-08-06 18:55:34 +00:00
|
|
|
|
2013-05-03 18:07:04 +00:00
|
|
|
double demuxer_get_time_length(struct demuxer *demuxer);
|
|
|
|
double demuxer_get_start_time(struct demuxer *demuxer);
|
|
|
|
|
2007-12-13 12:51:05 +00:00
|
|
|
/// Get current chapter index if available.
|
2011-02-10 10:05:26 +00:00
|
|
|
int demuxer_get_current_chapter(struct demuxer *demuxer, double time_now);
|
2007-12-13 12:51:05 +00:00
|
|
|
/// Get chapter name by index if available.
|
2011-02-10 10:05:26 +00:00
|
|
|
char *demuxer_chapter_name(struct demuxer *demuxer, int chapter);
|
2013-05-03 23:02:09 +00:00
|
|
|
/// Get chapter start time by index if available.
|
|
|
|
double demuxer_chapter_time(struct demuxer *demuxer, int chapter);
|
2007-12-13 12:51:05 +00:00
|
|
|
/// Get total chapter number.
|
2011-02-10 10:05:26 +00:00
|
|
|
int demuxer_chapter_count(struct demuxer *demuxer);
|
2008-01-05 14:28:57 +00:00
|
|
|
/// Get current angle index.
|
2011-02-10 10:05:26 +00:00
|
|
|
int demuxer_get_current_angle(struct demuxer *demuxer);
|
2008-01-05 14:28:57 +00:00
|
|
|
/// Set angle.
|
2011-02-10 10:05:26 +00:00
|
|
|
int demuxer_set_angle(struct demuxer *demuxer, int angle);
|
2008-01-05 14:28:57 +00:00
|
|
|
/// Get number of angles.
|
2011-02-10 10:05:26 +00:00
|
|
|
int demuxer_angles_count(struct demuxer *demuxer);
|
2007-06-20 16:52:32 +00:00
|
|
|
|
2012-08-19 16:01:30 +00:00
|
|
|
struct sh_stream *demuxer_stream_by_demuxer_id(struct demuxer *d,
|
|
|
|
enum stream_type t, int id);
|
2008-03-30 16:55:46 +00:00
|
|
|
|
2013-04-14 17:19:35 +00:00
|
|
|
bool demuxer_stream_is_selected(struct demuxer *d, struct sh_stream *stream);
|
|
|
|
|
2013-06-21 19:18:03 +00:00
|
|
|
void demux_packet_list_sort(struct demux_packet **pkts, int num_pkts);
|
|
|
|
void demux_packet_list_seek(struct demux_packet **pkts, int num_pkts,
|
|
|
|
int *current, float rel_seek_secs, int flags);
|
|
|
|
double demux_packet_list_duration(struct demux_packet **pkts, int num_pkts);
|
|
|
|
struct demux_packet *demux_packet_list_fill(struct demux_packet **pkts,
|
|
|
|
int num_pkts, int *current);
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_DEMUXER_H */
|