[alsa-devel] [PATCH] tinycompress: compress: use int for samples in compress_get_tstamp

Vinod Koul vinod.koul at intel.com
Mon Feb 17 18:28:18 CET 2014


in 64bit updates we made the sample rate as 32bit explicitly, so update the
library API as well

Signed-off-by: Vinod Koul <vinod.koul at intel.com>
---
 compress.c                          |    2 +-
 include/tinycompress/tinycompress.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/compress.c b/compress.c
index d1a2283..15dfdb7 100644
--- a/compress.c
+++ b/compress.c
@@ -333,7 +333,7 @@ int compress_get_hpointer(struct compress *compress,
 }
 
 int compress_get_tstamp(struct compress *compress,
-			unsigned long *samples, unsigned int *sampling_rate)
+			unsigned int *samples, unsigned int *sampling_rate)
 {
 	struct snd_compr_tstamp ktstamp;
 
diff --git a/include/tinycompress/tinycompress.h b/include/tinycompress/tinycompress.h
index e340cca..03c396f 100644
--- a/include/tinycompress/tinycompress.h
+++ b/include/tinycompress/tinycompress.h
@@ -125,7 +125,7 @@ int compress_get_hpointer(struct compress *compress,
  * @sampling_rate: sampling rate of decoded samples
  */
 int compress_get_tstamp(struct compress *compress,
-		unsigned long *samples, unsigned int *sampling_rate);
+		unsigned int *samples, unsigned int *sampling_rate);
 
 /*
  * compress_write: write data to the compress stream
-- 
1.7.0.4



More information about the Alsa-devel mailing list