[FFmpeg-soc] [soc]: r5117 - als/alsdec.c

thilo.borgmann subversion at mplayerhq.hu
Sat Aug 15 13:23:38 CEST 2009


Author: thilo.borgmann
Date: Sat Aug 15 13:23:37 2009
New Revision: 5117

Log:
Change type of js_blocks to unsigned int.

Modified:
   als/alsdec.c

Modified: als/alsdec.c
==============================================================================
--- als/alsdec.c	Sat Aug 15 13:22:00 2009	(r5116)
+++ als/alsdec.c	Sat Aug 15 13:23:37 2009	(r5117)
@@ -463,7 +463,7 @@ static void reconstruct_block_sizes(ALSD
  */
 static int read_block_data(ALSDecContext *ctx, unsigned int ra_block,
                             int64_t *raw_samples, unsigned int block_length,
-                            uint32_t *js_blocks, int64_t *raw_other)
+                            unsigned int *js_blocks, int64_t *raw_other)
 {
     ALSSpecificConfig *sconf = &ctx->sconf;
     AVCodecContext *avctx    = ctx->avctx;
@@ -738,7 +738,7 @@ static int read_frame_data(ALSDecContext
     unsigned int c, b, ra_block;
     int64_t *raw_samples_L;
     int64_t *raw_samples_R;
-    uint32_t js_blocks[2];
+    unsigned int js_blocks[2];
 
     uint32_t bs_info = 0;
     unsigned int *ptr_div_blocks;


More information about the FFmpeg-soc mailing list