[FFmpeg-cvslog] ra144enc: use int16_t* for input samples rather than void*
Justin Ruggles
git at videolan.org
Sun Feb 26 05:21:47 CET 2012
ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Wed Feb 22 13:35:38 2012 -0500| [4b7f8838e865bb2f803310ac2b27f9166309e4a0] | committer: Justin Ruggles
ra144enc: use int16_t* for input samples rather than void*
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4b7f8838e865bb2f803310ac2b27f9166309e4a0
---
libavcodec/ra144enc.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/libavcodec/ra144enc.c b/libavcodec/ra144enc.c
index 5977928..ff83169 100644
--- a/libavcodec/ra144enc.c
+++ b/libavcodec/ra144enc.c
@@ -441,6 +441,7 @@ static int ra144_encode_frame(AVCodecContext *avctx, uint8_t *frame,
int16_t block_coefs[NBLOCKS][LPC_ORDER];
int lpc_refl[LPC_ORDER]; /**< reflection coefficients of the frame */
unsigned int refl_rms[NBLOCKS]; /**< RMS of the reflection coefficients */
+ const int16_t *samples = data;
int energy = 0;
int i, idx;
@@ -515,7 +516,7 @@ static int ra144_encode_frame(AVCodecContext *avctx, uint8_t *frame,
ractx->lpc_refl_rms[1] = ractx->lpc_refl_rms[0];
FFSWAP(unsigned int *, ractx->lpc_coef[0], ractx->lpc_coef[1]);
for (i = 0; i < NBLOCKS * BLOCKSIZE; i++)
- ractx->curr_block[i] = *((int16_t *)data + i) >> 2;
+ ractx->curr_block[i] = samples[i] >> 2;
return FRAMESIZE;
}
More information about the ffmpeg-cvslog
mailing list