You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
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:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user