mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-14 00:58:38 +02:00
avutil/frame: add av_frame_replace
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
63767b79a5
commit
01d444c077
@ -2,6 +2,9 @@ The last version increases of all libraries were on 2023-02-09
|
|||||||
|
|
||||||
API changes, most recent first:
|
API changes, most recent first:
|
||||||
|
|
||||||
|
2023-05-xx - xxxxxxxxxx - lavu 58.8.100 - frame.h
|
||||||
|
Add av_frame_replace().
|
||||||
|
|
||||||
2023-05-xx - xxxxxxxxxx - lavu 58 - frame.h
|
2023-05-xx - xxxxxxxxxx - lavu 58 - frame.h
|
||||||
Deprecate AVFrame.palette_has_changed without replacement.
|
Deprecate AVFrame.palette_has_changed without replacement.
|
||||||
|
|
||||||
|
@ -479,6 +479,131 @@ fail:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int av_frame_replace(AVFrame *dst, const AVFrame *src)
|
||||||
|
{
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
if (dst == src)
|
||||||
|
return AVERROR(EINVAL);
|
||||||
|
|
||||||
|
if (!src->buf[0]) {
|
||||||
|
av_frame_unref(dst);
|
||||||
|
|
||||||
|
/* duplicate the frame data if it's not refcounted */
|
||||||
|
if ( src->data[0] || src->data[1]
|
||||||
|
|| src->data[2] || src->data[3])
|
||||||
|
return av_frame_ref(dst, src);
|
||||||
|
|
||||||
|
return av_frame_copy_props(dst, src);
|
||||||
|
}
|
||||||
|
|
||||||
|
dst->format = src->format;
|
||||||
|
dst->width = src->width;
|
||||||
|
dst->height = src->height;
|
||||||
|
dst->nb_samples = src->nb_samples;
|
||||||
|
#if FF_API_OLD_CHANNEL_LAYOUT
|
||||||
|
FF_DISABLE_DEPRECATION_WARNINGS
|
||||||
|
dst->channels = src->channels;
|
||||||
|
dst->channel_layout = src->channel_layout;
|
||||||
|
if (!av_channel_layout_check(&src->ch_layout)) {
|
||||||
|
av_channel_layout_uninit(&dst->ch_layout);
|
||||||
|
if (src->channel_layout)
|
||||||
|
av_channel_layout_from_mask(&dst->ch_layout, src->channel_layout);
|
||||||
|
else {
|
||||||
|
dst->ch_layout.nb_channels = src->channels;
|
||||||
|
dst->ch_layout.order = AV_CHANNEL_ORDER_UNSPEC;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
#endif
|
||||||
|
ret = av_channel_layout_copy(&dst->ch_layout, &src->ch_layout);
|
||||||
|
if (ret < 0)
|
||||||
|
goto fail;
|
||||||
|
#if FF_API_OLD_CHANNEL_LAYOUT
|
||||||
|
}
|
||||||
|
FF_ENABLE_DEPRECATION_WARNINGS
|
||||||
|
#endif
|
||||||
|
|
||||||
|
wipe_side_data(dst);
|
||||||
|
av_dict_free(&dst->metadata);
|
||||||
|
ret = frame_copy_props(dst, src, 0);
|
||||||
|
if (ret < 0)
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
/* replace the buffers */
|
||||||
|
for (int i = 0; i < FF_ARRAY_ELEMS(src->buf); i++) {
|
||||||
|
ret = av_buffer_replace(&dst->buf[i], src->buf[i]);
|
||||||
|
if (ret < 0)
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (src->extended_buf) {
|
||||||
|
if (dst->nb_extended_buf != src->nb_extended_buf) {
|
||||||
|
int nb_extended_buf = FFMIN(dst->nb_extended_buf, src->nb_extended_buf);
|
||||||
|
void *tmp;
|
||||||
|
|
||||||
|
for (int i = nb_extended_buf; i < dst->nb_extended_buf; i++)
|
||||||
|
av_buffer_unref(&dst->extended_buf[i]);
|
||||||
|
|
||||||
|
tmp = av_realloc_array(dst->extended_buf, sizeof(*dst->extended_buf),
|
||||||
|
src->nb_extended_buf);
|
||||||
|
if (!tmp) {
|
||||||
|
ret = AVERROR(ENOMEM);
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
dst->extended_buf = tmp;
|
||||||
|
dst->nb_extended_buf = src->nb_extended_buf;
|
||||||
|
|
||||||
|
memset(&dst->extended_buf[nb_extended_buf], 0,
|
||||||
|
(src->nb_extended_buf - nb_extended_buf) * sizeof(*dst->extended_buf));
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < src->nb_extended_buf; i++) {
|
||||||
|
ret = av_buffer_replace(&dst->extended_buf[i], src->extended_buf[i]);
|
||||||
|
if (ret < 0)
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
} else if (dst->extended_buf) {
|
||||||
|
for (int i = 0; i < dst->nb_extended_buf; i++)
|
||||||
|
av_buffer_unref(&dst->extended_buf[i]);
|
||||||
|
av_freep(&dst->extended_buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = av_buffer_replace(&dst->hw_frames_ctx, src->hw_frames_ctx);
|
||||||
|
if (ret < 0)
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
if (dst->extended_data != dst->data)
|
||||||
|
av_freep(&dst->extended_data);
|
||||||
|
|
||||||
|
if (src->extended_data != src->data) {
|
||||||
|
int ch = dst->ch_layout.nb_channels;
|
||||||
|
|
||||||
|
if (!ch) {
|
||||||
|
ret = AVERROR(EINVAL);
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ch > SIZE_MAX / sizeof(*dst->extended_data))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
dst->extended_data = av_memdup(src->extended_data, sizeof(*dst->extended_data) * ch);
|
||||||
|
if (!dst->extended_data) {
|
||||||
|
ret = AVERROR(ENOMEM);
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
} else
|
||||||
|
dst->extended_data = dst->data;
|
||||||
|
|
||||||
|
memcpy(dst->data, src->data, sizeof(src->data));
|
||||||
|
memcpy(dst->linesize, src->linesize, sizeof(src->linesize));
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
fail:
|
||||||
|
av_frame_unref(dst);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
AVFrame *av_frame_clone(const AVFrame *src)
|
AVFrame *av_frame_clone(const AVFrame *src)
|
||||||
{
|
{
|
||||||
AVFrame *ret = av_frame_alloc();
|
AVFrame *ret = av_frame_alloc();
|
||||||
|
@ -836,6 +836,19 @@ void av_frame_free(AVFrame **frame);
|
|||||||
*/
|
*/
|
||||||
int av_frame_ref(AVFrame *dst, const AVFrame *src);
|
int av_frame_ref(AVFrame *dst, const AVFrame *src);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ensure the destination frame refers to the same data described by the source
|
||||||
|
* frame, either by creating a new reference for each AVBufferRef from src if
|
||||||
|
* they differ from those in dst, by allocating new buffers and copying data if
|
||||||
|
* src is not reference counted, or by unrefencing it if src is empty.
|
||||||
|
*
|
||||||
|
* Frame properties on dst will be replaced by those from src.
|
||||||
|
*
|
||||||
|
* @return 0 on success, a negative AVERROR on error. On error, dst is
|
||||||
|
* unreferenced.
|
||||||
|
*/
|
||||||
|
int av_frame_replace(AVFrame *dst, const AVFrame *src);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new frame that references the same data as src.
|
* Create a new frame that references the same data as src.
|
||||||
*
|
*
|
||||||
|
@ -79,7 +79,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define LIBAVUTIL_VERSION_MAJOR 58
|
#define LIBAVUTIL_VERSION_MAJOR 58
|
||||||
#define LIBAVUTIL_VERSION_MINOR 7
|
#define LIBAVUTIL_VERSION_MINOR 8
|
||||||
#define LIBAVUTIL_VERSION_MICRO 100
|
#define LIBAVUTIL_VERSION_MICRO 100
|
||||||
|
|
||||||
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
|
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user