deprecated av_free_packet replaced with av_packet_unref

This commit is contained in:
selim mustafaev 2017-01-03 16:23:07 +03:00
parent ed5a8c9665
commit f81444d383

View File

@ -26,7 +26,7 @@ namespace ffcpp {
Packet::~Packet() {
if(_packet.data) {
av_free_packet(&_packet);
av_packet_unref(&_packet);
}
}