Browse Source

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.
tags/n1.1
Anton Khirnov 13 years ago
parent
commit
fdc8672886
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/audiointerleave.c

+ 1
- 1
libavformat/audiointerleave.c 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);
}

Loading…
Cancel
Save