Remove `const` from some fields

This commit is contained in:
Jesse Talavera 2024-12-16 16:45:12 -05:00
parent 7d31c65af1
commit 3c73b36cca
1 changed files with 2 additions and 2 deletions

View File

@ -81,8 +81,8 @@ typedef struct ffmpeg_camera
sthread_t *poll_thread;
AVFormatContext *format_context;
AVCodecContext *decoder_context;
const AVCodec *decoder;
const AVInputFormat *input_format; /* owned by ffmpeg, don't free it */
AVCodec *decoder;
AVInputFormat *input_format; /* owned by ffmpeg, don't free it */
AVDictionary *demuxer_options;
AVPacket *packet;
AVFrame *camera_frame;