Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
7b9251f8
Commit
7b9251f8
authored
Jul 17, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: exporting with mp4a is no longer supported, so don't offer this choice to the user
parent
7d302c6b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
modules/gui/macosx/output.m
modules/gui/macosx/output.m
+1
-1
modules/gui/macosx/wizard.m
modules/gui/macosx/wizard.m
+4
-4
No files found.
modules/gui/macosx/output.m
View file @
7b9251f8
...
...
@@ -129,7 +129,7 @@
NSArray
*
o_v_bitrates
=
[
NSArray
arrayWithObjects
:
@"16"
,
@"32"
,
@"64"
,
@"96"
,
@"128"
,
@"192"
,
@"256"
,
@"384"
,
@"512"
,
@"768"
,
@"1024"
,
@"2048"
,
@"3072"
,
nil
];
NSArray
*
o_v_scales
=
[
NSArray
arrayWithObjects
:
@"0.25"
,
@"0.5"
,
@"0.75"
,
@"1"
,
@"1.25"
,
@"1.5"
,
@"1.75"
,
@"2"
,
nil
];
NSArray
*
o_a_codecs
=
[
NSArray
arrayWithObjects
:
@"mpga"
,
@"mp3 "
,
@"
mp4a"
,
@"a52 "
,
@"vorb"
,
@"flac"
,
@"spx "
,
nil
];
NSArray
*
o_a_codecs
=
[
NSArray
arrayWithObjects
:
@"mpga"
,
@"mp3 "
,
@"
a52 "
,
@"vorb"
,
@"flac"
,
@"spx "
,
nil
];
//@"mp4a"
NSArray
*
o_v_codecs
=
[
NSArray
arrayWithObjects
:
@"mp1v"
,
@"mp2v"
,
@"mp4v"
,
@"DIV1"
,
@"DIV2"
,
@"DIV3"
,
@"h263"
,
@"h264"
,
@"WMV1"
,
@"WMV2"
,
@"MJPG"
,
@"theo"
,
nil
];
...
...
modules/gui/macosx/wizard.m
View file @
7b9251f8
...
...
@@ -168,7 +168,7 @@ static VLCWizard *_o_sharedInstance = nil;
NSArray
*
o_mpga
;
NSArray
*
o_mp3
;
NSArray
*
o_mp4a
;
//
NSArray * o_mp4a;
NSArray
*
o_a52
;
NSArray
*
o_vorb
;
NSArray
*
o_flac
;
...
...
@@ -184,9 +184,9 @@ static VLCWizard *_o_sharedInstance = nil;
_NS
(
"MPEG Audio Layer 3 (useable with MPEG PS, MPEG TS, MPEG1, ASF, OGG "
"and RAW)"
),
@"MUX_PS"
,
@"MUX_TS"
,
@"MUX_MPEG"
,
@"MUX_ASF"
,
@"MUX_OGG"
,
@"MUX_RAW"
,
@"-1"
,
@"-1"
,
@"-1"
,
nil
];
o_mp4a
=
[
NSArray
arrayWithObjects
:
@"MPEG 4 Audio"
,
@"mp4a"
,
/*
o_mp4a = [NSArray arrayWithObjects: @"MPEG 4 Audio", @"mp4a",
_NS("Audio format for MPEG4 (useable with MPEG TS and MPEG4)"), @"MUX_TS",
@"MUX_MP4"
,
@"-1"
,
@"-1"
,
@"-1"
,
@"-1"
,
@"-1"
,
@"-1"
,
@"-1"
,
nil
];
@"MUX_MP4", @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", @"-1", nil];
*/
o_a52
=
[
NSArray
arrayWithObjects
:
@"A/52"
,
@"a52"
,
_NS
(
"DVD audio format (useable with MPEG PS, MPEG TS, MPEG1, ASF, OGG "
"and RAW)"
),
@"MUX_PS"
,
@"MUX_TS"
,
@"MUX_MPEG"
,
@"MUX_ASF"
,
@"MUX_OGG"
,
...
...
@@ -212,7 +212,7 @@ static VLCWizard *_o_sharedInstance = nil;
_NS
(
"Dummy codec (do not transcode, useable with all encapsulation "
"formats)"
),
@"MUX_PS"
,
@"MUX_TS"
,
@"MUX_MPEG"
,
@"MUX_ASF"
,
@"MUX_MP4"
,
@"MUX_OGG"
,
@"MUX_RAW"
,
@"MUX_MOV"
,
@"MUX_WAV"
,
nil
];
o_audioCodecs
=
[[
NSArray
alloc
]
initWithObjects
:
o_mpga
,
o_mp3
,
o_mp4a
,
o_audioCodecs
=
[[
NSArray
alloc
]
initWithObjects
:
o_mpga
,
o_mp3
,
//
o_mp4a,
o_a52
,
o_vorb
,
o_flac
,
o_spx
,
o_s16l
,
o_fl32
,
o_dummyAud
,
nil
];
...
...
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