]> git.sesse.net Git - cubemap/blob - NEWS
Open up for C++11.
[cubemap] / NEWS
1 Cubemap 1.3.2, 2017-05-24
2
3   * Fix a bug where streams with paths exactly seven characters long
4     (e.g. “/abc.ts”) would get broken buffering behavior, as they would
5     start at the start of the backlog, not the end as they should.
6     This caused massively increased latency and/or problems playing back
7     the streams properly.
8
9
10 Cubemap 1.3.1, 2016-07-23
11
12   * Support Metacube timestamp blocks. This allows Metacube producers
13     to add timestamps at arbitrary places between blocks, which,
14     provided that the system clocks on both sides are in sync, allows
15     Cubemap to produce a latency measure. If the latency is very high
16     (and/or keeps going up), you will know that the network has problems
17     keeping up with transporting the stream, even in the absence of
18     other error messages.
19
20     At the time of release, only Nageru adds timestamp blocks;
21     VLC does not.
22
23
24 Cubemap 1.3.0, 2016-07-14
25
26   * Add an option for raw (non-Metacube) inputs over HTTP
27     (src_encoding=raw). Only really useful for TS.
28
29   * If a HTTP input fails multiple times, silence it in the error log
30     for the next minute. This reduces the amount of logging for a
31     permanently dead input stream by a lot, although of course,
32     such streams should generally just be removed from the
33     configuration altogether.
34
35
36 Cubemap 1.2.2, 2016-04-02
37
38   * Fix literal IPv6 address parsing in URLs.
39
40   * Fix a bug (introduced in 1.2.0) where access.log would have monotonic
41     timestamps (typically time since boot) instead of real time.
42
43   * Increase the Metacube block size warning limit from 1MB to 10MB, as MP4
44     muxing can legitimately create huge blocks.
45
46
47 Cubemap 1.2.1, 2015-08-30
48
49   * Use libsystemd to inform systemd accurately about when the service is up
50     and running. Note that this means Cubemap now also depends on libsystemd.
51
52   * Add a simple HTTP endpoint that returns a very short string (gen204),
53     for timing purposes.
54
55   * Document config options better in cubemap.config.sample.
56  
57
58 Cubemap 1.2.0, 2015-07-24
59
60   * Add support for server-side prebuffering (force_prebuffering=NNN
61     on a stream to prebuffer that amount of bytes), where Cubemap doesn't
62     send any data before it knows it can send a certain number of
63     bytes without waiting for more from the input (either through
64     giving out old data, waiting for new data, or a combination).
65
66     This is useful when using jwPlayer or <video> in browsers, where
67     the client typically does not wait to fill up its buffer before it
68     starts playing, and thus will stay perenially in a low-buffer state.
69     Effectively it is forcing a certain amount of buffering on the client.
70
71   * Log the client's Referer: and User-Agent: header in the stats file and
72     access log.
73
74   * Time out clients that go more than 60 seconds without sending a request;
75     they could hang in that state for days and months before.
76
77
78 Cubemap 1.1.2, 2014-07-07
79
80   * Remove some leftover debug code that would cause compile errors.
81
82
83 Cubemap 1.1.1, 2014-07-06
84
85   * Fix parsing of IPv6 SSM URLs. Also add an example to the
86     configuration file.
87
88   * Change the default backlog size to 10 MB.
89
90
91 Cubemap 1.1.0, 2014-04-30
92
93   * Multicast support, both for sending and receiving;
94     both IPv4 and IPv6, both ASM and SSM.
95
96   * Drop support for fwmark, since it is obsolete with sch_fq
97     around.
98
99   * Many smaller bugfixes.
100
101
102 Cubemap 1.0.4, 2014-03-23
103
104   * Fix a segfault on reload that was introduced in 1.0.2.
105
106   * Remove the Metacube VLC patch, as it is now upstream.
107
108   * Always compile with large file support, which works around
109     a blocking issue with 32-bit x86.
110
111
112 Cubemap 1.0.3, 2014-02-06
113
114   * Fix a compilation error with newer glibc.
115
116
117 Cubemap 1.0.2, 2014-02-04
118
119  * Support SO_MAX_PACING_RATE (Linux 3.13 and above).
120
121  * Add a listen statement to listen only on specific IP addresses,
122    in addition to the port statement.
123
124  * Update the VLC Metacube patch to apply to current VLC git.
125
126  * Fix a crash bug on reload.
127
128  * Be more consistent about handling streams that have no data yet.
129    In particular, this could show itself as erratic behavior when
130    sending Metacube streams on to other Cubemap instances.
131
132
133 Cubemap 1.0.1, 2013-09-19
134
135  * Added NEWS file.
136
137  * Fix an issue where Cubemap could be slow when /tmp was slow
138    (ie., not on SSD and not on tmpfs), due to high mutex contention.
139
140  * Fix compilation on 32-bit systems.
141
142  * Various packaging fixes and a systemd service unit, contributed
143    by Philipp Kern.
144
145  * Use the new deleted-by-default temporary files if available
146    (Linux 3.11 and above).
147
148
149 Cubemap 1.0.0, 2013-08-24
150
151  * Initial release.