diff mbox series

[FFmpeg-devel,v3,10/54] avutil/channel_layout: Group deprecated functions

Message ID 20220925001121.37721-11-epirat07@gmail.com
State Accepted
Headers show
Series Various Doxygen fixes | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Marvin Scholz Sept. 25, 2022, 12:10 a.m. UTC
Makes it a bit easier to spot the deprecated ones when
looking at the overview.
---
 libavutil/channel_layout.h | 8 ++++++++
 1 file changed, 8 insertions(+)

Comments

Anton Khirnov Oct. 16, 2022, 1:11 p.m. UTC | #1
Quoting Marvin Scholz (2022-09-25 02:10:37)
> Makes it a bit easier to spot the deprecated ones when
> looking at the overview.
> ---
>  libavutil/channel_layout.h | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/libavutil/channel_layout.h b/libavutil/channel_layout.h
> index 070c98072b..52af52390c 100644
> --- a/libavutil/channel_layout.h
> +++ b/libavutil/channel_layout.h
> @@ -394,6 +394,11 @@ typedef struct AVChannelLayout {
>  struct AVBPrint;
>  
>  #if FF_API_OLD_CHANNEL_LAYOUT
> +/**
> + * @name Depreacted Functins

tpyoes

will fix myself on pushing
diff mbox series

Patch

diff --git a/libavutil/channel_layout.h b/libavutil/channel_layout.h
index 070c98072b..52af52390c 100644
--- a/libavutil/channel_layout.h
+++ b/libavutil/channel_layout.h
@@ -394,6 +394,11 @@  typedef struct AVChannelLayout {
 struct AVBPrint;
 
 #if FF_API_OLD_CHANNEL_LAYOUT
+/**
+ * @name Depreacted Functins
+ * @{
+ */
+
 /**
  * Return a channel layout id that matches name, or 0 if no match is found.
  *
@@ -520,6 +525,9 @@  const char *av_get_channel_description(uint64_t channel);
 attribute_deprecated
 int av_get_standard_channel_layout(unsigned index, uint64_t *layout,
                                    const char **name);
+/**
+ * @}
+ */
 #endif
 
 /**