This repository has been archived by the owner on Jul 30, 2022. It is now read-only.
mirrored from https://chromium.googlesource.com/webm/webmquicktime
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathWebMExportGui.c
193 lines (145 loc) · 5.85 KB
/
WebMExportGui.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
// Copyright (c) 2010 The WebM project authors. All Rights Reserved.
//
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file in the root of the source
// tree. An additional intellectual property rights grant can be found
// in the file PATENTS. All contributing project authors may
// be found in the AUTHORS file in the root of the source tree.
#include "WebMExportStructs.h"
#include "WebMExportGui.h"
#if defined(__APPLE_CC__)
#include <QuickTime/QuickTime.h>
#else
#include <QuickTimeComponents.h>
#endif
#include "bundle_info.h"
#include "log.h"
#include "WebMExportVersions.h"
ComponentResult getWindow(WindowRef *window)
{
ComponentResult err = noErr;
CFBundleRef bundle = NULL;
IBNibRef nibRef = NULL;
bundle = CFBundleGetBundleWithIdentifier(CFSTR(kWebmBundleId));
if (bundle == NULL)
{
dbg_printf("[WebM] Error :: CFBundleGetBundleWithIdentifier\n");
err = readErr;
goto bail;
}
err = CreateNibReferenceWithCFBundle(bundle, CFSTR("WebMExport"), &nibRef);
if (err)
{
dbg_printf("[WebM] >> Error :: CreateNibReferenceWithCFBundle\n");
goto bail;
}
err = CreateWindowFromNib(nibRef, CFSTR("Settings"), window);
if (err)
{
dbg_printf("[WebM] >> Error :: CreateWindowFromNib\n");
goto bail;
}
bail:
if (nibRef)
DisposeNibReference(nibRef);
return err;
}
static void _EnableControl(ControlRef *id, Boolean enable)
{
if (enable)
EnableControl(*id);
else
DisableControl(*id);
}
ComponentResult enableDisableControls(WebMExportGlobalsPtr globals, WindowRef window)
{
ControlRef checkBoxControl, settingsControl;
ControlID audioCheckboxID = {'WebM', 6}, videoCheckboxID = {'WebM', 5};
ControlID audioSettingsID = {'WebM', 4}, videoSettingsID = {'WebM', 3};
ControlID twoPassID = {'WebM', 7}, metaDataID = {'WebM', 8};
dbg_printf("[WebM] enableDisableControls -- bMovieHasAudio %d, bMovieHasVideo %d, bExportAudio %d, bExportVideo %d\n",
globals->bMovieHasAudio, globals->bMovieHasVideo, globals->bExportAudio, globals->bExportVideo);
GetControlByID(window, &videoCheckboxID, &checkBoxControl);
GetControlByID(window, &videoSettingsID, &settingsControl);
SetControl32BitValue(checkBoxControl, globals->bExportVideo && globals->bMovieHasVideo);
_EnableControl(&checkBoxControl, globals->bMovieHasVideo);
_EnableControl(&settingsControl, globals->bExportVideo && globals->bMovieHasVideo);
GetControlByID(window, &audioCheckboxID, &checkBoxControl);
GetControlByID(window, &audioSettingsID, &settingsControl);
SetControl32BitValue(checkBoxControl, globals->bExportAudio && globals->bMovieHasAudio);
_EnableControl(&checkBoxControl, globals->bMovieHasAudio);
_EnableControl(&settingsControl, globals->bExportAudio && globals->bMovieHasAudio);
GetControlByID(window, &twoPassID, &checkBoxControl);
_EnableControl(&checkBoxControl, globals->bExportVideo && globals->bMovieHasVideo);
}
ComponentResult checkMovieHasVideoAudio(WebMExportGlobalsPtr globals, Movie theMovie, Track onlyThisTrack)
{
if (theMovie == NULL)
return;
if (onlyThisTrack == NULL)
{
Track vt = GetMovieIndTrackType(theMovie, 1, VisualMediaCharacteristic, movieTrackCharacteristic | movieTrackEnabledOnly);
globals->bMovieHasVideo = vt != NULL;
Track at = GetMovieIndTrackType(theMovie, 1, AudioMediaCharacteristic, movieTrackCharacteristic | movieTrackEnabledOnly);
globals->bMovieHasAudio = at != NULL;
}
else
{
MediaHandler mh = GetMediaHandler(GetTrackMedia(onlyThisTrack));
Boolean has_char = false;
MediaHasCharacteristic(mh, VisualMediaCharacteristic, &globals->bMovieHasVideo);
MediaHasCharacteristic(mh, AudioMediaCharacteristic, &globals->bMovieHasAudio);
}
return noErr;
}
pascal OSStatus SettingsWindowEventHandler(EventHandlerCallRef inHandler, EventRef inEvent, void *inUserData)
{
WindowRef window = NULL;
HICommand command;
OSStatus rval = eventNotHandledErr;
WebMExportGlobalsPtr globals = (WebMExportGlobalsPtr) inUserData;
dbg_printf("[WebM] >> [%08lx] :: SettingsWindowEventHandler()\n", (UInt32) globals);
window = ActiveNonFloatingWindow();
if (window == NULL)
goto bail;
GetEventParameter(inEvent, kEventParamDirectObject, typeHICommand, NULL, sizeof(HICommand), NULL, &command);
dbg_printf("[WebM] | [%08lx] :: SettingsWindowEventHandler('%4.4s')\n", (UInt32) globals, (char *) &command.commandID);
switch (command.commandID)
{
case kHICommandOK:
globals->canceled = false;
QuitAppModalLoopForWindow(window);
rval = noErr;
break;
case kHICommandCancel:
globals->canceled = true;
QuitAppModalLoopForWindow(window);
rval = noErr;
break;
case 'WMvs': //Video Settings
rval = OpenVP8Dlg(globals, window);
if (rval == userCanceledErr || rval == scUserCancelled)
rval = noErr; // User cancelling is ok.
break;
case 'WMas': // Audio Settings
rval = OpenVorbisDlg(globals, window);
if (rval == userCanceledErr || rval == scUserCancelled)
rval = noErr;
break;
case 'WMac': //Enable Audio CheckBoxk
globals->bExportAudio = !globals->bExportAudio;
enableDisableControls(globals, window);
rval = noErr;
break;
case 'WMvc': //Enable Video CheckBoxk
globals->bExportVideo = !globals->bExportVideo;
enableDisableControls(globals, window);
rval = noErr;
break;
default:
break;
}
bail:
dbg_printf("[WebM] < [%08lx] :: SettingsWindowEventHandler() = 0x%08lx\n", (UInt32) globals, rval);
return rval;
}