From ed5ec90442b4dda3918372b43072205fb4ea6167 Mon Sep 17 00:00:00 2001 From: Andreas Heinchen Date: Tue, 15 Apr 2003 23:54:40 +0000 Subject: fix ac3 in ogm CVS patchset: 4617 CVS date: 2003/04/15 23:54:40 --- src/demuxers/demux_ogg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c index 66bb3eaee..d39544bdf 100644 --- a/src/demuxers/demux_ogg.c +++ b/src/demuxers/demux_ogg.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_ogg.c,v 1.79 2003/04/15 03:41:23 heinchen Exp $ + * $Id: demux_ogg.c,v 1.80 2003/04/15 23:54:40 heinchen Exp $ * * demultiplexer for ogg streams * @@ -611,7 +611,7 @@ static void demux_ogg_send_header (demux_ogg_t *this) { memcpy(str, &locsubtype, 4); str[4] = 0; - codec = atoi(str); + codec = strtoul(str, NULL, 16); channel= this->num_audio_streams++; -- cgit v1.2.3