diff options
Diffstat (limited to 'src/audio_io_internal.c')
-rw-r--r-- | src/audio_io_internal.c | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/audio_io_internal.c b/src/audio_io_internal.c new file mode 100644 index 0000000..f339415 --- /dev/null +++ b/src/audio_io_internal.c @@ -0,0 +1,42 @@ +/* + * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved + * + * 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 <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <mm.h> +#include "audio_io_private.h" +#include <dlog.h> + +#ifdef LOG_TAG +#undef LOG_TAG +#endif +#define LOG_TAG "TIZEN_N_AUDIO_IO" + +int audio_in_get_latency(audio_in_h input, int *latency) +{ + return AUDIO_IO_ERROR_NONE; +} + +int audio_out_get_latency(audio_out_h output, int *latency) +{ + return AUDIO_IO_ERROR_NONE; +} + +int audio_in_set_device(audio_in_h input, char* device) +{ + return AUDIO_IO_ERROR_NONE; +} |