summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2004-06-13 13:23:58 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2004-06-13 13:23:58 +0000
commit549885f14a9220ed68c55c55f6a6f9f15b8bb34d (patch)
treee7033bd2fa65f45fce4d66b982d83280bedc6a14
parente75a4e58b8d44e6c2e1cfb7ab2649f98c7204685 (diff)
downloadxine-lib-549885f14a9220ed68c55c55f6a6f9f15b8bb34d.tar.gz
xine-lib-549885f14a9220ed68c55c55f6a6f9f15b8bb34d.tar.bz2
fix ffmpeg warnings
CVS patchset: 6681 CVS date: 2004/06/13 13:23:58
-rw-r--r--src/libffmpeg/libavcodec/flac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libffmpeg/libavcodec/flac.c b/src/libffmpeg/libavcodec/flac.c
index 382082627..464d7999d 100644
--- a/src/libffmpeg/libavcodec/flac.c
+++ b/src/libffmpeg/libavcodec/flac.c
@@ -565,8 +565,8 @@ static int flac_decode_frame(AVCodecContext *avctx,
{
FLACContext *s = avctx->priv_data;
int metadata_last, metadata_type, metadata_size;
- int tmp = 0, i, j = 0, input_buf_size;
- int16_t *samples = data, *left, *right;
+ int tmp = 0, i, j = 0, input_buf_size = 0;
+ int16_t *samples = data;
if(s->max_framesize == 0){
s->max_framesize= 8192; // should hopefully be enough for the first header