From: Benjamin Otte Date: Tue, 26 Apr 2022 17:39:20 +0000 (+0200) Subject: ffmpeg: Hey, this variable is const now! X-Git-Tag: archive/raspbian/4.8.3+ds-2+rpi1~3^2~20^2~4^2~237^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=25520964af2b8e24b210d2993ae6912c23c38b41;p=gtk4.git ffmpeg: Hey, this variable is const now! --- diff --git a/modules/media/gtkffmediafile.c b/modules/media/gtkffmediafile.c index ff5225e845..819d14d2c1 100644 --- a/modules/media/gtkffmediafile.c +++ b/modules/media/gtkffmediafile.c @@ -483,7 +483,7 @@ gtk_ff_media_file_open (GtkMediaFile *file) { GtkFfMediaFile *video = GTK_FF_MEDIA_FILE (file); AVStream *stream; - AVCodec *codec; + const AVCodec *codec; int errnum; video->format_ctx = avformat_alloc_context ();