Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-06-04 04:31:49 +0400
committerStefano Sabatini <stefasab@gmail.com>2012-06-04 04:40:01 +0400
commit0f0f3bd1e022639eb8e9c02b7b18f37071c21763 (patch)
tree105ef400e9a901ea70a72cac1270b2c1aebf0ab4 /libavfilter/vsrc_cellauto.c
parent38c9ebd2a97a1298e4c5cc9d01d88d69c55be695 (diff)
lavfi: use av_default_item_name() as filter private context logger
avfilter_default_filter_name() is supposed to access an AVFilterContext struct, if used with a private struct it will cause a crash since it will access fields which are non defined in the private struct.
Diffstat (limited to 'libavfilter/vsrc_cellauto.c')
-rw-r--r--libavfilter/vsrc_cellauto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vsrc_cellauto.c b/libavfilter/vsrc_cellauto.c
index 93bdded590..1f6ba6a1e5 100644
--- a/libavfilter/vsrc_cellauto.c
+++ b/libavfilter/vsrc_cellauto.c
@@ -78,7 +78,7 @@ static const AVOption cellauto_options[] = {
static const AVClass cellauto_class = {
"CellAutoContext",
- avfilter_default_filter_name,
+ av_default_item_name,
cellauto_options
};