obs-ffmpeg: Fix warnings with FFmpeg 3.0.0+
Fixes warnings with deprecated function av_free_packet (which was replaced by av_packet_unref)
This commit is contained in:
@@ -20,3 +20,6 @@
|
||||
# define av_frame_free avcodec_free_frame
|
||||
#endif
|
||||
|
||||
#if LIBAVCODEC_VERSION_MAJOR >= 57
|
||||
#define av_free_packet av_packet_unref
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user