Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2010-12-31 23:01:12 +0300
committerJustin Ruggles <justin.ruggles@gmail.com>2010-12-31 23:01:12 +0300
commitc05ffcd9baea8cd8720c2798e23bbf65199f2696 (patch)
tree12f1e773bb1f0390311e71fd7e9180eaf33a9c2e /libavcodec/ac3enc.c
parent32282b50eae0c2d762843b82c491ae66a2c909d3 (diff)
Change planar_samples from int16_t to SampleType.
This one was missed in r26174. Originally committed as revision 26179 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3enc.c')
-rw-r--r--libavcodec/ac3enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c
index 18b4dce917..f5ee9337b1 100644
--- a/libavcodec/ac3enc.c
+++ b/libavcodec/ac3enc.c
@@ -139,7 +139,7 @@ typedef struct AC3EncodeContext {
int mant1_cnt, mant2_cnt, mant4_cnt; ///< mantissa counts for bap=1,2,4
uint16_t *qmant1_ptr, *qmant2_ptr, *qmant4_ptr; ///< mantissa pointers for bap=1,2,4
- int16_t **planar_samples;
+ SampleType **planar_samples;
uint8_t *bap_buffer;
uint8_t *bap1_buffer;
CoefType *mdct_coef_buffer;