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>2014-05-20 04:20:30 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-05-20 04:20:30 +0400
commit0739614c9c48983e9686ab331ada72367e16b9de (patch)
treef09bae178402726a3da858342c7bf8695bdbe8eb /libavcodec/utils.c
parentbe2bbc5266d18e61fca60e515c3bf256dfdacc47 (diff)
avcodec: remove no longer needed ff_codec_close_recursive()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index be2b40d45c..d3cf40813e 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -2677,15 +2677,6 @@ void avsubtitle_free(AVSubtitle *sub)
memset(sub, 0, sizeof(AVSubtitle));
}
-av_cold int ff_codec_close_recursive(AVCodecContext *avctx)
-{
- int ret = 0;
-
- ret = avcodec_close(avctx);
-
- return ret;
-}
-
av_cold int avcodec_close(AVCodecContext *avctx)
{
if (!avctx)