filters/f_lavfi: rename channellayout to ch_layout

To better match upstream naming.
This commit is contained in:
Dudemanguy 2024-03-08 08:52:31 -06:00
parent 9ef614d6a3
commit 414ddbd628
1 changed files with 2 additions and 2 deletions

View File

@ -1035,9 +1035,9 @@ static const char *get_avopt_type_name(enum AVOptionType type)
case AV_OPT_TYPE_DURATION: return "duration";
case AV_OPT_TYPE_COLOR: return "color";
#if LIBAVUTIL_VERSION_MAJOR < 59
case AV_OPT_TYPE_CHANNEL_LAYOUT: return "channellayout";
case AV_OPT_TYPE_CHANNEL_LAYOUT: return "ch_layout";
#else
case AV_OPT_TYPE_CHLAYOUT: return "channellayout";
case AV_OPT_TYPE_CHLAYOUT: return "ch_layout";
#endif
case AV_OPT_TYPE_BOOL: return "bool";
case AV_OPT_TYPE_CONST: // fallthrough