Signed-off-by: James Almer <[email protected]>
---
libavcodec/thread.h | 2 +-
libavcodec/utils.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/thread.h b/libavcodec/thread.h
index 540135fbc9..87bf154da9 100644
--- a/libavcodec/thread.h
+++ b/libavcodec/thread.h
@@ -129,7 +129,7 @@ int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame
*f, int flags);
*/
void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f);
-int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src);
+int ff_thread_ref_frame(ThreadFrame *dst, const ThreadFrame *src);
int ff_thread_init(AVCodecContext *s);
int ff_slice_thread_execute_with_mainfunc(AVCodecContext *avctx,
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 2e5185f364..f0a41c99b5 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -1852,7 +1852,7 @@ unsigned int avpriv_toupper4(unsigned int x)
((unsigned)av_toupper((x >> 24) & 0xFF) << 24);
}
-int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src)
+int ff_thread_ref_frame(ThreadFrame *dst, const ThreadFrame *src)
{
int ret;
--
2.27.0
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".