mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge commit '529a9893d769f381b72785c500662be2020da5fe'
* commit '529a9893d769f381b72785c500662be2020da5fe': avframe: mark source frame const in _ref and _clone Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
078dab551d
@ -244,7 +244,7 @@ int av_frame_get_buffer(AVFrame *frame, int align)
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
int av_frame_ref(AVFrame *dst, AVFrame *src)
|
||||
int av_frame_ref(AVFrame *dst, const AVFrame *src)
|
||||
{
|
||||
int i, ret = 0;
|
||||
|
||||
@ -335,7 +335,7 @@ fail:
|
||||
return ret;
|
||||
}
|
||||
|
||||
AVFrame *av_frame_clone(AVFrame *src)
|
||||
AVFrame *av_frame_clone(const AVFrame *src)
|
||||
{
|
||||
AVFrame *ret = av_frame_alloc();
|
||||
|
||||
|
@ -549,7 +549,7 @@ void av_frame_free(AVFrame **frame);
|
||||
*
|
||||
* @return 0 on success, a negative AVERROR on error
|
||||
*/
|
||||
int av_frame_ref(AVFrame *dst, AVFrame *src);
|
||||
int av_frame_ref(AVFrame *dst, const AVFrame *src);
|
||||
|
||||
/**
|
||||
* Create a new frame that references the same data as src.
|
||||
@ -558,7 +558,7 @@ int av_frame_ref(AVFrame *dst, AVFrame *src);
|
||||
*
|
||||
* @return newly created AVFrame on success, NULL on error.
|
||||
*/
|
||||
AVFrame *av_frame_clone(AVFrame *src);
|
||||
AVFrame *av_frame_clone(const AVFrame *src);
|
||||
|
||||
/**
|
||||
* Unreference all the buffers referenced by frame and reset the frame fields.
|
||||
|
Loading…
Reference in New Issue
Block a user