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 #include "common/bt_target.h"
37 #include "oi_stddefs.h"
38 #include "oi_codec_sbc_private.h"
39
40 #if (defined(SBC_DEC_INCLUDED) && SBC_DEC_INCLUDED == TRUE)
41 /** Version string for the BLUEmagic 3.0 protocol stack and profiles */
42 PRIVATE OI_CHAR *const codecVersion = "v1.5"
43 #ifdef OI_SBC_EVAL
44 " (Evaluation version)"
45 #endif
46 ;
47
48 /** This function returns the version string for the BLUEmagic 3.0 protocol stack
49 and profiles */
OI_CODEC_Version(void)50 OI_CHAR *OI_CODEC_Version(void)
51 {
52 return codecVersion;
53 }
54
55 /**********************************************************************************/
56
57 /**
58 @}
59 */
60
61 #endif /* #if (defined(SBC_DEC_INCLUDED) && SBC_DEC_INCLUDED == TRUE) */
62