source: vendor/google/apiclient-services/src/Transcoder/H264CodecSettings.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 7.0 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Transcoder;
19
20class H264CodecSettings extends \Google\Model
21{
22 /**
23 * @var bool
24 */
25 public $allowOpenGop;
26 public $aqStrength;
27 /**
28 * @var int
29 */
30 public $bFrameCount;
31 /**
32 * @var bool
33 */
34 public $bPyramid;
35 /**
36 * @var int
37 */
38 public $bitrateBps;
39 /**
40 * @var int
41 */
42 public $crfLevel;
43 /**
44 * @var bool
45 */
46 public $enableTwoPass;
47 /**
48 * @var string
49 */
50 public $entropyCoder;
51 public $frameRate;
52 /**
53 * @var string
54 */
55 public $frameRateConversionStrategy;
56 /**
57 * @var string
58 */
59 public $gopDuration;
60 /**
61 * @var int
62 */
63 public $gopFrameCount;
64 /**
65 * @var int
66 */
67 public $heightPixels;
68 protected $hlgType = H264ColorFormatHLG::class;
69 protected $hlgDataType = '';
70 /**
71 * @var string
72 */
73 public $pixelFormat;
74 /**
75 * @var string
76 */
77 public $preset;
78 /**
79 * @var string
80 */
81 public $profile;
82 /**
83 * @var string
84 */
85 public $rateControlMode;
86 protected $sdrType = H264ColorFormatSDR::class;
87 protected $sdrDataType = '';
88 /**
89 * @var string
90 */
91 public $tune;
92 /**
93 * @var int
94 */
95 public $vbvFullnessBits;
96 /**
97 * @var int
98 */
99 public $vbvSizeBits;
100 /**
101 * @var int
102 */
103 public $widthPixels;
104
105 /**
106 * @param bool
107 */
108 public function setAllowOpenGop($allowOpenGop)
109 {
110 $this->allowOpenGop = $allowOpenGop;
111 }
112 /**
113 * @return bool
114 */
115 public function getAllowOpenGop()
116 {
117 return $this->allowOpenGop;
118 }
119 public function setAqStrength($aqStrength)
120 {
121 $this->aqStrength = $aqStrength;
122 }
123 public function getAqStrength()
124 {
125 return $this->aqStrength;
126 }
127 /**
128 * @param int
129 */
130 public function setBFrameCount($bFrameCount)
131 {
132 $this->bFrameCount = $bFrameCount;
133 }
134 /**
135 * @return int
136 */
137 public function getBFrameCount()
138 {
139 return $this->bFrameCount;
140 }
141 /**
142 * @param bool
143 */
144 public function setBPyramid($bPyramid)
145 {
146 $this->bPyramid = $bPyramid;
147 }
148 /**
149 * @return bool
150 */
151 public function getBPyramid()
152 {
153 return $this->bPyramid;
154 }
155 /**
156 * @param int
157 */
158 public function setBitrateBps($bitrateBps)
159 {
160 $this->bitrateBps = $bitrateBps;
161 }
162 /**
163 * @return int
164 */
165 public function getBitrateBps()
166 {
167 return $this->bitrateBps;
168 }
169 /**
170 * @param int
171 */
172 public function setCrfLevel($crfLevel)
173 {
174 $this->crfLevel = $crfLevel;
175 }
176 /**
177 * @return int
178 */
179 public function getCrfLevel()
180 {
181 return $this->crfLevel;
182 }
183 /**
184 * @param bool
185 */
186 public function setEnableTwoPass($enableTwoPass)
187 {
188 $this->enableTwoPass = $enableTwoPass;
189 }
190 /**
191 * @return bool
192 */
193 public function getEnableTwoPass()
194 {
195 return $this->enableTwoPass;
196 }
197 /**
198 * @param string
199 */
200 public function setEntropyCoder($entropyCoder)
201 {
202 $this->entropyCoder = $entropyCoder;
203 }
204 /**
205 * @return string
206 */
207 public function getEntropyCoder()
208 {
209 return $this->entropyCoder;
210 }
211 public function setFrameRate($frameRate)
212 {
213 $this->frameRate = $frameRate;
214 }
215 public function getFrameRate()
216 {
217 return $this->frameRate;
218 }
219 /**
220 * @param string
221 */
222 public function setFrameRateConversionStrategy($frameRateConversionStrategy)
223 {
224 $this->frameRateConversionStrategy = $frameRateConversionStrategy;
225 }
226 /**
227 * @return string
228 */
229 public function getFrameRateConversionStrategy()
230 {
231 return $this->frameRateConversionStrategy;
232 }
233 /**
234 * @param string
235 */
236 public function setGopDuration($gopDuration)
237 {
238 $this->gopDuration = $gopDuration;
239 }
240 /**
241 * @return string
242 */
243 public function getGopDuration()
244 {
245 return $this->gopDuration;
246 }
247 /**
248 * @param int
249 */
250 public function setGopFrameCount($gopFrameCount)
251 {
252 $this->gopFrameCount = $gopFrameCount;
253 }
254 /**
255 * @return int
256 */
257 public function getGopFrameCount()
258 {
259 return $this->gopFrameCount;
260 }
261 /**
262 * @param int
263 */
264 public function setHeightPixels($heightPixels)
265 {
266 $this->heightPixels = $heightPixels;
267 }
268 /**
269 * @return int
270 */
271 public function getHeightPixels()
272 {
273 return $this->heightPixels;
274 }
275 /**
276 * @param H264ColorFormatHLG
277 */
278 public function setHlg(H264ColorFormatHLG $hlg)
279 {
280 $this->hlg = $hlg;
281 }
282 /**
283 * @return H264ColorFormatHLG
284 */
285 public function getHlg()
286 {
287 return $this->hlg;
288 }
289 /**
290 * @param string
291 */
292 public function setPixelFormat($pixelFormat)
293 {
294 $this->pixelFormat = $pixelFormat;
295 }
296 /**
297 * @return string
298 */
299 public function getPixelFormat()
300 {
301 return $this->pixelFormat;
302 }
303 /**
304 * @param string
305 */
306 public function setPreset($preset)
307 {
308 $this->preset = $preset;
309 }
310 /**
311 * @return string
312 */
313 public function getPreset()
314 {
315 return $this->preset;
316 }
317 /**
318 * @param string
319 */
320 public function setProfile($profile)
321 {
322 $this->profile = $profile;
323 }
324 /**
325 * @return string
326 */
327 public function getProfile()
328 {
329 return $this->profile;
330 }
331 /**
332 * @param string
333 */
334 public function setRateControlMode($rateControlMode)
335 {
336 $this->rateControlMode = $rateControlMode;
337 }
338 /**
339 * @return string
340 */
341 public function getRateControlMode()
342 {
343 return $this->rateControlMode;
344 }
345 /**
346 * @param H264ColorFormatSDR
347 */
348 public function setSdr(H264ColorFormatSDR $sdr)
349 {
350 $this->sdr = $sdr;
351 }
352 /**
353 * @return H264ColorFormatSDR
354 */
355 public function getSdr()
356 {
357 return $this->sdr;
358 }
359 /**
360 * @param string
361 */
362 public function setTune($tune)
363 {
364 $this->tune = $tune;
365 }
366 /**
367 * @return string
368 */
369 public function getTune()
370 {
371 return $this->tune;
372 }
373 /**
374 * @param int
375 */
376 public function setVbvFullnessBits($vbvFullnessBits)
377 {
378 $this->vbvFullnessBits = $vbvFullnessBits;
379 }
380 /**
381 * @return int
382 */
383 public function getVbvFullnessBits()
384 {
385 return $this->vbvFullnessBits;
386 }
387 /**
388 * @param int
389 */
390 public function setVbvSizeBits($vbvSizeBits)
391 {
392 $this->vbvSizeBits = $vbvSizeBits;
393 }
394 /**
395 * @return int
396 */
397 public function getVbvSizeBits()
398 {
399 return $this->vbvSizeBits;
400 }
401 /**
402 * @param int
403 */
404 public function setWidthPixels($widthPixels)
405 {
406 $this->widthPixels = $widthPixels;
407 }
408 /**
409 * @return int
410 */
411 public function getWidthPixels()
412 {
413 return $this->widthPixels;
414 }
415}
416
417// Adding a class alias for backwards compatibility with the previous class name.
418class_alias(H264CodecSettings::class, 'Google_Service_Transcoder_H264CodecSettings');
Note: See TracBrowser for help on using the repository browser.