[FFmpeg-soc] [soc]: r3495 - mlp/mlpenc.c
ramiro
subversion at mplayerhq.hu
Thu Aug 21 00:10:35 CEST 2008
Author: ramiro
Date: Thu Aug 21 00:10:34 2008
New Revision: 3495
Log:
Revert previous commit.
For some reason the output filesize grows if this is unsigned int.
Modified:
mlp/mlpenc.c
Modified: mlp/mlpenc.c
==============================================================================
--- mlp/mlpenc.c (original)
+++ mlp/mlpenc.c Thu Aug 21 00:10:34 2008
@@ -46,7 +46,7 @@ typedef struct {
} RestartHeader;
typedef struct {
- unsigned int blocksize; ///< number of PCM samples in current audio block
+ uint16_t blocksize; ///< number of PCM samples in current audio block
uint8_t quant_step_size[MAX_CHANNELS]; ///< left shift to apply to Huffman-decoded residuals
uint8_t num_primitive_matrices; ///< number of matrices to apply
More information about the FFmpeg-soc
mailing list