diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-10-31 22:10:41 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-11-02 07:58:38 +0100 |
commit | fdc867288697d8b052145e80911d2d338d7d02b7 (patch) | |
tree | 4355a6ea8bb1b27bfaaf96f79a8267b3e9268b75 | |
parent | 179a5c37e070f619f14289bdc0fa66a08219eed9 (diff) | |
download | ffmpeg-fdc867288697d8b052145e80911d2d338d7d02b7.tar.gz |
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.
-rw-r--r-- | libavformat/audiointerleave.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/audiointerleave.c b/libavformat/audiointerleave.c index e48f826e14..5df0bb0b40 100644 --- a/libavformat/audiointerleave.c +++ b/libavformat/audiointerleave.c @@ -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); } |