Commit 0c6141b5 authored by Laurent Aimar's avatar Laurent Aimar

* mp4.c: for mp3 in mp4a we need an ESDS.

parent ca7c3287
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mp4.c: mp4/mov muxer * mp4.c: mp4/mov muxer
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002, 2003 VideoLAN * Copyright (C) 2001, 2002, 2003 VideoLAN
* $Id: mp4.c,v 1.15 2004/02/21 23:15:52 gbazin Exp $ * $Id$
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin at videolan dot org> * Gildas Bazin <gbazin at videolan dot org>
...@@ -411,7 +411,10 @@ static bo_t *GetSounBox( sout_mux_t *p_mux, mp4_stream_t *p_stream ) ...@@ -411,7 +411,10 @@ static bo_t *GetSounBox( sout_mux_t *p_mux, mp4_stream_t *p_stream )
if( p_sys->b_mov ) if( p_sys->b_mov )
memcpy( fcc, ".mp3", 4 ); memcpy( fcc, ".mp3", 4 );
else else
{
memcpy( fcc, "mp4a", 4 ); memcpy( fcc, "mp4a", 4 );
b_descr = VLC_TRUE;
}
break; break;
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment