Skip to content

Commit fc11ad7

Browse files
authored
Formatting: align arguments (#192)
1 parent a7df41a commit fc11ad7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

test/codecdoubleframe.jl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ end
2323
DoubleFrameEncoder() = DoubleFrameEncoder(Ref(false), Ref(false), Ref(false))
2424

2525
function TranscodingStreams.process(
26-
codec :: DoubleFrameEncoder,
27-
input :: TranscodingStreams.Memory,
28-
output :: TranscodingStreams.Memory,
29-
error_ref :: TranscodingStreams.Error,
26+
codec :: DoubleFrameEncoder,
27+
input :: TranscodingStreams.Memory,
28+
output :: TranscodingStreams.Memory,
29+
error_ref :: TranscodingStreams.Error,
3030
)
3131
if input.size == 0
3232
codec.got_stop_msg[] = true
@@ -92,10 +92,10 @@ end
9292
DoubleFrameDecoder() = DoubleFrameDecoder(Ref(1), Ref(0x00), Ref(0x00))
9393

9494
function TranscodingStreams.process(
95-
codec :: DoubleFrameDecoder,
96-
input :: TranscodingStreams.Memory,
97-
output :: TranscodingStreams.Memory,
98-
error_ref :: TranscodingStreams.Error,
95+
codec :: DoubleFrameDecoder,
96+
input :: TranscodingStreams.Memory,
97+
output :: TranscodingStreams.Memory,
98+
error_ref :: TranscodingStreams.Error,
9999
)
100100
Δin::Int = 0
101101
Δout::Int = 0

0 commit comments

Comments
 (0)