FFmpeg  3.4.9
webm_chunk.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015, Vignesh Venkatasubramanian
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 /**
22  * @file WebM Chunk Muxer
23  * The chunk muxer enables writing WebM Live chunks where there is a header
24  * chunk, followed by data chunks where each Cluster is written out as a Chunk.
25  */
26 
27 #include <float.h>
28 #include <time.h>
29 
30 #include "avformat.h"
31 #include "avio.h"
32 #include "avio_internal.h"
33 #include "internal.h"
34 
35 #include "libavutil/avassert.h"
36 #include "libavutil/log.h"
37 #include "libavutil/opt.h"
38 #include "libavutil/avstring.h"
39 #include "libavutil/parseutils.h"
40 #include "libavutil/mathematics.h"
41 #include "libavutil/time.h"
43 #include "libavutil/timestamp.h"
44 
45 #define MAX_FILENAME_SIZE 1024
46 
47 typedef struct WebMChunkContext {
48  const AVClass *class;
53  char *http_method;
54  uint64_t duration_written;
55  int prev_pts;
59 
61 {
62  WebMChunkContext *wc = s->priv_data;
63  AVFormatContext *oc;
64  int ret;
65 
67  if (ret < 0)
68  return ret;
69  oc = wc->avf;
70 
72  oc->max_delay = s->max_delay;
73  av_dict_copy(&oc->metadata, s->metadata, 0);
74 
75  *(const AVClass**)oc->priv_data = oc->oformat->priv_class;
77  av_opt_set_int(oc->priv_data, "dash", 1, 0);
78  av_opt_set_int(oc->priv_data, "cluster_time_limit", wc->chunk_duration, 0);
79  av_opt_set_int(oc->priv_data, "live", 1, 0);
80 
81  oc->streams = s->streams;
82  oc->nb_streams = s->nb_streams;
83 
84  return 0;
85 }
86 
87 static int get_chunk_filename(AVFormatContext *s, int is_header, char filename[MAX_FILENAME_SIZE])
88 {
89  WebMChunkContext *wc = s->priv_data;
90  AVFormatContext *oc = wc->avf;
91  if (!filename) {
92  return AVERROR(EINVAL);
93  }
94  if (is_header) {
95  int len;
96  if (!wc->header_filename) {
97  av_log(oc, AV_LOG_ERROR, "No header filename provided\n");
98  return AVERROR(EINVAL);
99  }
100  len = av_strlcpy(filename, wc->header_filename, MAX_FILENAME_SIZE);
101  if (len >= MAX_FILENAME_SIZE) {
102  av_log(oc, AV_LOG_ERROR, "Header filename too long\n");
103  return AVERROR(EINVAL);
104  }
105  } else {
106  if (av_get_frame_filename(filename, MAX_FILENAME_SIZE,
107  s->filename, wc->chunk_index - 1) < 0) {
108  av_log(oc, AV_LOG_ERROR, "Invalid chunk filename template '%s'\n", s->filename);
109  return AVERROR(EINVAL);
110  }
111  }
112  return 0;
113 }
114 
116 {
117  WebMChunkContext *wc = s->priv_data;
118  AVFormatContext *oc = NULL;
119  int ret;
120  int i;
122 
123  // DASH Streams can only have either one track per file.
124  if (s->nb_streams != 1) { return AVERROR_INVALIDDATA; }
125 
126  wc->chunk_index = wc->chunk_start_index;
127  wc->oformat = av_guess_format("webm", s->filename, "video/webm");
128  if (!wc->oformat)
130 
131  ret = chunk_mux_init(s);
132  if (ret < 0)
133  return ret;
134  oc = wc->avf;
135  ret = get_chunk_filename(s, 1, oc->filename);
136  if (ret < 0)
137  return ret;
138  if (wc->http_method)
139  av_dict_set(&options, "method", wc->http_method, 0);
140  ret = s->io_open(s, &oc->pb, oc->filename, AVIO_FLAG_WRITE, &options);
141  av_dict_free(&options);
142  if (ret < 0)
143  return ret;
144 
145  oc->pb->seekable = 0;
146  ret = oc->oformat->write_header(oc);
147  if (ret < 0)
148  return ret;
149  ff_format_io_close(s, &oc->pb);
150  for (i = 0; i < s->nb_streams; i++) {
151  // ms precision is the de-facto standard timescale for mkv files.
152  avpriv_set_pts_info(s->streams[i], 64, 1, 1000);
153  }
154  return 0;
155 }
156 
158 {
159  WebMChunkContext *wc = s->priv_data;
160  AVFormatContext *oc = wc->avf;
161  int ret;
162 
163  ret = avio_open_dyn_buf(&oc->pb);
164  if (ret < 0)
165  return ret;
166  wc->chunk_index++;
167  return 0;
168 }
169 
170 static int chunk_end(AVFormatContext *s, int flush)
171 {
172  WebMChunkContext *wc = s->priv_data;
173  AVFormatContext *oc = wc->avf;
174  int ret;
175  int buffer_size;
176  uint8_t *buffer;
177  AVIOContext *pb;
178  char filename[MAX_FILENAME_SIZE];
180 
181  if (!oc->pb)
182  return 0;
183 
184  if (flush)
185  // Flush the cluster in WebM muxer.
186  oc->oformat->write_packet(oc, NULL);
187  buffer_size = avio_close_dyn_buf(oc->pb, &buffer);
188  oc->pb = NULL;
189  ret = get_chunk_filename(s, 0, filename);
190  if (ret < 0)
191  goto fail;
192  if (wc->http_method)
193  av_dict_set(&options, "method", wc->http_method, 0);
194  ret = s->io_open(s, &pb, filename, AVIO_FLAG_WRITE, &options);
195  if (ret < 0)
196  goto fail;
197  avio_write(pb, buffer, buffer_size);
198  ff_format_io_close(s, &pb);
199 fail:
200  av_dict_free(&options);
201  av_free(buffer);
202  return (ret < 0) ? ret : 0;
203 }
204 
206 {
207  WebMChunkContext *wc = s->priv_data;
208  AVFormatContext *oc = wc->avf;
209  AVStream *st = s->streams[pkt->stream_index];
210  int ret;
211 
212  if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
213  wc->duration_written += av_rescale_q(pkt->pts - wc->prev_pts,
214  st->time_base,
215  (AVRational) {1, 1000});
216  wc->prev_pts = pkt->pts;
217  }
218 
219  // For video, a new chunk is started only on key frames. For audio, a new
220  // chunk is started based on chunk_duration. Also, a new chunk is started
221  // unconditionally if there is no currently open chunk.
222  if (!oc->pb || (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
223  (pkt->flags & AV_PKT_FLAG_KEY)) ||
225  wc->duration_written >= wc->chunk_duration)) {
226  wc->duration_written = 0;
227  if ((ret = chunk_end(s, 1)) < 0 || (ret = chunk_start(s)) < 0) {
228  return ret;
229  }
230  }
231 
232  ret = oc->oformat->write_packet(oc, pkt);
233 
234  return ret;
235 }
236 
238 {
239  WebMChunkContext *wc = s->priv_data;
240  AVFormatContext *oc = wc->avf;
241  int ret;
242 
243  if (!oc->pb) {
244  ret = chunk_start(s);
245  if (ret < 0)
246  goto fail;
247  }
248  oc->oformat->write_trailer(oc);
249  ret = chunk_end(s, 0);
250 fail:
251  oc->streams = NULL;
252  oc->nb_streams = 0;
254  return ret;
255 }
256 
257 #define OFFSET(x) offsetof(WebMChunkContext, x)
258 static const AVOption options[] = {
259  { "chunk_start_index", "start index of the chunk", OFFSET(chunk_start_index), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
260  { "header", "filename of the header where the initialization data will be written", OFFSET(header_filename), AV_OPT_TYPE_STRING, { 0 }, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
261  { "audio_chunk_duration", "duration of each chunk in milliseconds", OFFSET(chunk_duration), AV_OPT_TYPE_INT, {.i64 = 5000}, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
262  { "method", "set the HTTP method", OFFSET(http_method), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, AV_OPT_FLAG_ENCODING_PARAM },
263  { NULL },
264 };
265 
266 #if CONFIG_WEBM_CHUNK_MUXER
267 static const AVClass webm_chunk_class = {
268  .class_name = "WebM Chunk Muxer",
269  .item_name = av_default_item_name,
270  .option = options,
271  .version = LIBAVUTIL_VERSION_INT,
272 };
273 
274 AVOutputFormat ff_webm_chunk_muxer = {
275  .name = "webm_chunk",
276  .long_name = NULL_IF_CONFIG_SMALL("WebM Chunk Muxer"),
277  .mime_type = "video/webm",
278  .extensions = "chk",
281  .priv_data_size = sizeof(WebMChunkContext),
285  .priv_class = &webm_chunk_class,
286 };
287 #endif
static void write_packet(OutputFile *of, AVPacket *pkt, OutputStream *ost, int unqueue)
Definition: ffmpeg.c:672
int(* io_open)(struct AVFormatContext *s, AVIOContext **pb, const char *url, int flags, AVDictionary **options)
Definition: avformat.h:1909
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:768
Bytestream IO Context.
Definition: avio.h:161
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
Buffered I/O operations.
AVIOInterruptCB interrupt_callback
Custom interrupt callbacks for the I/O layer.
Definition: avformat.h:1605
int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer)
Return the written size and a pointer to the buffer.
Definition: aviobuf.c:1341
AVOption.
Definition: opt.h:246
static void flush(AVCodecContext *avctx)
static int chunk_start(AVFormatContext *s)
Definition: webm_chunk.c:157
#define LIBAVUTIL_VERSION_INT
Definition: version.h:86
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4756
void av_opt_set_defaults(void *s)
Set the values of all AVOption fields to their default values.
Definition: opt.c:1291
AVFormatContext * avf
Definition: webm_chunk.c:57
uint64_t duration_written
Definition: webm_chunk.c:54
#define AVIO_FLAG_WRITE
write-only
Definition: avio.h:661
int av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
Copy entries from one AVDictionary struct into another.
Definition: dict.c:217
static AVPacket pkt
int avio_open_dyn_buf(AVIOContext **s)
Open a write only memory stream.
Definition: aviobuf.c:1312
char * http_method
Definition: webm_chunk.c:53
#define AVFMT_TS_NONSTRICT
Format does not require strictly increasing timestamps, but they must still be monotonic.
Definition: avformat.h:496
Format I/O context.
Definition: avformat.h:1349
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
static char buffer[20]
Definition: seek.c:32
uint8_t
AVOptions.
timestamp utils, mostly useful for debugging/logging purposes
void ff_format_io_close(AVFormatContext *s, AVIOContext **pb)
Definition: utils.c:5468
#define MAX_FILENAME_SIZE
Definition: webm_chunk.c:45
char * header_filename
Definition: webm_chunk.c:50
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1417
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:216
AVOutputFormat * oformat
Definition: webm_chunk.c:56
#define av_log(a,...)
#define AV_OPT_FLAG_ENCODING_PARAM
a generic parameter which can be set by the user for muxing or encoding
Definition: opt.h:276
struct AVOutputFormat * oformat
The output container format.
Definition: avformat.h:1368
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1711
int avformat_alloc_output_context2(AVFormatContext **ctx, AVOutputFormat *oformat, const char *format_name, const char *filename)
Allocate an AVFormatContext for an output format.
Definition: mux.c:148
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
static int get_chunk_filename(AVFormatContext *s, int is_header, char filename[MAX_FILENAME_SIZE])
Definition: webm_chunk.c:87
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
AVDictionary * metadata
Metadata that applies to the whole file.
Definition: avformat.h:1567
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
static const AVOption options[]
Definition: webm_chunk.c:258
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:181
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values. ...
Definition: dict.c:203
enum AVMediaType codec_type
General type of the encoded data.
Definition: avcodec.h:4148
int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
Definition: opt.c:558
static int chunk_mux_init(AVFormatContext *s)
Definition: webm_chunk.c:60
simple assert() macros that are a bit more flexible than ISO C assert().
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
Definition: avstring.c:83
#define fail()
Definition: checkasm.h:109
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1685
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1405
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:261
int(* write_header)(struct AVFormatContext *)
Definition: avformat.h:567
char filename[1024]
input or output filename
Definition: avformat.h:1425
static int write_trailer(AVFormatContext *s1)
Definition: v4l2enc.c:94
#define AVFMT_GLOBALHEADER
Format wants global header.
Definition: avformat.h:485
const char * name
Definition: avformat.h:524
#define OFFSET(x)
Definition: webm_chunk.c:257
static int webm_chunk_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: webm_chunk.c:205
AVOutputFormat * av_guess_format(const char *short_name, const char *filename, const char *mime_type)
Return the output format in the list of registered output formats which best matches the provided par...
Definition: format.c:98
const AVClass * priv_class
AVClass for the private context.
Definition: avformat.h:552
int av_get_frame_filename(char *buf, int buf_size, const char *path, int number)
Definition: utils.c:4631
Stream structure.
Definition: avformat.h:889
AVIOContext * pb
I/O context.
Definition: avformat.h:1391
static int webm_chunk_write_header(AVFormatContext *s)
Definition: webm_chunk.c:115
int(* write_trailer)(struct AVFormatContext *)
Definition: avformat.h:576
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:70
Describe the class of an AVClass context structure.
Definition: log.h:67
Rational number (pair of numerator and denominator).
Definition: rational.h:58
void avformat_free_context(AVFormatContext *s)
Free an AVFormatContext and all its streams.
Definition: utils.c:4318
misc parsing utilities
Main libavformat public API header.
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition: avformat.h:478
static int webm_chunk_write_trailer(AVFormatContext *s)
Definition: webm_chunk.c:237
#define av_free(p)
int len
void * priv_data
Format private data.
Definition: avformat.h:1377
static void write_header(FFV1Context *f)
Definition: ffv1enc.c:337
int(* write_packet)(struct AVFormatContext *, AVPacket *pkt)
Write a packet.
Definition: avformat.h:575
static int chunk_end(AVFormatContext *s, int flush)
Definition: webm_chunk.c:170
#define AVERROR_MUXER_NOT_FOUND
Muxer not found.
Definition: error.h:60
AVCodecParameters * codecpar
Definition: avformat.h:1252
int stream_index
Definition: avcodec.h:1681
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avformat.h:926
This structure stores compressed data.
Definition: avcodec.h:1656
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1672
#define AVFMT_NEEDNUMBER
Needs &#39;d&#39; in filename.
Definition: avformat.h:479