blob: 153fce3cb5f43d2dc124142cb35dd85e2dfe5c15 [file] [log] [blame]
/*
* Copyright 2016 The Android Open Source Project
*
* 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.
*/
#include <stdint.h>
#include <sys/mman.h>
#include <aaudio/AAudio.h>
#include <binder/Parcel.h>
#include <binder/Parcelable.h>
#include "binding/AAudioStreamConfiguration.h"
using android::NO_ERROR;
using android::status_t;
using android::Parcel;
using android::Parcelable;
using namespace aaudio;
AAudioStreamConfiguration::AAudioStreamConfiguration() {}
AAudioStreamConfiguration::~AAudioStreamConfiguration() {}
status_t AAudioStreamConfiguration::writeToParcel(Parcel* parcel) const {
status_t status;
status = parcel->writeInt32(getDeviceId());
if (status != NO_ERROR) goto error;
status = parcel->writeInt32(getSampleRate());
if (status != NO_ERROR) goto error;
status = parcel->writeInt32(getSamplesPerFrame());
if (status != NO_ERROR) goto error;
status = parcel->writeInt32((int32_t) getSharingMode());
if (status != NO_ERROR) goto error;
status = parcel->writeInt32((int32_t) getFormat());
if (status != NO_ERROR) goto error;
status = parcel->writeInt32((int32_t) getDirection());
if (status != NO_ERROR) goto error;
status = parcel->writeInt32(getBufferCapacity());
if (status != NO_ERROR) goto error;
return NO_ERROR;
error:
ALOGE("AAudioStreamConfiguration.writeToParcel(): write failed = %d", status);
return status;
}
status_t AAudioStreamConfiguration::readFromParcel(const Parcel* parcel) {
int32_t value;
status_t status = parcel->readInt32(&value);
if (status != NO_ERROR) goto error;
setDeviceId(value);
status = parcel->readInt32(&value);
if (status != NO_ERROR) goto error;
setSampleRate(value);
status = parcel->readInt32(&value);
if (status != NO_ERROR) goto error;
setSamplesPerFrame(value);
status = parcel->readInt32(&value);
if (status != NO_ERROR) goto error;
setSharingMode(value);
status = parcel->readInt32(&value);
if (status != NO_ERROR) goto error;
setFormat(value);
status = parcel->readInt32(&value);
if (status != NO_ERROR) goto error;
setDirection((aaudio_direction_t) value);
status = parcel->readInt32(&value);
if (status != NO_ERROR) goto error;
setBufferCapacity(value);
return NO_ERROR;
error:
ALOGE("AAudioStreamConfiguration.readFromParcel(): read failed = %d", status);
return status;
}