diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-06-01 14:46:54 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-06-04 00:54:57 +0200 |
commit | 4d6a8a2bdb19c4380cc458759b7bd221942a028f (patch) | |
tree | 1488a8dd15ae00c556a1363e760370fcce8a597b /libavfilter/asrc_anullsrc.c | |
parent | 7d82020fcb7f81fcbbd30b7546ba62af45f1a33c (diff) | |
download | ffmpeg-4d6a8a2bdb19c4380cc458759b7bd221942a028f.tar.gz |
lavfi: add avfilter_default_filter_name()
The function is modelled after av_default_item_name(), and will print the
name of the instance filter if defined, otherwise the name of the filter.
This allows to show the instance name in the log, which is useful when
debugging complex filter graphs.
Diffstat (limited to 'libavfilter/asrc_anullsrc.c')
-rw-r--r-- | libavfilter/asrc_anullsrc.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavfilter/asrc_anullsrc.c b/libavfilter/asrc_anullsrc.c index 61fdc3241e..6cd49e60fe 100644 --- a/libavfilter/asrc_anullsrc.c +++ b/libavfilter/asrc_anullsrc.c @@ -53,14 +53,9 @@ static const AVOption anullsrc_options[]= { { NULL }, }; -static const char *anullsrc_get_name(void *ctx) -{ - return "anullsrc"; -} - static const AVClass anullsrc_class = { "ANullSrcContext", - anullsrc_get_name, + avfilter_default_filter_name, anullsrc_options }; |