[FFmpeg-devel] [PATCH] avcodec/utils: make the src paramater for ff_thread_ref_frame const

James Almer jamrial at gmail.com
Fri Sep 11 16:35:01 EEST 2020


On 9/10/2020 10:38 AM, James Almer wrote:
> Signed-off-by: James Almer <jamrial at gmail.com>
> ---
>  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;

Will apply.


More information about the ffmpeg-devel mailing list