oi_codec_version.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. @file
  21. This file contains a single function, which returns a string indicating the
  22. version number of the eSBC codec
  23. @ingroup codec_internal
  24. */
  25. /**
  26. @addtogroup codec_internal
  27. @{
  28. */
  29. /**********************************************************************************
  30. $Revision: #1 $
  31. ***********************************************************************************/
  32. #include "oi_stddefs.h"
  33. #include "oi_codec_sbc_private.h"
  34. /** Version string for the BLUEmagic 3.0 protocol stack and profiles */
  35. PRIVATE const OI_CHAR * codecVersion = "v1.5"
  36. #ifdef OI_SBC_EVAL
  37. " (Evaluation version)"
  38. #endif
  39. ;
  40. /** This function returns the version string for the BLUEmagic 3.0 protocol stack
  41. and profiles */
  42. const OI_CHAR *OI_CODEC_Version(void) {
  43. return codecVersion;
  44. }
  45. /**********************************************************************************/
  46. /**
  47. @}
  48. */