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:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-06 18:55:06 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-05-06 18:55:06 +0400
commitf4341c64be198874d52502eae894a726642445df (patch)
tree2cc3ad1542c635e9b008e1ba41e4d57de88b5ccb /libavfilter/af_volumedetect.c
parentd2bf8aecd35abc1bff11314b623b0a4b711871d1 (diff)
avfilter: add av_cold to uninit()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/af_volumedetect.c')
-rw-r--r--libavfilter/af_volumedetect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c
index 79d992e8d3..f00836f498 100644
--- a/libavfilter/af_volumedetect.c
+++ b/libavfilter/af_volumedetect.c
@@ -126,7 +126,7 @@ static void print_stats(AVFilterContext *ctx)
}
}
-static void uninit(AVFilterContext *ctx)
+static av_cold void uninit(AVFilterContext *ctx)
{
print_stats(ctx);
}