[vlc-devel] commit: Added 'mp3 ' fourcc to record. (Laurent Aimar )
git version control
git at videolan.org
Sat Jul 11 21:25:44 CEST 2009
vlc | branch: 1.0-bugfix | Laurent Aimar <fenrir at videolan.org> | Sat Jul 11 21:17:56 2009 +0200| [f73b15f5102ebd2405ecc0d53ee8863cf0907d61] | committer: Laurent Aimar
Added 'mp3 ' fourcc to record.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f73b15f5102ebd2405ecc0d53ee8863cf0907d61
---
modules/stream_out/record.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/stream_out/record.c b/modules/stream_out/record.c
index e7ca29d..ca68231 100644
--- a/modules/stream_out/record.c
+++ b/modules/stream_out/record.c
@@ -267,7 +267,7 @@ typedef struct
* Do not do non native and non standard association !
* Muxer will be probe if no entry found */
static const muxer_properties_t p_muxers[] = {
- M( "raw", "mp3", 1, VLC_FOURCC('m','p','g','a') ),
+ M( "raw", "mp3", 1, VLC_FOURCC('m','p','g','a'), VLC_FOURCC('m','p','3',' ') ),
M( "raw", "a52", 1, VLC_FOURCC('a','5','2',' ') ),
M( "raw", "dts", 1, VLC_FOURCC('d','t','s',' ') ),
M( "raw", "mpc", 1, VLC_FOURCC('m','p','c',' ') ),
@@ -290,13 +290,13 @@ static const muxer_properties_t p_muxers[] = {
VLC_FOURCC('s','u','b','t') ),
M( "ps", "mpg", 16/* FIXME*/,VLC_FOURCC('m','p','g','v'), VLC_FOURCC('m','p','1','v'), VLC_FOURCC('m','p','2','v'),
- VLC_FOURCC('m','p','g','a'), VLC_FOURCC('l','p','c','m'), VLC_FOURCC('a','5','2',' '),
+ VLC_FOURCC('m','p','g','a'), VLC_FOURCC('m','p','3',' '), VLC_FOURCC('l','p','c','m'), VLC_FOURCC('a','5','2',' '),
VLC_FOURCC('d','t','s',' '),
VLC_FOURCC('s','p','u',' ') ),
M( "ts", "ts", 8000, VLC_FOURCC('m','p','g','v'), VLC_FOURCC('m','p','1','v'), VLC_FOURCC('m','p','2','v'),
VLC_FOURCC('h','2','6','4'),
- VLC_FOURCC('m','p','g','a'), VLC_FOURCC('l','p','c','m'), VLC_FOURCC('a','5','2',' '),
+ VLC_FOURCC('m','p','g','a'), VLC_FOURCC('m','p','3',' '), VLC_FOURCC('l','p','c','m'), VLC_FOURCC('a','5','2',' '),
VLC_FOURCC('d','t','s',' '), VLC_FOURCC('m','p','4','a'),
VLC_FOURCC('d','v','b','s'), VLC_FOURCC('t','e','l','x') ),
More information about the vlc-devel
mailing list