1 /******************************************************************************
2 *
3 * Copyright 2014 The Android Open Source Project
4 * Copyright 2002 - 2004 Open Interface North America, Inc. All rights
5 * reserved.
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at:
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *
19 ******************************************************************************/
20
21 /**
22 @file
23 This file contains a single function, which returns a string indicating the
24 version number of the eSBC codec
25
26 @ingroup codec_internal
27 */
28
29 /**
30 @addtogroup codec_internal
31 @{
32 */
33
34 /*******************************************************************************
35 $Revision: #1 $
36 ******************************************************************************/
37
38 #include "oi_codec_sbc_private.h"
39 #include "oi_stddefs.h"
40
41 /** Version string for the BLUEmagic 3.0 protocol stack and profiles */
42 PRIVATE OI_CHAR* const codecVersion =
43 "v1.5"
44 #ifdef OI_SBC_EVAL
45 " (Evaluation version)"
46 #endif
47 ;
48
49 /* This function returns the version string for the BLUEmagic 3.0 protocol stack
50 and profiles */
OI_CODEC_Version(void)51 OI_CHAR* OI_CODEC_Version(void) { return codecVersion; }
52
53 /******************************************************************************/
54
55 /**
56 @}
57 */
58