mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec: remove ABI portion of the side data merging API
The actual API is left in place until the deprecation period ends. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
90000f15ec
commit
417d473bde
@ -479,34 +479,6 @@ int av_packet_split_side_data(AVPacket *pkt){
|
||||
}
|
||||
#endif
|
||||
|
||||
#if FF_API_MERGE_SD
|
||||
int ff_packet_split_and_drop_side_data(AVPacket *pkt){
|
||||
if (!pkt->side_data_elems && pkt->size >12 && AV_RB64(pkt->data + pkt->size - 8) == FF_MERGE_MARKER){
|
||||
int i;
|
||||
unsigned int size;
|
||||
uint8_t *p;
|
||||
|
||||
p = pkt->data + pkt->size - 8 - 5;
|
||||
for (i=1; ; i++){
|
||||
size = AV_RB32(p);
|
||||
if (size>INT_MAX - 5 || p - pkt->data < size)
|
||||
return 0;
|
||||
if (p[4]&128)
|
||||
break;
|
||||
if (p - pkt->data < size + 5)
|
||||
return 0;
|
||||
p-= size+5;
|
||||
if (i > AV_PKT_DATA_NB)
|
||||
return 0;
|
||||
}
|
||||
pkt->size = p - pkt->data - size;
|
||||
av_assert0(pkt->size >= 0);
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
uint8_t *av_packet_pack_dictionary(AVDictionary *dict, int *size)
|
||||
{
|
||||
AVDictionaryEntry *t = NULL;
|
||||
|
@ -369,8 +369,7 @@ static int decode_simple_internal(AVCodecContext *avctx, AVFrame *frame)
|
||||
DecodeSimpleContext *ds = &avci->ds;
|
||||
AVPacket *pkt = ds->in_pkt;
|
||||
// copy to ensure we do not change pkt
|
||||
AVPacket tmp;
|
||||
int got_frame, actual_got_frame, did_split;
|
||||
int got_frame, actual_got_frame;
|
||||
int ret;
|
||||
|
||||
if (!pkt->data && !avci->draining) {
|
||||
@ -390,31 +389,12 @@ static int decode_simple_internal(AVCodecContext *avctx, AVFrame *frame)
|
||||
avctx->active_thread_type & FF_THREAD_FRAME))
|
||||
return AVERROR_EOF;
|
||||
|
||||
tmp = *pkt;
|
||||
#if FF_API_MERGE_SD
|
||||
FF_DISABLE_DEPRECATION_WARNINGS
|
||||
did_split = avci->compat_decode_partial_size ?
|
||||
ff_packet_split_and_drop_side_data(&tmp) :
|
||||
av_packet_split_side_data(&tmp);
|
||||
|
||||
if (did_split) {
|
||||
ret = extract_packet_props(avctx->internal, &tmp);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
ret = apply_param_change(avctx, &tmp);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
}
|
||||
FF_ENABLE_DEPRECATION_WARNINGS
|
||||
#endif
|
||||
|
||||
got_frame = 0;
|
||||
|
||||
if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME) {
|
||||
ret = ff_thread_decode_frame(avctx, frame, &got_frame, &tmp);
|
||||
ret = ff_thread_decode_frame(avctx, frame, &got_frame, pkt);
|
||||
} else {
|
||||
ret = avctx->codec->decode(avctx, frame, &got_frame, &tmp);
|
||||
ret = avctx->codec->decode(avctx, frame, &got_frame, pkt);
|
||||
|
||||
if (!(avctx->codec->caps_internal & FF_CODEC_CAP_SETS_PKT_DTS))
|
||||
frame->pkt_dts = pkt->dts;
|
||||
@ -544,13 +524,6 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
||||
}
|
||||
}
|
||||
}
|
||||
#if FF_API_MERGE_SD
|
||||
if (did_split) {
|
||||
av_packet_free_side_data(&tmp);
|
||||
if(ret == tmp.size)
|
||||
ret = pkt->size;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (avctx->codec->type == AVMEDIA_TYPE_AUDIO &&
|
||||
!avci->showed_multi_packet_warning &&
|
||||
@ -999,7 +972,6 @@ int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
|
||||
AVPacket *avpkt)
|
||||
{
|
||||
int i, ret = 0;
|
||||
AVCodecInternal *avci = avctx->internal;
|
||||
|
||||
if (!avpkt->data && avpkt->size) {
|
||||
av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
|
||||
@ -1016,29 +988,9 @@ int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
|
||||
get_subtitle_defaults(sub);
|
||||
|
||||
if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size) {
|
||||
AVPacket pkt_recoded;
|
||||
AVPacket tmp = *avpkt;
|
||||
#if FF_API_MERGE_SD
|
||||
FF_DISABLE_DEPRECATION_WARNINGS
|
||||
int did_split = avci->compat_decode_partial_size ?
|
||||
ff_packet_split_and_drop_side_data(&tmp) :
|
||||
av_packet_split_side_data(&tmp);
|
||||
//apply_param_change(avctx, &tmp);
|
||||
AVPacket pkt_recoded = *avpkt;
|
||||
|
||||
if (did_split) {
|
||||
/* FFMIN() prevents overflow in case the packet wasn't allocated with
|
||||
* proper padding.
|
||||
* If the side data is smaller than the buffer padding size, the
|
||||
* remaining bytes should have already been filled with zeros by the
|
||||
* original packet allocation anyway. */
|
||||
memset(tmp.data + tmp.size, 0,
|
||||
FFMIN(avpkt->size - tmp.size, AV_INPUT_BUFFER_PADDING_SIZE));
|
||||
}
|
||||
FF_ENABLE_DEPRECATION_WARNINGS
|
||||
#endif
|
||||
|
||||
pkt_recoded = tmp;
|
||||
ret = recode_subtitle(avctx, &pkt_recoded, &tmp);
|
||||
ret = recode_subtitle(avctx, &pkt_recoded, avpkt);
|
||||
if (ret < 0) {
|
||||
*got_sub_ptr = 0;
|
||||
} else {
|
||||
@ -1087,7 +1039,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
||||
}
|
||||
}
|
||||
|
||||
if (tmp.data != pkt_recoded.data) { // did we recode?
|
||||
if (avpkt->data != pkt_recoded.data) { // did we recode?
|
||||
/* prevent from destroying side data from original packet */
|
||||
pkt_recoded.side_data = NULL;
|
||||
pkt_recoded.side_data_elems = 0;
|
||||
@ -1096,14 +1048,6 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
||||
}
|
||||
}
|
||||
|
||||
#if FF_API_MERGE_SD
|
||||
if (did_split) {
|
||||
av_packet_free_side_data(&tmp);
|
||||
if(ret == tmp.size)
|
||||
ret = avpkt->size;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (*got_sub_ptr)
|
||||
avctx->frame_number++;
|
||||
}
|
||||
|
@ -373,10 +373,6 @@ int ff_set_sar(AVCodecContext *avctx, AVRational sar);
|
||||
int ff_side_data_update_matrix_encoding(AVFrame *frame,
|
||||
enum AVMatrixEncoding matrix_encoding);
|
||||
|
||||
#if FF_API_MERGE_SD
|
||||
int ff_packet_split_and_drop_side_data(AVPacket *pkt);
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Select the (possibly hardware accelerated) pixel format.
|
||||
* This is a wrapper around AVCodecContext.get_format() and should be used
|
||||
|
@ -130,9 +130,6 @@
|
||||
#ifndef FF_API_VAAPI_CONTEXT
|
||||
#define FF_API_VAAPI_CONTEXT (LIBAVCODEC_VERSION_MAJOR < 58)
|
||||
#endif
|
||||
#ifndef FF_API_MERGE_SD
|
||||
#define FF_API_MERGE_SD (LIBAVCODEC_VERSION_MAJOR < 58)
|
||||
#endif
|
||||
#ifndef FF_API_AVCTX_TIMEBASE
|
||||
#define FF_API_AVCTX_TIMEBASE (LIBAVCODEC_VERSION_MAJOR < 59)
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user