]> git.alsa-project.org Git - tinycompress.git/commitdiff
tinycompress: version 0.1.0 v0.1.0
authorVinod Koul <vinod.koul@intel.com>
Sun, 24 Feb 2013 14:22:21 +0000 (19:52 +0530)
committerVinod Koul <vinod.koul@intel.com>
Sun, 24 Feb 2013 14:29:05 +0000 (19:59 +0530)
First version release of tinycompress library

dc06a66 tinycompress: version 0.1.0
10fef72 tinycompres: remove unused variable
e0810c0 tinycompress: add gapless meta data APIs
8f18a69 cplay: support auto-configuration of fragment size and count
495e5b4 compress: Add makefile for building under standard linux
d815993 compress: Add missing header includes
bb2650a compress: Block if unable to write all data in single write()
acc0960 compress: Allow client to pass "don't care" for fragment size/number
e24adce compress: Handle case of pause() during compress_write()
83f0278 compress: Remove hardcoded limit on length of poll() wait
f9f3d07 compress: Fix incorrect error message on compress_resume()
14af3b0 compress: Change running from bitfield to plain int
eb63cc9 compress: Remove unused buffer_size member from struct compress
21663cc compress: Change compress_write() to take buffer as const void *
0d20d8b compress: Add function to get timestamp in samples
0931870 compress: fix arithmetic exception in compress_get_hpointer
00732dc compress: cache the config values passed
2a455ef compress: remove unused variables
7191a18 compress: make variable 'running' as unsigned
dca2963 compress: Do not put newlines on error messages
24a91e3 compress: Return error messages correctly from compress_open
590afad compress: Return error when failing to allocate compress struct
30b28ff compress: Extend limit on error messages
bbb37bb compress: add compress_resume
cf2e8d4 compress: write when we have a fragment to write
5d5a573 compress: fix the timestamp calculation
55b29e9 initial creation

Signed-off-by: Vinod Koul <vinod.koul@intel.com>
include/tinycompress/version.h

index db191d66c2f8274da0901eb9fd098df411c206fa..795fe77d09b9bfb3b8eaf3ab99286959348f27f9 100644 (file)
@@ -55,8 +55,8 @@
 
 
 #define TINYCOMPRESS_LIB_MAJOR         0 /* major number of library version */
-#define TINYCOMPRESS_LIB_MINOR         0 /* minor number of library version */
-#define TINYCOMPRESS_LIB_SUBMINOR      2 /* subminor number of library version */
+#define TINYCOMPRESS_LIB_MINOR         1 /* minor number of library version */
+#define TINYCOMPRESS_LIB_SUBMINOR      0 /* subminor number of library version */
 
 /** library version */
 #define TINYCOMPRESS_LIB_VERSION \
@@ -65,6 +65,6 @@
                  TINYCOMPRESS_LIB_SUBMINOR)
 
 /** library version (string) */
-#define TINYCOMPRESS_LIB_VERSION_STR   "0.0.2"
+#define TINYCOMPRESS_LIB_VERSION_STR   "0.1.0"
 
 #endif