diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-02-23 12:16:28 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-02-23 12:16:28 +0100 |
commit | 23c9180c001cbb71dc7e50837435babb94271d07 (patch) | |
tree | 4b1bbbb8ac271966de84373611b60e0389205c42 | |
parent | cfcab4c50747c2f9ab248bff537058d6d0037e6b (diff) | |
download | ffmpeg-23c9180c001cbb71dc7e50837435babb94271d07.tar.gz |
aacdec: Fix warning: initialization from incompatible pointer type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/aacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index 87cb48ad65..9b5a4094ca 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -2627,7 +2627,7 @@ static int aac_decode_frame_int(AVCodecContext *avctx, void *data, if (multiplier) { int side_size; - uint32_t *side = av_packet_get_side_data(avpkt, AV_PKT_DATA_SKIP_SAMPLES, &side_size); + const uint8_t *side = av_packet_get_side_data(avpkt, AV_PKT_DATA_SKIP_SAMPLES, &side_size); if (side && side_size>=4) AV_WL32(side, 2*AV_RL32(side)); } |