FFmpeg
|
#include "libavutil/avstring.h"
#include "libavutil/avassert.h"
#include "libavutil/bprint.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
#include "libavutil/parseutils.h"
#include "libavutil/timestamp.h"
#include "libavcodec/bsf.h"
#include "avformat.h"
#include "avio_internal.h"
#include "internal.h"
#include "url.h"
Go to the source code of this file.
Data Structures | |
struct | ConcatStream |
struct | ConcatFile |
struct | ConcatContext |
struct | ParseSyntax |
Macros | |
#define | FAIL(retcode) do { ret = (retcode); goto fail; } while(0) |
#define | MAX_ARGS 3 |
#define | NEEDS_UNSAFE (1 << 0) |
#define | NEEDS_FILE (1 << 1) |
#define | NEEDS_STREAM (1 << 2) |
#define | OFFSET(x) offsetof(ConcatContext, x) |
#define | DEC AV_OPT_FLAG_DECODING_PARAM |
Enumerations | |
enum | ConcatMatchMode { MATCH_ONE_TO_ONE, MATCH_EXACT_ID } |
enum | ParseDirective { DIR_FFCONCAT, DIR_FILE, DIR_DURATION, DIR_INPOINT, DIR_OUTPOINT, DIR_FPMETA, DIR_FPMETAS, DIR_OPTION, DIR_STREAM, DIR_EXSID, DIR_STMETA, DIR_STCODEC, DIR_STEDATA, DIR_CHAPTER } |
Variables | |
static const ParseSyntax | syntax [] |
static const AVOption | options [] |
static const AVClass | concat_class |
const AVInputFormat | ff_concat_demuxer |
Definition at line 110 of file concatdec.c.
#define MAX_ARGS 3 |
Definition at line 412 of file concatdec.c.
#define NEEDS_UNSAFE (1 << 0) |
Definition at line 413 of file concatdec.c.
#define NEEDS_FILE (1 << 1) |
Definition at line 414 of file concatdec.c.
#define NEEDS_STREAM (1 << 2) |
Definition at line 415 of file concatdec.c.
#define OFFSET | ( | x | ) | offsetof(ConcatContext, x) |
Definition at line 924 of file concatdec.c.
#define DEC AV_OPT_FLAG_DECODING_PARAM |
Definition at line 925 of file concatdec.c.
enum ConcatMatchMode |
Enumerator | |
---|---|
MATCH_ONE_TO_ONE | |
MATCH_EXACT_ID |
Definition at line 34 of file concatdec.c.
enum ParseDirective |
Enumerator | |
---|---|
DIR_FFCONCAT | |
DIR_FILE | |
DIR_DURATION | |
DIR_INPOINT | |
DIR_OUTPOINT | |
DIR_FPMETA | |
DIR_FPMETAS | |
DIR_OPTION | |
DIR_STREAM | |
DIR_EXSID | |
DIR_STMETA | |
DIR_STCODEC | |
DIR_STEDATA | |
DIR_CHAPTER |
Definition at line 423 of file concatdec.c.
|
static |
Definition at line 74 of file concatdec.c.
|
static |
Definition at line 80 of file concatdec.c.
Referenced by concat_parse_script().
|
static |
Definition at line 91 of file concatdec.c.
Referenced by add_file().
|
static |
Definition at line 112 of file concatdec.c.
Referenced by concat_parse_script().
Definition at line 171 of file concatdec.c.
Referenced by match_streams_exact_id(), and match_streams_one_to_one().
|
static |
Definition at line 198 of file concatdec.c.
Referenced by match_streams().
|
static |
Definition at line 240 of file concatdec.c.
Referenced by match_streams().
|
static |
Definition at line 260 of file concatdec.c.
Referenced by match_streams().
|
static |
Definition at line 282 of file concatdec.c.
Referenced by concat_read_packet(), and open_file().
|
static |
Definition at line 319 of file concatdec.c.
Referenced by open_file(), and open_next_file().
|
static |
Definition at line 332 of file concatdec.c.
Referenced by concat_read_header(), open_next_file(), and real_seek().
|
static |
Definition at line 391 of file concatdec.c.
|
static |
Definition at line 457 of file concatdec.c.
Referenced by concat_read_header().
|
static |
Definition at line 646 of file concatdec.c.
|
static |
Definition at line 687 of file concatdec.c.
Referenced by concat_read_packet().
|
static |
Definition at line 701 of file concatdec.c.
Referenced by concat_read_packet().
|
static |
Definition at line 726 of file concatdec.c.
Referenced by concat_read_packet().
|
static |
Definition at line 735 of file concatdec.c.
|
static |
Definition at line 819 of file concatdec.c.
Referenced by real_seek(), and try_seek().
|
static |
Definition at line 829 of file concatdec.c.
Referenced by real_seek().
|
static |
Definition at line 847 of file concatdec.c.
Referenced by concat_seek().
|
static |
Definition at line 897 of file concatdec.c.
|
static |
Definition at line 440 of file concatdec.c.
Referenced by concat_parse_script().
|
static |
Definition at line 927 of file concatdec.c.
Referenced by open_file().
|
static |
Definition at line 937 of file concatdec.c.
const AVInputFormat ff_concat_demuxer |
Definition at line 945 of file concatdec.c.