Unref the packet on error

Do not leak the packet data on error.
This commit is contained in:
Romain Vimont 2018-03-08 21:35:30 +01:00
parent a34fbd23e9
commit f9562f537a

View file

@ -106,6 +106,7 @@ static int run_decoder(void *data) {
push_frame(decoder);
} else if (ret != AVERROR(EAGAIN)) {
LOGE("Could not receive video frame: %d", ret);
av_packet_unref(&packet);
goto run_quit;
}
#else