Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
9a1b736f
Commit
9a1b736f
authored
Mar 11, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ffmpeg support mace 3/6 audio codec. (quicktime)
parent
ebc06c09
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
35 deletions
+45
-35
modules/codec/ffmpeg/ffmpeg.c
modules/codec/ffmpeg/ffmpeg.c
+45
-35
No files found.
modules/codec/ffmpeg/ffmpeg.c
View file @
9a1b736f
...
...
@@ -2,7 +2,7 @@
* ffmpeg.c: video decoder using ffmpeg library
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: ffmpeg.c,v 1.2
5 2003/02/20 01:52:46 sigmunau
Exp $
* $Id: ffmpeg.c,v 1.2
6 2003/03/11 05:52:37 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -521,6 +521,16 @@ static int ffmpeg_GetFfmpegCodec( vlc_fourcc_t i_fourcc,
break
;
#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
:
i_cat
=
AUDIO_ES
;
i_codec
=
CODEC_ID_DVAUDIO
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment