|
FFmpeg
|
#include "libavutil/attributes_internal.h"#include "libavutil/avstring.h"#include "libavutil/avassert.h"#include "libavutil/bprint.h"#include "libavutil/intreadwrite.h"#include "libavutil/mem.h"#include "libavutil/opt.h"#include "libavutil/parseutils.h"#include "libavutil/timestamp.h"#include "libavcodec/codec_desc.h"#include "libavcodec/bsf.h"#include "avformat.h"#include "avio_internal.h"#include "demux.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 FFInputFormat | ff_concat_demuxer |
Definition at line 115 of file concatdec.c.
| #define MAX_ARGS 3 |
Definition at line 424 of file concatdec.c.
| #define NEEDS_UNSAFE (1 << 0) |
Definition at line 425 of file concatdec.c.
| #define NEEDS_FILE (1 << 1) |
Definition at line 426 of file concatdec.c.
| #define NEEDS_STREAM (1 << 2) |
Definition at line 427 of file concatdec.c.
| #define OFFSET | ( | x | ) | offsetof(ConcatContext, x) |
Definition at line 946 of file concatdec.c.
| #define DEC AV_OPT_FLAG_DECODING_PARAM |
Definition at line 947 of file concatdec.c.
| enum ConcatMatchMode |
| Enumerator | |
|---|---|
| MATCH_ONE_TO_ONE | |
| MATCH_EXACT_ID | |
Definition at line 38 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 435 of file concatdec.c.
|
static |
Definition at line 79 of file concatdec.c.
|
static |
Definition at line 85 of file concatdec.c.
Referenced by concat_parse_script().
|
static |
Definition at line 96 of file concatdec.c.
Referenced by add_file().
|
static |
Definition at line 117 of file concatdec.c.
Referenced by concat_parse_script().
Definition at line 176 of file concatdec.c.
Referenced by match_streams_exact_id(), and match_streams_one_to_one().
|
static |
Definition at line 203 of file concatdec.c.
Referenced by match_streams().
|
static |
Definition at line 245 of file concatdec.c.
Referenced by match_streams().
|
static |
Definition at line 265 of file concatdec.c.
Referenced by match_streams().
|
static |
Definition at line 287 of file concatdec.c.
Referenced by concat_read_packet(), and open_file().
|
static |
Definition at line 324 of file concatdec.c.
Referenced by open_file(), and open_next_file().
|
static |
Definition at line 337 of file concatdec.c.
Referenced by concat_read_header(), open_next_file(), and real_seek().
|
static |
Definition at line 403 of file concatdec.c.
|
static |
Definition at line 469 of file concatdec.c.
Referenced by concat_read_header().
|
static |
Definition at line 669 of file concatdec.c.
|
static |
Definition at line 719 of file concatdec.c.
Referenced by concat_read_packet().
|
static |
Definition at line 733 of file concatdec.c.
Referenced by concat_read_packet().
|
static |
Definition at line 758 of file concatdec.c.
Referenced by concat_read_packet().
|
static |
Definition at line 767 of file concatdec.c.
|
static |
Definition at line 851 of file concatdec.c.
Referenced by real_seek().
|
static |
Definition at line 869 of file concatdec.c.
Referenced by concat_seek().
|
static |
Definition at line 919 of file concatdec.c.
|
static |
Definition at line 452 of file concatdec.c.
Referenced by concat_parse_script().
Definition at line 949 of file concatdec.c.
|
static |
Definition at line 961 of file concatdec.c.
| const FFInputFormat ff_concat_demuxer |
Definition at line 969 of file concatdec.c.
1.8.17