summaryrefslogtreecommitdiff
path: root/libavcodec/decode.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-03-09 12:00:09 +0100
committerAnton Khirnov <anton@khirnov.net>2021-03-16 11:09:44 +0100
commitb006a84a97e7c8131a9e561d6c642edef6215977 (patch)
treeb223374fca5397481e759c37c314f711cedc9e28 /libavcodec/decode.h
parent20aec597d05f1930dbd4e4c5ab8ee837dea5b5f3 (diff)
lavc: move decoder bsf init into decoder-specific code
Diffstat (limited to 'libavcodec/decode.h')
-rw-r--r--libavcodec/decode.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/decode.h b/libavcodec/decode.h
index a865fe954f..1467b1eb33 100644
--- a/libavcodec/decode.h
+++ b/libavcodec/decode.h
@@ -70,12 +70,6 @@ int ff_decode_get_packet(AVCodecContext *avctx, AVPacket *pkt);
int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame);
/**
- * Called during avcodec_open2() to initialize avctx->internal->bsf.
- * The bsf should be freed with av_bsf_free().
- */
-int ff_decode_bsfs_init(AVCodecContext *avctx);
-
-/**
* Make sure avctx.hw_frames_ctx is set. If it's not set, the function will
* try to allocate it from hw_device_ctx. If that is not possible, an error
* message is printed, and an error code is returned.