All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.transcoder.v1.model.BwdifConfig Maven / Gradle / Ivy

/*
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
/*
 * This code was generated by https://github.com/googleapis/google-api-java-client-services/
 * Modify at your own risk.
 */

package com.google.api.services.transcoder.v1.model;

/**
 * Bob Weaver Deinterlacing Filter Configuration.
 *
 * 

This is the Java data model class that specifies how to parse/serialize into the JSON that is * transmitted over HTTP when working with the Transcoder API. For a detailed explanation see: * https://developers.google.com/api-client-library/java/google-http-java-client/json *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class BwdifConfig extends com.google.api.client.json.GenericJson { /** * Deinterlace all frames rather than just the frames identified as interlaced. The default is * `false`. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean deinterlaceAllFrames; /** * Specifies the deinterlacing mode to adopt. The default is `send_frame`. Supported values: - * `send_frame`: Output one frame for each frame - `send_field`: Output one frame for each field * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String mode; /** * The picture field parity assumed for the input interlaced video. The default is `auto`. * Supported values: - `tff`: Assume the top field is first - `bff`: Assume the bottom field is * first - `auto`: Enable automatic detection of field parity * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String parity; /** * Deinterlace all frames rather than just the frames identified as interlaced. The default is * `false`. * @return value or {@code null} for none */ public java.lang.Boolean getDeinterlaceAllFrames() { return deinterlaceAllFrames; } /** * Deinterlace all frames rather than just the frames identified as interlaced. The default is * `false`. * @param deinterlaceAllFrames deinterlaceAllFrames or {@code null} for none */ public BwdifConfig setDeinterlaceAllFrames(java.lang.Boolean deinterlaceAllFrames) { this.deinterlaceAllFrames = deinterlaceAllFrames; return this; } /** * Specifies the deinterlacing mode to adopt. The default is `send_frame`. Supported values: - * `send_frame`: Output one frame for each frame - `send_field`: Output one frame for each field * @return value or {@code null} for none */ public java.lang.String getMode() { return mode; } /** * Specifies the deinterlacing mode to adopt. The default is `send_frame`. Supported values: - * `send_frame`: Output one frame for each frame - `send_field`: Output one frame for each field * @param mode mode or {@code null} for none */ public BwdifConfig setMode(java.lang.String mode) { this.mode = mode; return this; } /** * The picture field parity assumed for the input interlaced video. The default is `auto`. * Supported values: - `tff`: Assume the top field is first - `bff`: Assume the bottom field is * first - `auto`: Enable automatic detection of field parity * @return value or {@code null} for none */ public java.lang.String getParity() { return parity; } /** * The picture field parity assumed for the input interlaced video. The default is `auto`. * Supported values: - `tff`: Assume the top field is first - `bff`: Assume the bottom field is * first - `auto`: Enable automatic detection of field parity * @param parity parity or {@code null} for none */ public BwdifConfig setParity(java.lang.String parity) { this.parity = parity; return this; } @Override public BwdifConfig set(String fieldName, Object value) { return (BwdifConfig) super.set(fieldName, value); } @Override public BwdifConfig clone() { return (BwdifConfig) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy