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