Commit c3eb20ef authored by multrus's avatar multrus
Browse files

[fix] in case of skip_channel, copy the input channel to the output

parent 846f684d
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -161,6 +161,7 @@ def filter_itu(
        # process channels separately
        for channel in range(input.num_channels):
            if skip_channel and channel in skip_channel:
                output[:, channel] = input.audio[:, channel]
                continue

            cmd_in_out = cmd.copy()