diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2010-12-31 20:01:12 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2010-12-31 20:01:12 +0000 |
commit | c05ffcd9baea8cd8720c2798e23bbf65199f2696 (patch) | |
tree | 12f1e773bb1f0390311e71fd7e9180eaf33a9c2e | |
parent | 32282b50eae0c2d762843b82c491ae66a2c909d3 (diff) | |
download | ffmpeg-c05ffcd9baea8cd8720c2798e23bbf65199f2696.tar.gz |
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
-rw-r--r-- | libavcodec/ac3enc.c | 2 |
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; |