Commit 8f9024f2 authored by wm4's avatar wm4

lavc: remove uneffective attribute_deprecated on enum

Does not work. Even emits a warning with some compilers that the
attribute does not work on enums. It's likely that there is way to make
it work, but not worth the trouble.
parent 1dd82ede
...@@ -5933,8 +5933,9 @@ AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel); ...@@ -5933,8 +5933,9 @@ AVHWAccel *av_hwaccel_next(const AVHWAccel *hwaccel);
#if FF_API_LOCKMGR #if FF_API_LOCKMGR
/** /**
* Lock operation used by lockmgr * Lock operation used by lockmgr
*
* @deprecated Deprecated together with av_lockmgr_register().
*/ */
attribute_deprecated
enum AVLockOp { enum AVLockOp {
AV_LOCK_CREATE, ///< Create a mutex AV_LOCK_CREATE, ///< Create a mutex
AV_LOCK_OBTAIN, ///< Lock the mutex AV_LOCK_OBTAIN, ///< Lock the mutex
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment