Skip to content

Commit

Permalink
finalize changelog v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
x42 committed Sep 6, 2013
1 parent 186fc47 commit 968a1d6
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2013-09-06 (v1.1.2) Robin Gareus <[email protected]>
* better BIG_ENDIAN detection (should fix mips, sparc, s390 builds)
* fix decoder_write_u16() -- use unsigned short
* allow to use buffersizes larger than 1024 samples with ltc_decoder_write_*

2012-11-18 (v1.1.1) Robin Gareus <[email protected]>
* start LTC frame with rising edge
* fix typo in variable name and clarify documentation
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.1.1-1) unstable; urgency=low
libltc (1.1.2-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]> Sun, 18 Nov 2012 04:42:46 +0100
-- Robin Gareus <[email protected]> Fri, 06 Sep 2013 12:49:52 +0200

libltc (1.0.1-1) unstable; urgency=low

Expand Down
11 changes: 8 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 "Sun Nov 18 2012" "Version 1.1.1" "libltc" \" -*- nroff -*-
.TH "ltc.h" 3 "Fri Sep 6 2013" "Version 1.1.2" "libltc" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Expand Down Expand Up @@ -26,6 +26,9 @@ libltc - en+decode linear timecode

.in +1c
.ti -1c
.RI "#define \fBLTC_BIG_ENDIAN\fP"
.br
.ti -1c
.RI "#define \fBLTC_FRAME_BIT_COUNT\fP 80"
.br
.in -1c
Expand Down Expand Up @@ -98,7 +101,7 @@ libltc - en+decode linear timecode
.RI "void \fBltc_decoder_write_s16\fP (\fBLTCDecoder\fP *d, short *buf, size_t size, \fBltc_off_t\fP posinfo)"
.br
.ti -1c
.RI "void \fBltc_decoder_write_u16\fP (\fBLTCDecoder\fP *d, short *buf, size_t size, \fBltc_off_t\fP posinfo)"
.RI "void \fBltc_decoder_write_u16\fP (\fBLTCDecoder\fP *d, unsigned short *buf, size_t size, \fBltc_off_t\fP posinfo)"
.br
.ti -1c
.RI "int \fBltc_decoder_read\fP (\fBLTCDecoder\fP *d, \fBLTCFrameExt\fP *frame)"
Expand Down Expand Up @@ -438,6 +441,8 @@ unsigned char \fIyears\fP LTC-date uses 2-digit year 00\&.99\&.
.PP
.SH "Macro Definition Documentation"
.PP
.SS "#define LTC_BIG_ENDIAN"

.SS "#define LTC_FRAME_BIT_COUNT 80"

.SH "Typedef Documentation"
Expand Down Expand Up @@ -621,7 +626,7 @@ Wrapper around \fBltc_decoder_write\fP that accepts signed 16 bit audio samples\
.RE
.PP

.SS "void ltc_decoder_write_u16 (\fBLTCDecoder\fP * d, short * buf, size_t size, \fBltc_off_t\fP posinfo)"
.SS "void ltc_decoder_write_u16 (\fBLTCDecoder\fP * d, unsigned short * buf, size_t size, \fBltc_off_t\fP posinfo)"
Wrapper around \fBltc_decoder_write\fP that accepts unsigned 16 bit audio samples\&. Note: internally libltc uses 8 bit only\&.
.PP
\fBParameters:\fP
Expand Down
6 changes: 3 additions & 3 deletions src/ltc.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@ extern "C" {

#ifndef DOXYGEN_IGNORE
/* libltc version */
#define LIBLTC_VERSION "1.1.1"
#define LIBLTC_VERSION "1.1.2"
#define LIBLTC_VERSION_MAJOR 1
#define LIBLTC_VERSION_MINOR 1
#define LIBLTC_VERSION_MICRO 1
#define LIBLTC_VERSION_MICRO 2

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

Expand Down

0 comments on commit 968a1d6

Please sign in to comment.