#include <stdint.h>
#include <string.h>
#include "avformat.h"
#include "avio_internal.h"
#include "matroska.h"
#include "libavutil/avstring.h"
#include "libavutil/dict.h"
#include "libavutil/opt.h"
Go to the source code of this file.
|
static const char * | get_codec_name (int codec_id) |
|
static double | get_duration (AVFormatContext *s) |
|
static void | write_header (AVFormatContext *s) |
|
static void | write_footer (AVFormatContext *s) |
|
static int | subsegment_alignment (AVFormatContext *s, AdaptationSet *as) |
|
static int | bitstream_switching (AVFormatContext *s, AdaptationSet *as) |
|
static int | write_representation (AVFormatContext *s, AVStream *stream, int id, int output_width, int output_height, int output_sample_rate) |
|
static int | check_matching_width (AVFormatContext *s, AdaptationSet *as) |
|
static int | check_matching_height (AVFormatContext *s, AdaptationSet *as) |
|
static int | check_matching_sample_rate (AVFormatContext *s, AdaptationSet *as) |
|
static int | write_adaptation_set (AVFormatContext *s, int as_index) |
|
static int | to_integer (char *p, int len) |
|
static int | parse_adaptation_sets (AVFormatContext *s) |
|
static int | webm_dash_manifest_write_header (AVFormatContext *s) |
|
static int | webm_dash_manifest_write_packet (AVFormatContext *s, AVPacket *pkt) |
|
static int | webm_dash_manifest_write_trailer (AVFormatContext *s) |
|
static const char* get_codec_name |
( |
int |
codec_id | ) |
|
|
static |
static int write_representation |
( |
AVFormatContext * |
s, |
|
|
AVStream * |
stream, |
|
|
int |
id, |
|
|
int |
output_width, |
|
|
int |
output_height, |
|
|
int |
output_sample_rate |
|
) |
| |
|
static |
static int to_integer |
( |
char * |
p, |
|
|
int |
len |
|
) |
| |
|
static |
Initial value:= {
{
"adaptation_sets",
"Adaptation sets. Syntax: id=0,streams=0,1,2 id=1,streams=3,4 and so on",
OFFSET(adaptation_sets),
AV_OPT_TYPE_STRING, { 0 }, 0, 0,
AV_OPT_FLAG_ENCODING_PARAM },
}
Definition at line 362 of file webmdashenc.c.