chore: remove debug log

This commit is contained in:
kieran 2024-11-13 16:10:28 +00:00
parent 6d443a24bc
commit d966232e34
No known key found for this signature in database
GPG Key ID: DE71CEB3925BE941

View File

@ -1,7 +1,7 @@
use crate::{bail_ffmpeg, cstr, set_opts, Encoder, AVIO_BUFFER_SIZE};
use anyhow::{bail, Result};
use ffmpeg_sys_the_third::{
av_dump_format, av_free, av_interleaved_write_frame, av_mallocz, av_packet_rescale_ts,
av_free, av_interleaved_write_frame, av_mallocz, av_packet_rescale_ts,
av_write_trailer, avcodec_parameters_copy, avcodec_parameters_from_context,
avformat_alloc_output_context2, avformat_free_context, avformat_new_stream,
avformat_write_header, avio_alloc_context, avio_open, AVFormatContext, AVIOContext, AVPacket,
@ -276,8 +276,6 @@ impl Muxer {
let ret = avformat_write_header(self.ctx, ptr::null_mut());
bail_ffmpeg!(ret);
av_dump_format(self.ctx, 0, (*self.ctx).url, 1);
Ok(())
}