summaryrefslogtreecommitdiff
path: root/libavcodec/encode.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-04-14 04:09:53 +0200
committerJames Almer <jamrial@gmail.com>2021-04-27 10:43:12 -0300
commit7c1f347b184b6738abdc22fdcda40baa9f932522 (patch)
treeec42fcaeda4ce0beaff72af7fb73fb9cebb6d31c /libavcodec/encode.c
parent11bc79089378a5ec00547d0f85bc152afdf30dfa (diff)
avcodec: Remove deprecated old encode/decode APIs
Deprecated in commits 7fc329e2dd6226dfecaa4a1d7adf353bf2773726 and 31f6a4b4b83aca1d73f3cfc99ce2b39331970bf3. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/encode.c')
-rw-r--r--libavcodec/encode.c111
1 files changed, 0 insertions, 111 deletions
diff --git a/libavcodec/encode.c b/libavcodec/encode.c
index c1a60cd2bf..62c47afb24 100644
--- a/libavcodec/encode.c
+++ b/libavcodec/encode.c
@@ -413,117 +413,6 @@ int attribute_align_arg avcodec_receive_packet(AVCodecContext *avctx, AVPacket *
return 0;
}
-#if FF_API_OLD_ENCDEC
-static int compat_encode(AVCodecContext *avctx, AVPacket *avpkt,
- int *got_packet, const AVFrame *frame)
-{
- AVCodecInternal *avci = avctx->internal;
- AVPacket user_pkt;
- int ret;
-
- *got_packet = 0;
-
- if (frame && avctx->codec->type == AVMEDIA_TYPE_VIDEO) {
- if (frame->format == AV_PIX_FMT_NONE)
- av_log(avctx, AV_LOG_WARNING, "AVFrame.format is not set\n");
- if (frame->width == 0 || frame->height == 0)
- av_log(avctx, AV_LOG_WARNING, "AVFrame.width or height is not set\n");
- }
-
- if (avctx->codec->capabilities & AV_CODEC_CAP_DR1) {
- av_log(avctx, AV_LOG_WARNING, "The deprecated avcodec_encode_* API does not support "
- "AV_CODEC_CAP_DR1 encoders\n");
- return AVERROR(ENOSYS);
- }
-
- ret = avcodec_send_frame(avctx, frame);
- if (ret == AVERROR_EOF)
- ret = 0;
- else if (ret == AVERROR(EAGAIN)) {
- /* we fully drain all the output in each encode call, so this should not
- * ever happen */
- return AVERROR_BUG;
- } else if (ret < 0)
- return ret;
-
- av_packet_move_ref(&user_pkt, avpkt);
- while (ret >= 0) {
- ret = avcodec_receive_packet(avctx, avpkt);
- if (ret < 0) {
- if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
- ret = 0;
- goto finish;
- }
-
- if (avpkt != avci->compat_encode_packet) {
- if (avpkt->data && user_pkt.data) {
- if (user_pkt.size >= avpkt->size) {
- memcpy(user_pkt.data, avpkt->data, avpkt->size);
- av_buffer_unref(&avpkt->buf);
- avpkt->buf = user_pkt.buf;
- avpkt->data = user_pkt.data;
-FF_DISABLE_DEPRECATION_WARNINGS
- av_init_packet(&user_pkt);
-FF_ENABLE_DEPRECATION_WARNINGS
- } else {
- av_log(avctx, AV_LOG_ERROR, "Provided packet is too small, needs to be %d\n", avpkt->size);
- av_packet_unref(avpkt);
- ret = AVERROR(EINVAL);
- goto finish;
- }
- }
-
- *got_packet = 1;
- avpkt = avci->compat_encode_packet;
- } else {
- if (!avci->compat_decode_warned) {
- av_log(avctx, AV_LOG_WARNING, "The deprecated avcodec_encode_* "
- "API cannot return all the packets for this encoder. "
- "Some packets will be dropped. Update your code to the "
- "new encoding API to fix this.\n");
- avci->compat_decode_warned = 1;
- av_packet_unref(avpkt);
- }
- }
-
- if (avci->draining)
- break;
- }
-
-finish:
- if (ret < 0)
- av_packet_unref(&user_pkt);
-
- return ret;
-}
-
-int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
- AVPacket *avpkt,
- const AVFrame *frame,
- int *got_packet_ptr)
-{
- int ret = compat_encode(avctx, avpkt, got_packet_ptr, frame);
-
- if (ret < 0)
- av_packet_unref(avpkt);
-
- return ret;
-}
-
-int attribute_align_arg avcodec_encode_video2(AVCodecContext *avctx,
- AVPacket *avpkt,
- const AVFrame *frame,
- int *got_packet_ptr)
-{
- int ret = compat_encode(avctx, avpkt, got_packet_ptr, frame);
-
- if (ret < 0)
- av_packet_unref(avpkt);
-
- return ret;
-}
-#endif
-
int ff_encode_preinit(AVCodecContext *avctx)
{
int i;