Skip to content

Commit

Permalink
finalize changelog v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
x42 committed Dec 23, 2016
1 parent f941978 commit 4573310
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2016-12-23 (v1.3.0) Robin Gareus <[email protected]>
* fix potential offset overflow (user provided relative position)
* further improve MSVC compatibility (-infinity)
* fix self-test for windows (binary file i/o)
* add link examples and bindings/wrapper code to documentation
* documentation spelling fixes

2015-11-26 (v1.2.0) Robin Gareus <[email protected]>
* support older MSVC without C99
* fix endianess detection (gcc-4.4 compat)
Expand Down
4 changes: 2 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
libltc (1.2.0-1) unstable; urgency=low
libltc (1.3.0-1) unstable; urgency=low

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

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

libltc (1.0.1-1) unstable; urgency=low

Expand Down
6 changes: 3 additions & 3 deletions doc/man/man3/ltc.h.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "ltc.h" 3 "Thu Nov 26 2015" "Version 1.2.0" "libltc" \" -*- nroff -*-
.TH "ltc.h" 3 "Fri Dec 23 2016" "Version 1.3.0" "libltc" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down Expand Up @@ -361,7 +361,7 @@ unsigned int \fIuser8:4\fP
.PP
Extended LTC frame - includes audio-sample position offsets, volume, etc
.PP
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\&.
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\&.
.PP
\fBoff_start\fP denotes the time of the first transition of bit 0 in the LTC frame\&.
.PP
Expand Down Expand Up @@ -939,7 +939,7 @@ Set the volume of the generated LTC signal
.PP
typically LTC is sent at 0dBu ; in EBU callibrated systems that corresponds to \-18dBFS\&. - by default libltc creates \-3dBFS
.PP
since libltc generated 8bit audio-data, the minium dBFS is about \-42dB which corresponds to 1 bit\&.
since libltc generated 8bit audio-data, the minimum dBFS is about \-42dB which corresponds to 1 bit\&.
.PP
0dB corresponds to a signal range of 127 1\&.\&.255 with 128 at the center\&.
.PP
Expand Down
6 changes: 3 additions & 3 deletions src/ltc.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,16 @@ extern "C" {

#ifndef DOXYGEN_IGNORE
/* libltc version */
#define LIBLTC_VERSION "1.2.0"
#define LIBLTC_VERSION "1.3.0"
#define LIBLTC_VERSION_MAJOR 1
#define LIBLTC_VERSION_MINOR 2
#define LIBLTC_VERSION_MINOR 3
#define LIBLTC_VERSION_MICRO 0

/* interface revision number
* http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
*/
#define LIBLTC_CUR 11
#define LIBLTC_REV 4
#define LIBLTC_REV 5
#define LIBLTC_AGE 0
#endif /* end DOXYGEN_IGNORE */

Expand Down

0 comments on commit 4573310

Please sign in to comment.