diff options
author | Martin Storsjö <martin@martin.st> | 2014-12-29 14:57:05 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2014-12-29 23:26:43 +0200 |
commit | 8d54bacb789c7d37ca3cf48d9ac13083ad0c1ba7 (patch) | |
tree | 0da385e6fc4b0c212cd7fe4adbd0985d138472a9 /libavformat | |
parent | b91a5757fcbf723da99b05b298a6f820271dbc2b (diff) | |
download | ffmpeg-8d54bacb789c7d37ca3cf48d9ac13083ad0c1ba7.tar.gz |
dashenc: Remove some stray double spaces
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/dashenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 7dd08ec646..2a404b6d46 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -922,8 +922,8 @@ static const AVOption options[] = { { "use_timeline", "Use SegmentTimeline in SegmentTemplate", OFFSET(use_timeline), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, E }, { "single_file", "Store all segments in one file, accessed using byte ranges", OFFSET(single_file), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, E }, { "single_file_name", "DASH-templated name to be used for baseURL. Implies storing all segments in one file, accessed using byte ranges", OFFSET(single_file_name), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E }, - { "init_seg_name", "DASH-templated name to used for the initialization segment", OFFSET(init_seg_name), AV_OPT_TYPE_STRING, {.str = "init-stream$RepresentationID$.m4s"}, 0, 0, E }, - { "media_seg_name", "DASH-templated name to used for the media segments", OFFSET(media_seg_name), AV_OPT_TYPE_STRING, {.str = "chunk-stream$RepresentationID$-$Number%05d$.m4s"}, 0, 0, E }, + { "init_seg_name", "DASH-templated name to used for the initialization segment", OFFSET(init_seg_name), AV_OPT_TYPE_STRING, {.str = "init-stream$RepresentationID$.m4s"}, 0, 0, E }, + { "media_seg_name", "DASH-templated name to used for the media segments", OFFSET(media_seg_name), AV_OPT_TYPE_STRING, {.str = "chunk-stream$RepresentationID$-$Number%05d$.m4s"}, 0, 0, E }, { NULL }, }; |