diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-01-14 00:01:05 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-07-01 18:35:15 +0200 |
commit | aa1cceb5eb7866d42d05ce22d97b06c620af18cb (patch) | |
tree | 6ca923946d25e24659b227123f4a8a3cf0ca04d0 /libavformat | |
parent | 3bee286ad280059e5aaf07d8f8a45f61964d5d79 (diff) | |
download | ffmpeg-streaming-aa1cceb5eb7866d42d05ce22d97b06c620af18cb.zip ffmpeg-streaming-aa1cceb5eb7866d42d05ce22d97b06c620af18cb.tar.gz |
lavf/segment: rename variable "size" to "list_size"
The new name is more meaningful/less confusing.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/segment.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/segment.c b/libavformat/segment.c index 4480e4d..a6ddf90 100644 --- a/libavformat/segment.c +++ b/libavformat/segment.c @@ -36,8 +36,8 @@ typedef struct { AVFormatContext *avf; char *format; /**< Set by a private option. */ char *list; /**< Set by a private option. */ + int list_size; /**< 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; @@ -217,7 +217,7 @@ 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->size && !(seg->number % seg->size)) { + if (seg->list_size && !(seg->number % seg->list_size)) { avio_close(seg->pb); if ((ret = avio_open2(&seg->pb, seg->list, AVIO_FLAG_WRITE, &s->interrupt_callback, NULL)) < 0) @@ -259,7 +259,7 @@ static const AVOption options[] = { { "segment_format", "container format used for the segments", OFFSET(format), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E }, { "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_list_size", "maximum number of playlist entries", OFFSET(list_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 }, }; |