summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-29 13:38:02 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-03 15:42:57 +0200
commit48286d4d98e6417dff397d6f15e6b2ca3310f0ca (patch)
tree32ee2a1b56b100f84a1fffcf5e888ce2f3a49e49 /libavutil
parentdea974456035d8d43c69a23b9db036a544bb0455 (diff)
avcodec/codec_internal: Add macro to set AVCodec.long_name
It reduces typing: Before this patch, there were 105 codecs whose long_name-definition exceeded the 80 char line length limit. Now there are only nine of them. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/internal.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h
index 14f3acec58..40072d4e30 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -107,8 +107,7 @@
/**
* Return NULL if CONFIG_SMALL is true, otherwise the argument
- * without modification. Used to disable the definition of strings
- * (for example AVCodec long_names).
+ * without modification. Used to disable the definition of strings.
*/
#if CONFIG_SMALL
# define NULL_IF_CONFIG_SMALL(x) NULL