summaryrefslogtreecommitdiff
path: root/libavcodec/8svx.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-06-01 01:33:00 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-06-01 02:32:00 +0200
commit03ce421c1361e4ce79468de8269ad51ba2ae4c16 (patch)
treead5673107ce0fbdef92788a7e37fffcb46847c5d /libavcodec/8svx.c
parent59352cc219c4f933c9a83b45043ec4810c2a51ee (diff)
downloadffmpeg-03ce421c1361e4ce79468de8269ad51ba2ae4c16.tar.gz
8svx: fix crash
Fixes Ticket1377 Found-by: Piotr Bandurski <ami_stuff@o2.pl> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/8svx.c')
-rw-r--r--libavcodec/8svx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/8svx.c b/libavcodec/8svx.c
index f42a35b20b..e220ad13cc 100644
--- a/libavcodec/8svx.c
+++ b/libavcodec/8svx.c
@@ -47,7 +47,7 @@ typedef struct EightSvxContext {
/* buffer used to store the whole audio decoded/interleaved chunk,
* which is sent with the first packet */
uint8_t *samples;
- size_t samples_size;
+ int64_t samples_size;
int samples_idx;
} EightSvxContext;