Re: [FFmpeg-devel] [PATCH 3/4] doc/examples/transcoding.c: Fixed a compile warning

2020-05-02 Thread Nicolas George
Zhao, Gang (12020-05-02): > Fixed deprecated declarations compile warning by replacing deprecated > api avcodec_encode_{audio,video}2() and > avcodec_decode_{audio4,video2}() with > avcodec_send_frame()/avcodec_receive_packet() and > avcodec_send_packet()/avcodec_receive_frame(). Also made some cle

[FFmpeg-devel] [PATCH 3/4] doc/examples/transcoding.c: Fixed a compile warning

2020-05-02 Thread Zhao, Gang
Fixed deprecated declarations compile warning by replacing deprecated api avcodec_encode_{audio,video}2() and avcodec_decode_{audio4,video2}() with avcodec_send_frame()/avcodec_receive_packet() and avcodec_send_packet()/avcodec_receive_frame(). Also made some clean up according to this change. Sig