Closed TonalidadeHidrica closed 3 years ago
In codec:decoder::video::Video::decode implementation, avcodec_decode_video2 function is used, but this is deprecated. This should be replaced to an implementation using avcodec_send_packet and avcodec_receive_frame functions instead.
codec:decoder::video::Video::decode
avcodec_decode_video2
avcodec_send_packet
avcodec_receive_frame
I'm working on that
Fixed on master.
In
codec:decoder::video::Video::decode
implementation,avcodec_decode_video2
function is used, but this is deprecated. This should be replaced to an implementation usingavcodec_send_packet
andavcodec_receive_frame
functions instead.