80static int ism_write(
void *opaque,
const uint8_t *buf,
int buf_size)
97 if (whence != SEEK_SET)
169 for (
i = 0;
i <
s->nb_streams;
i++) {
187 int removed = 0,
i, start = 0;
198 if (!
final || removed)
209 char filename[1024], temp_filename[1024];
210 int ret,
i, video_chunks = 0, audio_chunks = 0, video_streams = 0, audio_streams = 0;
213 snprintf(filename,
sizeof(filename),
"%s/Manifest",
s->url);
214 snprintf(temp_filename,
sizeof(temp_filename),
"%s/Manifest.tmp",
s->url);
221 for (
i = 0;
i <
s->nb_streams;
i++) {
237 video_chunks = audio_chunks = 0;
239 if (
c->window_size) {
240 video_chunks =
FFMIN(video_chunks,
c->window_size);
241 audio_chunks =
FFMIN(audio_chunks,
c->window_size);
243 avio_printf(
out,
"<SmoothStreamingMedia MajorVersion=\"2\" MinorVersion=\"0\" Duration=\"%"PRIu64
"\"",
duration);
245 avio_printf(
out,
" IsLive=\"true\" LookAheadFragmentCount=\"%d\" DVRWindowLength=\"0\"",
c->lookahead_count);
248 int last = -1,
index = 0;
249 avio_printf(
out,
"<StreamIndex Type=\"video\" QualityLevels=\"%d\" Chunks=\"%d\" Url=\"QualityLevels({bitrate})/Fragments(video={start time})\">\n", video_streams, video_chunks);
250 for (
i = 0;
i <
s->nb_streams;
i++) {
255 avio_printf(
out,
"<QualityLevel Index=\"%d\" Bitrate=\"%"PRId64
"\" FourCC=\"%s\" MaxWidth=\"%d\" MaxHeight=\"%d\" CodecPrivateData=\"%s\" />\n",
index,
s->streams[
i]->codecpar->bit_rate, os->
fourcc,
s->streams[
i]->codecpar->width,
s->streams[
i]->codecpar->height, os->
private_str);
262 int last = -1,
index = 0;
263 avio_printf(
out,
"<StreamIndex Type=\"audio\" QualityLevels=\"%d\" Chunks=\"%d\" Url=\"QualityLevels({bitrate})/Fragments(audio={start time})\">\n", audio_streams, audio_chunks);
264 for (
i = 0;
i <
s->nb_streams;
i++) {
269 avio_printf(
out,
"<QualityLevel Index=\"%d\" Bitrate=\"%"PRId64
"\" FourCC=\"%s\" SamplingRate=\"%d\" Channels=\"%d\" BitsPerSample=\"16\" PacketSize=\"%d\" AudioTag=\"%d\" CodecPrivateData=\"%s\" />\n",
270 index,
s->streams[
i]->codecpar->bit_rate, os->
fourcc,
s->streams[
i]->codecpar->sample_rate,
288 if (mkdir(
s->url, 0777) == -1 && errno != EEXIST) {
294 c->streams =
av_calloc(
s->nb_streams,
sizeof(*
c->streams));
299 for (
i = 0;
i <
s->nb_streams;
i++) {
305 if (!
s->streams[
i]->codecpar->bit_rate) {
313 if (mkdir(os->
dirname, 0777) == -1 && errno != EEXIST) {
326 ctx->interrupt_callback =
s->interrupt_callback;
380 if (!
c->has_video &&
c->min_frag_duration <= 0) {
400 if (*moof_size < 8 || *moof_size >
size)
405 if (
len > *moof_size)
419 if (
tag ==
MKTAG(
'u',
'u',
'i',
'd')) {
420 static const AVUUID tfxd = {
421 0x6d, 0x1d, 0x9b, 0x05, 0x42, 0xd5, 0x44, 0xe6,
422 0x80, 0xe2, 0x14, 0x1d, 0xaf, 0xf7, 0x57, 0xb2
501 for (
i = 0;
i <
s->nb_streams;
i++) {
503 char filename[1024], target_filename[1024], header_filename[1024], curr_dirname[1024];
525 if (!
s->streams[
i]->codecpar->bit_rate) {
534 s->streams[
i]->codecpar->bit_rate =
bitrate;
546 copy_moof(
s, filename, header_filename, moof_size);
547 ret =
ff_rename(filename, target_filename,
s);
554 if (
c->window_size || (
final &&
c->remove_at_exit)) {
555 for (
i = 0;
i <
s->nb_streams;
i++) {
558 int remove = os->
nb_fragments -
c->window_size -
c->extra_window_size -
c->lookahead_count;
559 if (
final &&
c->remove_at_exit)
562 for (j = 0; j < remove; j++) {
570 if (
final &&
c->remove_at_exit)
611 if (
c->remove_at_exit) {
613 snprintf(filename,
sizeof(filename),
"%s/Manifest",
s->url);
621#define OFFSET(x) offsetof(SmoothStreamingContext, x)
622#define E AV_OPT_FLAG_ENCODING_PARAM
624 {
"window_size",
"number of fragments kept in the manifest",
OFFSET(window_size),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
E },
625 {
"extra_window_size",
"number of fragments kept outside of the manifest before removing from disk",
OFFSET(extra_window_size),
AV_OPT_TYPE_INT, { .i64 = 5 }, 0, INT_MAX,
E },
626 {
"lookahead_count",
"number of lookahead fragments",
OFFSET(lookahead_count),
AV_OPT_TYPE_INT, { .i64 = 2 }, 0, INT_MAX,
E },
627 {
"min_frag_duration",
"minimum fragment duration (in microseconds)",
OFFSET(min_frag_duration),
AV_OPT_TYPE_INT64, { .i64 = 5000000 }, 0, INT_MAX,
E },
628 {
"remove_at_exit",
"remove all fragments when finished",
OFFSET(remove_at_exit),
AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1,
E },
633 .class_name =
"smooth streaming muxer",
641 .p.name =
"smoothstreaming",
static AVFormatContext * ctx
static AVDictionary * opts
int ff_avc_write_annexb_extradata(const uint8_t *in, uint8_t **buf, int *size)
int ffurl_open_whitelist(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist, URLContext *parent)
Create an URLContext for accessing to the resource indicated by url, and open it.
int ffurl_closep(URLContext **hh)
Close the resource accessed by the URLContext h, and free the memory used by it.
int ff_rename(const char *url_src, const char *url_dst, void *logctx)
Wrap ffurl_move() and log if error happens.
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
uint64_t avio_rb64(AVIOContext *s)
#define AVIO_FLAG_READ
read-only
#define AVIO_FLAG_WRITE
write-only
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
int avio_printf(AVIOContext *s, const char *fmt,...) av_printf_format(2
Writes a formatted string to the context.
AVIOContext * avio_alloc_context(unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, const uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
Allocate and initialize an AVIOContext for buffered I/O.
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
unsigned int avio_rl32(AVIOContext *s)
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
void avio_context_free(AVIOContext **s)
Free the supplied IO context and everything associated with it.
void avio_flush(AVIOContext *s)
Force flushing of buffered data.
unsigned int avio_rb32(AVIOContext *s)
static void BS_FUNC skip(BSCTX *bc, unsigned int n)
Skip n bits in the buffer.
#define i(width, name, range_min, range_max)
static void deinit(AVFormatContext *s)
int avcodec_parameters_copy(AVCodecParameters *dst, const AVCodecParameters *src)
static int write_packet(Muxer *mux, OutputStream *ost, AVPacket *pkt)
static int64_t start_time
static void write_header(FFV1Context *f)
@ AV_OPT_TYPE_INT64
Underlying C type is int64_t.
@ AV_OPT_TYPE_INT
Underlying C type is int.
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
AVFormatContext * avformat_alloc_context(void)
Allocate an AVFormatContext.
void avformat_free_context(AVFormatContext *s)
Free an AVFormatContext and all its streams.
av_warn_unused_result int avformat_write_header(AVFormatContext *s, AVDictionary **options)
Allocate the stream private data and write the stream header to an output media file.
int av_write_frame(AVFormatContext *s, AVPacket *pkt)
Write a packet to an output media file.
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags)
Convenience wrapper for av_dict_set() that converts the value to a string and stores it.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
const char * av_default_item_name(void *ptr)
Return the context name.
int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b)
Compare two timestamps each in its own time base.
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
int av_reallocp_array(void *ptr, size_t nmemb, size_t size)
Allocate, reallocate an array through a pointer to a pointer.
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.
#define AV_NOPTS_VALUE
Undefined timestamp value.
#define AV_TIME_BASE
Internal time base represented as integer.
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
#define LIBAVUTIL_VERSION_INT
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
#define MKTAG(a, b, c, d)
void * av_calloc(size_t nmemb, size_t size)
Memory handling functions.
miscellaneous OS support macros and functions.
static const AVClass ism_class
static void output_chunk_list(OutputStream *os, AVIOContext *out, int final, int skip, int window_size)
static int copy_moof(AVFormatContext *s, const char *infile, const char *outfile, int64_t size)
static int ism_flush(AVFormatContext *s, int final)
static int ism_write_packet(AVFormatContext *s, AVPacket *pkt)
static int parse_fragment(AVFormatContext *s, const char *filename, int64_t *start_ts, int64_t *duration, int64_t *moof_size, int64_t size)
static int add_fragment(OutputStream *os, const char *file, const char *infofile, int64_t start_time, int64_t duration, int64_t start_pos, int64_t size)
static int ism_write(void *opaque, const uint8_t *buf, int buf_size)
static void get_private_data(OutputStream *os)
static int64_t ism_seek(void *opaque, int64_t offset, int whence)
static void ism_free(AVFormatContext *s)
static int ism_write_trailer(AVFormatContext *s)
static int write_manifest(AVFormatContext *s, int final)
static int ism_write_header(AVFormatContext *s)
Describe the class of an AVClass context structure.
This struct describes the properties of an encoded stream.
int extradata_size
Size of the extradata content in bytes.
enum AVMediaType codec_type
General type of the encoded data.
int block_align
The number of bytes per coded audio frame, required by some formats.
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
AVIOContext * pb
I/O context.
AVIOInterruptCB interrupt_callback
Custom interrupt callbacks for the I/O layer.
AVStream ** streams
A list of all streams in the file.
char * protocol_whitelist
',' separated list of allowed protocols.
char * protocol_blacklist
',' separated list of disallowed protocols.
This structure stores compressed data.
AVCodecParameters * codecpar
Codec parameters associated with this stream.
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown)
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
int64_t first_dts
Timestamp corresponding to the last dts sync point.
atomic_uint_least64_t packets_written
const char * stream_type_tag
unbuffered private I/O API
static int64_t ffurl_seek(URLContext *h, int64_t pos, int whence)
Change the position that will be used by the next read/write operation on the resource accessed by h.
static int ffurl_write(URLContext *h, const uint8_t *buf, int size)
Write size bytes from buf to the resource accessed by h.
UUID parsing and serialization utilities.
static int av_uuid_equal(const AVUUID uu1, const AVUUID uu2)
Compares two UUIDs for equality.
uint8_t AVUUID[AV_UUID_LEN]
static int write_trailer(AVFormatContext *s1)