1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avutil/channel_layout: Group deprecated functions

Makes it a bit easier to spot the deprecated ones when
looking at the overview.
This commit is contained in:
Marvin Scholz 2022-09-24 19:05:56 +02:00 committed by Anton Khirnov
parent 57c8722a47
commit 6c2ae2e994

View File

@ -394,6 +394,11 @@ typedef struct AVChannelLayout {
struct AVBPrint;
#if FF_API_OLD_CHANNEL_LAYOUT
/**
* @name Deprecated Functions
* @{
*/
/**
* 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
/**