summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-03-29 16:21:48 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-03-29 16:21:48 +0000
commit25ab6844cf166b2549889796edbfd4950a1a795a (patch)
tree35ec8cb5c45070d67b1f4269c722cc3e62f8df96 /src
parent7b3a83b54ea83066cffc6169d5ecf2d24959c5c5 (diff)
downloadxine-lib-25ab6844cf166b2549889796edbfd4950a1a795a.tar.gz
xine-lib-25ab6844cf166b2549889796edbfd4950a1a795a.tar.bz2
Bitrate has to be 32-bit, or it overruns.
CVS patchset: 8756 CVS date: 2007/03/29 16:21:48
Diffstat (limited to 'src')
-rw-r--r--src/demuxers/demux_mpgaudio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/demuxers/demux_mpgaudio.c b/src/demuxers/demux_mpgaudio.c
index 29a0de95b..a60c14271 100644
--- a/src/demuxers/demux_mpgaudio.c
+++ b/src/demuxers/demux_mpgaudio.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: demux_mpgaudio.c,v 1.154 2007/03/29 16:01:30 dgp85 Exp $
+ * $Id: demux_mpgaudio.c,v 1.155 2007/03/29 16:21:48 dgp85 Exp $
*
* demultiplexer for mpeg audio (i.e. mp3) streams
*
@@ -38,9 +38,9 @@
#define LOG_MODULE "demux_mpeg_audio"
#define LOG_VERBOSE
-/*
+
#define LOG
-*/
+
#include "xine_internal.h"
#include "xineutils.h"
#include "demux.h"
@@ -81,8 +81,8 @@ typedef struct {
/* header */
double duration;
uint32_t size; /* in bytes */
+ uint32_t bitrate; /* in bit per second */
uint16_t freq; /* in Hz */
- uint16_t bitrate; /* in bit per second */
uint8_t layer;