]> git.sesse.net Git - ffmpeg/commitdiff
audiointerleave: deobfuscate a function call.
authorAnton Khirnov <anton@khirnov.net>
Wed, 31 Oct 2012 21:10:41 +0000 (22:10 +0100)
committerAnton Khirnov <anton@khirnov.net>
Fri, 2 Nov 2012 06:58:38 +0000 (07:58 +0100)
right above there is if (pkt) {<do stuff>; pkt = NULL}, so pkt is just a
fancy name for NULL at this point.

libavformat/audiointerleave.c

index e48f826e1466eaf163b2986e7d2e855cb86ade20..5df0bb0b40e968d373c36b48c389a5422b430389 100644 (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);
 }