Commit 08149b2b authored by Janne Grunau's avatar Janne Grunau

wmapro: unref skipped frames

parent e3232f34
...@@ -1388,6 +1388,7 @@ static int decode_frame(WMAProDecodeCtx *s, AVFrame *frame, int *got_frame_ptr) ...@@ -1388,6 +1388,7 @@ static int decode_frame(WMAProDecodeCtx *s, AVFrame *frame, int *got_frame_ptr)
if (s->skip_frame) { if (s->skip_frame) {
s->skip_frame = 0; s->skip_frame = 0;
*got_frame_ptr = 0; *got_frame_ptr = 0;
av_frame_unref(frame);
} else { } else {
*got_frame_ptr = 1; *got_frame_ptr = 1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment