Skip to content

Commit 4573310

Browse files
committed
finalize changelog v1.3.0
1 parent f941978 commit 4573310

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

ChangeLog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2016-12-23 (v1.3.0) Robin Gareus <[email protected]>
2+
* fix potential offset overflow (user provided relative position)
3+
* further improve MSVC compatibility (-infinity)
4+
* fix self-test for windows (binary file i/o)
5+
* add link examples and bindings/wrapper code to documentation
6+
* documentation spelling fixes
7+
18
2015-11-26 (v1.2.0) Robin Gareus <[email protected]>
29
* support older MSVC without C99
310
* fix endianess detection (gcc-4.4 compat)

debian/changelog

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
libltc (1.2.0-1) unstable; urgency=low
1+
libltc (1.3.0-1) unstable; urgency=low
22

33
* Robin's private package. see ../ChangeLog
44
* official debian package at
55
http://anonscm.debian.org/gitweb/?p=pkg-multimedia/libltc.git
66

7-
-- Robin Gareus <[email protected]> Thu, 26 Nov 2015 21:41:27 +0100
7+
-- Robin Gareus <[email protected]> Fri, 23 Dec 2016 04:46:09 +0100
88

99
libltc (1.0.1-1) unstable; urgency=low
1010

doc/man/man3/ltc.h.3

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "ltc.h" 3 "Thu Nov 26 2015" "Version 1.2.0" "libltc" \" -*- nroff -*-
1+
.TH "ltc.h" 3 "Fri Dec 23 2016" "Version 1.3.0" "libltc" \" -*- nroff -*-
22
.ad l
33
.nh
44
.SH NAME
@@ -361,7 +361,7 @@ unsigned int \fIuser8:4\fP
361361
.PP
362362
Extended LTC frame - includes audio-sample position offsets, volume, etc
363363
.PP
364-
Note: For TV systems, the sample in the LTC audio data stream where the LTC Frame starts is not neccesarily at the same time as the video-frame which is described by the LTC Frame\&.
364+
Note: For TV systems, the sample in the LTC audio data stream where the LTC Frame starts is not necessarily at the same time as the video-frame which is described by the LTC Frame\&.
365365
.PP
366366
\fBoff_start\fP denotes the time of the first transition of bit 0 in the LTC frame\&.
367367
.PP
@@ -939,7 +939,7 @@ Set the volume of the generated LTC signal
939939
.PP
940940
typically LTC is sent at 0dBu ; in EBU callibrated systems that corresponds to \-18dBFS\&. - by default libltc creates \-3dBFS
941941
.PP
942-
since libltc generated 8bit audio-data, the minium dBFS is about \-42dB which corresponds to 1 bit\&.
942+
since libltc generated 8bit audio-data, the minimum dBFS is about \-42dB which corresponds to 1 bit\&.
943943
.PP
944944
0dB corresponds to a signal range of 127 1\&.\&.255 with 128 at the center\&.
945945
.PP

src/ltc.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,16 +63,16 @@ extern "C" {
6363

6464
#ifndef DOXYGEN_IGNORE
6565
/* libltc version */
66-
#define LIBLTC_VERSION "1.2.0"
66+
#define LIBLTC_VERSION "1.3.0"
6767
#define LIBLTC_VERSION_MAJOR 1
68-
#define LIBLTC_VERSION_MINOR 2
68+
#define LIBLTC_VERSION_MINOR 3
6969
#define LIBLTC_VERSION_MICRO 0
7070

7171
/* interface revision number
7272
* http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
7373
*/
7474
#define LIBLTC_CUR 11
75-
#define LIBLTC_REV 4
75+
#define LIBLTC_REV 5
7676
#define LIBLTC_AGE 0
7777
#endif /* end DOXYGEN_IGNORE */
7878

0 commit comments

Comments
 (0)