summaryrefslogtreecommitdiff
path: root/libavformat/segment.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2012-02-25 21:45:23 +0100
committerLuca Barbato <lu_zero@gentoo.org>2012-02-28 15:01:20 +0100
commit0c1759ac4b1ff8f0305dab4f244fa929b77a6fab (patch)
treef8b42ee381b6488c4a7ad5a67b8517d15fdd7009 /libavformat/segment.c
parentee42df8a35c2b795f524c856834d0823dbd4e75d (diff)
segment: implement wrap around
Provide a way to wrap around the segment index so pseudostreaming live through a web server and html5 browser is simpler. Also ensure that 0 (disable) is a valid value across the options providing wrap around.
Diffstat (limited to 'libavformat/segment.c')
-rw-r--r--libavformat/segment.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/libavformat/segment.c b/libavformat/segment.c
index 89ae62d312..1af412ad53 100644
--- a/libavformat/segment.c
+++ b/libavformat/segment.c
@@ -39,6 +39,7 @@ typedef struct {
char *list; /**< Set by a private option. */
float time; /**< Set by a private option. */
int size; /**< Set by a private option. */
+ int wrap; /**< Set by a private option. */
int64_t offset_time;
int64_t recording_time;
int has_video;
@@ -51,6 +52,9 @@ static int segment_start(AVFormatContext *s)
AVFormatContext *oc = c->avf;
int err = 0;
+ if (c->wrap)
+ c->number %= c->wrap;
+
if (av_get_frame_filename(oc->filename, sizeof(oc->filename),
s->filename, c->number++) < 0)
return AVERROR(EINVAL);
@@ -206,12 +210,11 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
if (seg->list) {
avio_printf(seg->pb, "%s\n", oc->filename);
avio_flush(seg->pb);
- if (!(seg->number % seg->size)) {
+ if (seg->size && !(seg->number % seg->size)) {
avio_close(seg->pb);
if ((ret = avio_open2(&seg->pb, seg->list, AVIO_FLAG_WRITE,
&s->interrupt_callback, NULL)) < 0)
goto fail;
-
}
}
}
@@ -250,6 +253,7 @@ static const AVOption options[] = {
{ "segment_time", "segment length in seconds", OFFSET(time), AV_OPT_TYPE_FLOAT, {.dbl = 2}, 0, FLT_MAX, E },
{ "segment_list", "output the segment list", OFFSET(list), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E },
{ "segment_list_size", "maximum number of playlist entries", OFFSET(size), AV_OPT_TYPE_INT, {.dbl = 5}, 0, INT_MAX, E },
+ { "segment_wrap", "number after which the index wraps", OFFSET(wrap), AV_OPT_TYPE_INT, {.dbl = 0}, 0, INT_MAX, E },
{ NULL },
};