Commit 9a1b736f authored by Laurent Aimar's avatar Laurent Aimar

* ffmpeg support mace 3/6 audio codec. (quicktime)

parent ebc06c09
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* ffmpeg.c: video decoder using ffmpeg library * ffmpeg.c: video decoder using ffmpeg library
***************************************************************************** *****************************************************************************
* Copyright (C) 1999-2001 VideoLAN * Copyright (C) 1999-2001 VideoLAN
* $Id: ffmpeg.c,v 1.25 2003/02/20 01:52:46 sigmunau Exp $ * $Id: ffmpeg.c,v 1.26 2003/03/11 05:52:37 fenrir Exp $
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
...@@ -521,6 +521,16 @@ static int ffmpeg_GetFfmpegCodec( vlc_fourcc_t i_fourcc, ...@@ -521,6 +521,16 @@ static int ffmpeg_GetFfmpegCodec( vlc_fourcc_t i_fourcc,
break; break;
#if LIBAVCODEC_BUILD >= 4655 #if LIBAVCODEC_BUILD >= 4655
case FOURCC_MAC3:
i_cat = AUDIO_ES;
i_codec = CODEC_ID_MACE3;
psz_name = "MACE-3 audio";
break;
case FOURCC_MAC6:
i_cat = AUDIO_ES;
i_codec = CODEC_ID_MACE6;
psz_name = "MACE-6 audio";
break;
case FOURCC_dvau: case FOURCC_dvau:
i_cat = AUDIO_ES; i_cat = AUDIO_ES;
i_codec = CODEC_ID_DVAUDIO; i_codec = CODEC_ID_DVAUDIO;
......
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