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:
jp9000
2016-04-08 23:42:36 -07:00
parent 2fd30407e6
commit cdcb8d1f81

View File

@@ -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