audiointerleave: deobfuscate a function call.

right above there is if (pkt) {<do stuff>; pkt = NULL}, so pkt is just a
fancy name for NULL at this point.
This commit is contained in:
Anton Khirnov 2012-10-31 22:10:41 +01:00
parent 179a5c37e0
commit fdc8672886
1 changed files with 1 additions and 1 deletions

View File

@ -130,5 +130,5 @@ int ff_audio_rechunk_interleave(AVFormatContext *s, AVPacket *out, AVPacket *pkt
}
}
return get_packet(s, out, pkt, flush);
return get_packet(s, out, NULL, flush);
}