Remove `const` from some fields
This commit is contained in:
parent
7d31c65af1
commit
3c73b36cca
|
@ -81,8 +81,8 @@ typedef struct ffmpeg_camera
|
||||||
sthread_t *poll_thread;
|
sthread_t *poll_thread;
|
||||||
AVFormatContext *format_context;
|
AVFormatContext *format_context;
|
||||||
AVCodecContext *decoder_context;
|
AVCodecContext *decoder_context;
|
||||||
const AVCodec *decoder;
|
AVCodec *decoder;
|
||||||
const AVInputFormat *input_format; /* owned by ffmpeg, don't free it */
|
AVInputFormat *input_format; /* owned by ffmpeg, don't free it */
|
||||||
AVDictionary *demuxer_options;
|
AVDictionary *demuxer_options;
|
||||||
AVPacket *packet;
|
AVPacket *packet;
|
||||||
AVFrame *camera_frame;
|
AVFrame *camera_frame;
|
||||||
|
|
Loading…
Reference in New Issue