mirror of
https://github.com/openharmony/third_party_tinyalsa.git
synced 2026-07-18 13:25:09 -04:00
d9622de48b
1. Add a missing field and a function 2. Disable the deprecated attribute in Android temporarily to allow us to use "pcm_read/write" which are deprecated upstream 3. Remove an unused define and an include in mixer.h 4. Add mixer_ctl_event and copy the snd_ctl_event to mixer_ctl_event 5. Add pcm_ioctl function and mark as deprecated function
45 lines
1.4 KiB
C
45 lines
1.4 KiB
C
#ifndef TINYALSA_ATTRIBUTES_H
|
|
#define TINYALSA_ATTRIBUTES_H
|
|
|
|
/** @defgroup libtinyalsa-attributes
|
|
* @brief GCC attributes to issue diagnostics
|
|
* when the library is being used incorrectly.
|
|
* */
|
|
|
|
// FIXME: Disable the deprecated attribute in Android temporarily. pcm_read/write are marked as
|
|
// deprecated functions in the latest tinyalsa in GitHub. However, there are lots of libraries in
|
|
// Android using these functions and building with -Werror flags. Besides build breakage, the
|
|
// behavior and interface of the successors, pcm_readi/writei, are also changed. Once all have
|
|
// been cleaned up, we will enable this again.
|
|
#if defined(__GNUC__) && !defined(ANDROID)
|
|
|
|
/** Issues a warning when a function is being
|
|
* used that is now deprecated.
|
|
* @ingroup libtinyalsa-attributes
|
|
* */
|
|
#define TINYALSA_DEPRECATED __attribute__((deprecated))
|
|
|
|
/** Issues a warning when a return code of
|
|
* a function is not checked.
|
|
* @ingroup libtinyalsa-attributes
|
|
* */
|
|
#define TINYALSA_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
|
|
|
#else /* __GNUC__ && !ANDROID */
|
|
|
|
/** This is just a placeholder for compilers
|
|
* that aren't GCC or Clang.
|
|
* @ingroup libtinyalsa-attributes
|
|
* */
|
|
#define TINYALSA_DEPRECATED
|
|
|
|
/** This is just a placeholder for compilers
|
|
* that aren't GCC or Clang.
|
|
* @ingroup libtinyalsa-attributes
|
|
* */
|
|
#define TINYALSA_WARN_UNUSED_RESULT
|
|
|
|
#endif /* __GNUC__ && !ANDROID */
|
|
|
|
#endif /* TINYALSA_ATTRIBUTES_H */
|