Skip to content

Commit 968a1d6

Browse files
committed
finalize changelog v1.1.2
1 parent 186fc47 commit 968a1d6

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

Diff for: ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2013-09-06 (v1.1.2) Robin Gareus <[email protected]>
2+
* better BIG_ENDIAN detection (should fix mips, sparc, s390 builds)
3+
* fix decoder_write_u16() -- use unsigned short
4+
* allow to use buffersizes larger than 1024 samples with ltc_decoder_write_*
5+
16
2012-11-18 (v1.1.1) Robin Gareus <[email protected]>
27
* start LTC frame with rising edge
38
* fix typo in variable name and clarify documentation

Diff for: debian/changelog

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
libltc (1.1.1-1) unstable; urgency=low
1+
libltc (1.1.2-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]> Sun, 18 Nov 2012 04:42:46 +0100
7+
-- Robin Gareus <[email protected]> Fri, 06 Sep 2013 12:49:52 +0200
88

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

Diff for: doc/man/man3/ltc.h.3

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "ltc.h" 3 "Sun Nov 18 2012" "Version 1.1.1" "libltc" \" -*- nroff -*-
1+
.TH "ltc.h" 3 "Fri Sep 6 2013" "Version 1.1.2" "libltc" \" -*- nroff -*-
22
.ad l
33
.nh
44
.SH NAME
@@ -26,6 +26,9 @@ libltc - en+decode linear timecode
2626

2727
.in +1c
2828
.ti -1c
29+
.RI "#define \fBLTC_BIG_ENDIAN\fP"
30+
.br
31+
.ti -1c
2932
.RI "#define \fBLTC_FRAME_BIT_COUNT\fP 80"
3033
.br
3134
.in -1c
@@ -98,7 +101,7 @@ libltc - en+decode linear timecode
98101
.RI "void \fBltc_decoder_write_s16\fP (\fBLTCDecoder\fP *d, short *buf, size_t size, \fBltc_off_t\fP posinfo)"
99102
.br
100103
.ti -1c
101-
.RI "void \fBltc_decoder_write_u16\fP (\fBLTCDecoder\fP *d, short *buf, size_t size, \fBltc_off_t\fP posinfo)"
104+
.RI "void \fBltc_decoder_write_u16\fP (\fBLTCDecoder\fP *d, unsigned short *buf, size_t size, \fBltc_off_t\fP posinfo)"
102105
.br
103106
.ti -1c
104107
.RI "int \fBltc_decoder_read\fP (\fBLTCDecoder\fP *d, \fBLTCFrameExt\fP *frame)"
@@ -438,6 +441,8 @@ unsigned char \fIyears\fP LTC-date uses 2-digit year 00\&.99\&.
438441
.PP
439442
.SH "Macro Definition Documentation"
440443
.PP
444+
.SS "#define LTC_BIG_ENDIAN"
445+
441446
.SS "#define LTC_FRAME_BIT_COUNT 80"
442447

443448
.SH "Typedef Documentation"
@@ -621,7 +626,7 @@ Wrapper around \fBltc_decoder_write\fP that accepts signed 16 bit audio samples\
621626
.RE
622627
.PP
623628

624-
.SS "void ltc_decoder_write_u16 (\fBLTCDecoder\fP * d, short * buf, size_t size, \fBltc_off_t\fP posinfo)"
629+
.SS "void ltc_decoder_write_u16 (\fBLTCDecoder\fP * d, unsigned short * buf, size_t size, \fBltc_off_t\fP posinfo)"
625630
Wrapper around \fBltc_decoder_write\fP that accepts unsigned 16 bit audio samples\&. Note: internally libltc uses 8 bit only\&.
626631
.PP
627632
\fBParameters:\fP

Diff for: src/ltc.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,16 @@ extern "C" {
5656

5757
#ifndef DOXYGEN_IGNORE
5858
/* libltc version */
59-
#define LIBLTC_VERSION "1.1.1"
59+
#define LIBLTC_VERSION "1.1.2"
6060
#define LIBLTC_VERSION_MAJOR 1
6161
#define LIBLTC_VERSION_MINOR 1
62-
#define LIBLTC_VERSION_MICRO 1
62+
#define LIBLTC_VERSION_MICRO 2
6363

6464
/* interface revision number
6565
* http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
6666
*/
6767
#define LIBLTC_CUR 11
68-
#define LIBLTC_REV 1
68+
#define LIBLTC_REV 2
6969
#define LIBLTC_AGE 0
7070
#endif /* end DOXYGEN_IGNORE */
7171

0 commit comments

Comments
 (0)