On 9/4/20, Andreas Rheinhardt <[email protected]> wrote:
> Signed-off-by: Andreas Rheinhardt <[email protected]>
> ---
> libavformat/yuv4mpegenc.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
lgtm
> diff --git a/libavformat/yuv4mpegenc.c b/libavformat/yuv4mpegenc.c
> index fdd020e13b..6b53780ba0 100644
> --- a/libavformat/yuv4mpegenc.c
> +++ b/libavformat/yuv4mpegenc.c
> @@ -184,12 +184,10 @@ static int yuv4_write_packet(AVFormatContext *s,
> AVPacket *pkt)
> {
> AVStream *st = s->streams[pkt->stream_index];
> AVIOContext *pb = s->pb;
> - AVFrame *frame;
> + const AVFrame *frame = (const AVFrame *)pkt->data;
> int width, height, h_chroma_shift, v_chroma_shift;
> int i;
> - uint8_t *ptr, *ptr1, *ptr2;
> -
> - frame = (AVFrame *)pkt->data;
> + const uint8_t *ptr, *ptr1, *ptr2;
>
> /* construct frame header */
>
> --
> 2.20.1
>
> _______________________________________________
> 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".
_______________________________________________
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".