silence some annoying warnings

This commit is contained in:
Megamouse 2019-12-26 21:01:48 +01:00
parent 70e26eeb45
commit ef6f565dbd
18 changed files with 80 additions and 70 deletions

View file

@ -82,10 +82,10 @@ struct vdec_frame
};
std::unique_ptr<AVFrame, frame_dtor> avf;
u64 dts;
u64 pts;
u64 userdata;
u32 frc;
u64 dts{};
u64 pts{};
u64 userdata{};
u32 frc{};
bool PicItemRecieved = false;
AVFrame* operator ->() const