/*
 * This file is auto-generated.  DO NOT MODIFY.
 * Using: out/host/linux-x86/bin/aidl --lang=java -Weverything -Wno-missing-permission-annotation --min_sdk_version 29 --ninja -d out/soong/.intermediates/frameworks/av/media/module/libmediatranscoding/mediatranscoding_aidl_interface-java-source/gen/android/media/TranscodingRequestParcel.java.d -o out/soong/.intermediates/frameworks/av/media/module/libmediatranscoding/mediatranscoding_aidl_interface-java-source/gen -Nframeworks/av/media/module/libmediatranscoding/aidl frameworks/av/media/module/libmediatranscoding/aidl/android/media/TranscodingRequestParcel.aidl
 */
package android.media;
/**
 * TranscodingRequest contains the desired configuration for the transcoding.
 * 
 * {@hide}
 */
//TODO(hkuang): Implement the parcelable.
public class TranscodingRequestParcel implements android.os.Parcelable
{
  /** The absolute file path of the source file. */
  public java.lang.String sourceFilePath;
  /**
   * The filedescrptor of the sourceFilePath. If the source Fd is provided, transcoding service
   * will use this fd instead of calling back to client side to open the sourceFilePath. It is
   * client's responsibility to make sure sourceFd is opened from sourceFilePath.
   */
  public android.os.ParcelFileDescriptor sourceFd;
  /** The absolute file path of the destination file. */
  public java.lang.String destinationFilePath;
  /**
   * The filedescrptor of the destinationFilePath. If the destination Fd is provided, transcoding
   * service will use this fd instead of calling back to client side to open the
   * destinationFilePath. It is client's responsibility to make sure destinationFd is opened
   * from destinationFilePath.
   */
  public android.os.ParcelFileDescriptor destinationFd;
  /**
   * The UID of the client that this transcoding request is for. Only privileged caller could
   * set this Uid as only they could do the transcoding on behalf of the client.
   * -1 means not available.
   */
  public int clientUid = -1;
  /**
   * The PID of the client that this transcoding request is for. Only privileged caller could
   * set this Uid as only they could do the transcoding on behalf of the client.
   * -1 means not available.
   */
  public int clientPid = -1;
  /** The package name of the client whom this transcoding request is for. */
  public java.lang.String clientPackageName;
  /** Type of the transcoding. */
  public int transcodingType;
  /**
   * Requested video track format for the transcoding.
   * Note that the transcoding service will try to fulfill the requested format as much as
   * possbile, while subject to hardware and software limitation. The final video track format
   * will be available in the TranscodingSessionParcel when the session is finished.
   */
  public android.media.TranscodingVideoTrackFormat requestedVideoTrackFormat;
  /** Priority of this transcoding. Service will schedule the transcoding based on the priority. */
  public int priority;
  /**
   * Whether to receive update on progress and change of awaitNumSessions.
   * Default to false.
   */
  public boolean requestProgressUpdate = false;
  /**
   * Whether to receive update on session's start/stop/pause/resume.
   * Default to false.
   */
  public boolean requestSessionEventUpdate = false;
  /** Whether this request is for testing. */
  public boolean isForTesting = false;
  /** Test configuration. This will be available only when isForTesting is set to true. */
  public android.media.TranscodingTestConfig testConfig;
  /**
   * Whether to get the stats of the transcoding.
   * If this is enabled, the TranscodingSessionStats will be returned in TranscodingResultParcel
   * upon transcoding finishes.
   */
  public boolean enableStats = false;
  public static final android.os.Parcelable.Creator<TranscodingRequestParcel> CREATOR = new android.os.Parcelable.Creator<TranscodingRequestParcel>() {
    @Override
    public TranscodingRequestParcel createFromParcel(android.os.Parcel _aidl_source) {
      TranscodingRequestParcel _aidl_out = new TranscodingRequestParcel();
      _aidl_out.readFromParcel(_aidl_source);
      return _aidl_out;
    }
    @Override
    public TranscodingRequestParcel[] newArray(int _aidl_size) {
      return new TranscodingRequestParcel[_aidl_size];
    }
  };
  @Override public final void writeToParcel(android.os.Parcel _aidl_parcel, int _aidl_flag)
  {
    int _aidl_start_pos = _aidl_parcel.dataPosition();
    _aidl_parcel.writeInt(0);
    _aidl_parcel.writeString(sourceFilePath);
    _aidl_parcel.writeTypedObject(sourceFd, _aidl_flag);
    _aidl_parcel.writeString(destinationFilePath);
    _aidl_parcel.writeTypedObject(destinationFd, _aidl_flag);
    _aidl_parcel.writeInt(clientUid);
    _aidl_parcel.writeInt(clientPid);
    _aidl_parcel.writeString(clientPackageName);
    _aidl_parcel.writeInt(transcodingType);
    _aidl_parcel.writeTypedObject(requestedVideoTrackFormat, _aidl_flag);
    _aidl_parcel.writeInt(priority);
    _aidl_parcel.writeBoolean(requestProgressUpdate);
    _aidl_parcel.writeBoolean(requestSessionEventUpdate);
    _aidl_parcel.writeBoolean(isForTesting);
    _aidl_parcel.writeTypedObject(testConfig, _aidl_flag);
    _aidl_parcel.writeBoolean(enableStats);
    int _aidl_end_pos = _aidl_parcel.dataPosition();
    _aidl_parcel.setDataPosition(_aidl_start_pos);
    _aidl_parcel.writeInt(_aidl_end_pos - _aidl_start_pos);
    _aidl_parcel.setDataPosition(_aidl_end_pos);
  }
  public final void readFromParcel(android.os.Parcel _aidl_parcel)
  {
    int _aidl_start_pos = _aidl_parcel.dataPosition();
    int _aidl_parcelable_size = _aidl_parcel.readInt();
    try {
      if (_aidl_parcelable_size < 4) throw new android.os.BadParcelableException("Parcelable too small");;
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      sourceFilePath = _aidl_parcel.readString();
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      sourceFd = _aidl_parcel.readTypedObject(android.os.ParcelFileDescriptor.CREATOR);
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      destinationFilePath = _aidl_parcel.readString();
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      destinationFd = _aidl_parcel.readTypedObject(android.os.ParcelFileDescriptor.CREATOR);
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      clientUid = _aidl_parcel.readInt();
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      clientPid = _aidl_parcel.readInt();
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      clientPackageName = _aidl_parcel.readString();
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      transcodingType = _aidl_parcel.readInt();
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      requestedVideoTrackFormat = _aidl_parcel.readTypedObject(android.media.TranscodingVideoTrackFormat.CREATOR);
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      priority = _aidl_parcel.readInt();
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      requestProgressUpdate = _aidl_parcel.readBoolean();
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      requestSessionEventUpdate = _aidl_parcel.readBoolean();
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      isForTesting = _aidl_parcel.readBoolean();
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      testConfig = _aidl_parcel.readTypedObject(android.media.TranscodingTestConfig.CREATOR);
      if (_aidl_parcel.dataPosition() - _aidl_start_pos >= _aidl_parcelable_size) return;
      enableStats = _aidl_parcel.readBoolean();
    } finally {
      if (_aidl_start_pos > (Integer.MAX_VALUE - _aidl_parcelable_size)) {
        throw new android.os.BadParcelableException("Overflow in the size of parcelable");
      }
      _aidl_parcel.setDataPosition(_aidl_start_pos + _aidl_parcelable_size);
    }
  }
  @Override
  public int describeContents() {
    int _mask = 0;
    _mask |= describeContents(sourceFd);
    _mask |= describeContents(destinationFd);
    _mask |= describeContents(requestedVideoTrackFormat);
    _mask |= describeContents(testConfig);
    return _mask;
  }
  private int describeContents(Object _v) {
    if (_v == null) return 0;
    if (_v instanceof android.os.Parcelable) {
      return ((android.os.Parcelable) _v).describeContents();
    }
    return 0;
  }
}
