Unref the packet on error

Do not leak the packet data on error.
pull/28/head
Romain Vimont 6 years ago
parent a34fbd23e9
commit f9562f537a

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

Loading…
Cancel
Save