summaryrefslogtreecommitdiff
path: root/src/libffmpeg/audio_decoder.c
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-18 20:29:03 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-18 20:29:03 +0000
commit800eff24a20af48b2f5109a0bf9f1da4bf2a2c14 (patch)
treea3dc27ec7b81d7f513e946803493ee4827bd1c5b /src/libffmpeg/audio_decoder.c
parent17e6b5f782e42b8a2477537436f49bc0040ce969 (diff)
downloadxine-lib-800eff24a20af48b2f5109a0bf9f1da4bf2a2c14.tar.gz
xine-lib-800eff24a20af48b2f5109a0bf9f1da4bf2a2c14.tar.bz2
Misc warnings fixes.
CVS patchset: 8055 CVS date: 2006/06/18 20:29:03
Diffstat (limited to 'src/libffmpeg/audio_decoder.c')
-rw-r--r--src/libffmpeg/audio_decoder.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libffmpeg/audio_decoder.c b/src/libffmpeg/audio_decoder.c
index 53e1415ee..a1a760100 100644
--- a/src/libffmpeg/audio_decoder.c
+++ b/src/libffmpeg/audio_decoder.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: audio_decoder.c,v 1.24 2006/04/21 23:22:04 dsalt Exp $
+ * $Id: audio_decoder.c,v 1.25 2006/06/18 20:29:04 dgp85 Exp $
*
* xine audio decoder plugin using ffmpeg
*
@@ -134,7 +134,8 @@ static void ff_audio_decode_data (audio_decoder_t *this_gen, buf_element_t *buf)
this->size += buf->size;
if (buf->decoder_flags & BUF_FLAG_FRAME_END) {
- int i, codec_type;
+ size_t i;
+ unsigned int codec_type;
xine_waveformatex *audio_header;
codec_type = buf->type & 0xFFFF0000;