Skip to content

Commit 5d90bba

Browse files
authored
Add missing parenthesis
There is a missing ending parenthesis at transmuxing process code.
1 parent 73c5988 commit 5d90bba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ AVPacket *input_packet = av_packet_alloc();
771771
while (av_read_frame(decoder_avfc, input_packet) >= 0)
772772
{
773773
av_packet_rescale_ts(input_packet, decoder_video_avs->time_base, encoder_video_avs->time_base);
774-
av_interleaved_write_frame(*avfc, input_packet) < 0);
774+
av_interleaved_write_frame(*avfc, input_packet) < 0));
775775
}
776776
777777
av_write_trailer(encoder_avfc);

0 commit comments

Comments
 (0)