mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
lavc: const correctness for avpicture_fill()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
03179c2426
commit
b90d7840df
@ -4490,7 +4490,7 @@ void avpicture_free(AVPicture *picture);
|
||||
*
|
||||
* @see av_image_fill_arrays()
|
||||
*/
|
||||
int avpicture_fill(AVPicture *picture, uint8_t *ptr,
|
||||
int avpicture_fill(AVPicture *picture, const uint8_t *ptr,
|
||||
enum AVPixelFormat pix_fmt, int width, int height);
|
||||
|
||||
/**
|
||||
|
@ -401,7 +401,7 @@ int ff_is_hwaccel_pix_fmt(enum AVPixelFormat pix_fmt)
|
||||
return desc->flags & PIX_FMT_HWACCEL;
|
||||
}
|
||||
|
||||
int avpicture_fill(AVPicture *picture, uint8_t *ptr,
|
||||
int avpicture_fill(AVPicture *picture, const uint8_t *ptr,
|
||||
enum AVPixelFormat pix_fmt, int width, int height)
|
||||
{
|
||||
return av_image_fill_arrays(picture->data, picture->linesize,
|
||||
|
Loading…
Reference in New Issue
Block a user