2024-11-13 15:39:13 +00:00
|
|
|
use crate::{bail_ffmpeg, cstr, set_opts, Encoder, AVIO_BUFFER_SIZE};
|
2024-11-13 13:32:46 +00:00
|
|
|
use anyhow::{bail, Result};
|
|
|
|
use ffmpeg_sys_the_third::{
|
2024-11-13 16:41:15 +00:00
|
|
|
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, AVStream, AVERROR_EOF, AVFMT_GLOBALHEADER,
|
|
|
|
AVFMT_NOFILE, AVIO_FLAG_DIRECT, AVIO_FLAG_WRITE, AV_CODEC_FLAG_GLOBAL_HEADER,
|
2024-11-13 13:32:46 +00:00
|
|
|
};
|
|
|
|
use slimbox::{slimbox_unsize, SlimBox, SlimMut};
|
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::io::{Read, Seek, SeekFrom, Write};
|
|
|
|
use std::{ptr, slice};
|
|
|
|
|
2024-11-13 15:39:13 +00:00
|
|
|
unsafe extern "C" fn write_data<T>(
|
2024-11-13 13:32:46 +00:00
|
|
|
opaque: *mut libc::c_void,
|
|
|
|
buffer: *const u8,
|
|
|
|
size: libc::c_int,
|
2024-11-13 15:39:13 +00:00
|
|
|
) -> libc::c_int
|
|
|
|
where
|
|
|
|
T: Write + 'static + ?Sized,
|
|
|
|
{
|
|
|
|
let mut writer: SlimMut<'_, T> = SlimMut::from_raw(opaque);
|
2024-11-13 13:32:46 +00:00
|
|
|
let data = slice::from_raw_parts(buffer, size as usize);
|
|
|
|
match writer.write_all(data) {
|
|
|
|
Ok(_) => size,
|
|
|
|
Err(e) => {
|
|
|
|
eprintln!("write_data {}", e);
|
|
|
|
AVERROR_EOF
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn seek_data(opaque: *mut libc::c_void, offset: i64, whence: libc::c_int) -> i64 {
|
|
|
|
let mut writer: SlimMut<'_, dyn WriteSeek + 'static> = SlimMut::from_raw(opaque);
|
|
|
|
match whence {
|
|
|
|
libc::SEEK_SET => writer.seek(SeekFrom::Start(offset as u64)).unwrap_or(0) as i64,
|
|
|
|
libc::SEEK_CUR => writer.seek(SeekFrom::Current(offset)).unwrap_or(0) as i64,
|
|
|
|
libc::SEEK_END => writer.seek(SeekFrom::End(offset)).unwrap_or(0) as i64,
|
|
|
|
_ => panic!("seek_data not supported from whence {}", whence),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Muxer {
|
|
|
|
ctx: *mut AVFormatContext,
|
|
|
|
output: MuxerOutput,
|
2024-11-14 13:09:24 +00:00
|
|
|
url: Option<String>,
|
|
|
|
format: Option<String>,
|
2024-11-13 13:32:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait WriteSeek: Seek + Write {}
|
|
|
|
impl<T: Seek + Write> WriteSeek for T {}
|
|
|
|
|
|
|
|
pub enum MuxerOutput {
|
|
|
|
Url(String),
|
2024-11-13 15:39:13 +00:00
|
|
|
WriterSeeker(Option<SlimBox<dyn WriteSeek + 'static>>),
|
|
|
|
Writer(Option<SlimBox<dyn Write + 'static>>),
|
2024-11-13 13:32:46 +00:00
|
|
|
}
|
|
|
|
|
2024-11-13 15:39:13 +00:00
|
|
|
impl TryInto<*mut AVIOContext> for &mut MuxerOutput {
|
|
|
|
type Error = anyhow::Error;
|
|
|
|
|
|
|
|
fn try_into(self) -> Result<*mut AVIOContext, Self::Error> {
|
2024-11-13 13:32:46 +00:00
|
|
|
unsafe {
|
2024-11-13 15:39:13 +00:00
|
|
|
Ok(match self {
|
|
|
|
MuxerOutput::Writer(ref mut w) => {
|
|
|
|
let writer = w.take().expect("writer already consumed");
|
|
|
|
let pb = avio_alloc_context(
|
|
|
|
av_mallocz(AVIO_BUFFER_SIZE) as *mut _,
|
|
|
|
AVIO_BUFFER_SIZE as _,
|
|
|
|
1,
|
|
|
|
writer.into_raw(),
|
|
|
|
None,
|
|
|
|
Some(write_data::<dyn Write + 'static>),
|
|
|
|
None,
|
|
|
|
);
|
|
|
|
|
|
|
|
if pb.is_null() {
|
|
|
|
bail!("failed to allocate AVIO from MuxerOutput");
|
|
|
|
}
|
|
|
|
pb
|
2024-11-13 13:32:46 +00:00
|
|
|
}
|
2024-11-13 15:39:13 +00:00
|
|
|
MuxerOutput::WriterSeeker(ref mut w) => {
|
|
|
|
let writer = w.take().expect("writer already consumed");
|
|
|
|
let pb = avio_alloc_context(
|
|
|
|
av_mallocz(AVIO_BUFFER_SIZE) as *mut _,
|
|
|
|
AVIO_BUFFER_SIZE as _,
|
|
|
|
1,
|
|
|
|
writer.into_raw(),
|
|
|
|
None,
|
|
|
|
Some(write_data::<dyn WriteSeek + 'static>),
|
|
|
|
Some(seek_data),
|
|
|
|
);
|
|
|
|
|
|
|
|
if pb.is_null() {
|
|
|
|
bail!("failed to allocate AVIO from MuxerOutput");
|
|
|
|
}
|
|
|
|
pb
|
|
|
|
}
|
|
|
|
MuxerOutput::Url(_) => ptr::null_mut(),
|
|
|
|
})
|
2024-11-13 13:32:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct MuxerBuilder {
|
2024-11-14 10:34:36 +00:00
|
|
|
ctx: *mut AVFormatContext,
|
|
|
|
output: MuxerOutput,
|
2024-11-14 13:09:24 +00:00
|
|
|
url: Option<String>,
|
|
|
|
format: Option<String>,
|
2024-11-13 13:32:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl MuxerBuilder {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self {
|
2024-11-14 10:34:36 +00:00
|
|
|
ctx: ptr::null_mut(),
|
|
|
|
output: MuxerOutput::Url(String::new()),
|
2024-11-14 13:09:24 +00:00
|
|
|
url: None,
|
|
|
|
format: None,
|
2024-11-13 13:32:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn init_ctx(
|
2024-11-14 13:09:24 +00:00
|
|
|
ctx: &mut *mut AVFormatContext,
|
2024-11-13 15:39:13 +00:00
|
|
|
dst: Option<&str>,
|
2024-11-13 13:32:46 +00:00
|
|
|
format: Option<&str>,
|
|
|
|
) -> Result<()> {
|
2024-11-14 13:09:24 +00:00
|
|
|
if !ctx.is_null() {
|
2024-11-13 13:32:46 +00:00
|
|
|
bail!("context already open");
|
|
|
|
}
|
|
|
|
|
|
|
|
let ret = avformat_alloc_output_context2(
|
2024-11-14 13:09:24 +00:00
|
|
|
ctx,
|
2024-11-13 13:32:46 +00:00
|
|
|
ptr::null_mut(),
|
|
|
|
if let Some(format) = format {
|
|
|
|
cstr!(format)
|
|
|
|
} else {
|
|
|
|
ptr::null()
|
|
|
|
},
|
2024-11-13 15:39:13 +00:00
|
|
|
if let Some(dst) = dst {
|
|
|
|
cstr!(dst)
|
|
|
|
} else {
|
|
|
|
ptr::null()
|
|
|
|
},
|
2024-11-13 13:32:46 +00:00
|
|
|
);
|
|
|
|
bail_ffmpeg!(ret);
|
|
|
|
|
|
|
|
// Setup global header flag
|
2024-11-14 13:09:24 +00:00
|
|
|
if (*(**ctx).oformat).flags & AVFMT_GLOBALHEADER != 0 {
|
|
|
|
(**ctx).flags |= AV_CODEC_FLAG_GLOBAL_HEADER as libc::c_int;
|
2024-11-13 13:32:46 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Open the muxer with a destination path
|
2024-11-14 13:09:24 +00:00
|
|
|
pub unsafe fn with_output_path<'a, T>(mut self, dst: T, format: Option<&'a str>) -> Result<Self>
|
2024-11-13 13:32:46 +00:00
|
|
|
where
|
|
|
|
T: Into<&'a str>,
|
|
|
|
{
|
|
|
|
let path_str = dst.into();
|
2024-11-14 13:09:24 +00:00
|
|
|
Self::init_ctx(&mut self.ctx, Some(path_str), format)?;
|
|
|
|
self.url = Some(path_str.to_string());
|
2024-11-14 10:34:36 +00:00
|
|
|
self.output = MuxerOutput::Url(path_str.to_string());
|
2024-11-13 13:32:46 +00:00
|
|
|
Ok(self)
|
|
|
|
}
|
|
|
|
|
2024-11-13 15:39:13 +00:00
|
|
|
/// Create a muxer using a custom IO context
|
|
|
|
/// This impl requires [Seek] trait as some muxers need seek support
|
|
|
|
pub unsafe fn with_output_write_seek<W>(
|
2024-11-13 13:32:46 +00:00
|
|
|
mut self,
|
|
|
|
writer: W,
|
2024-11-13 15:39:13 +00:00
|
|
|
format: Option<&str>,
|
2024-11-13 13:32:46 +00:00
|
|
|
) -> Result<Self>
|
|
|
|
where
|
|
|
|
W: WriteSeek + 'static,
|
|
|
|
{
|
2024-11-14 13:09:24 +00:00
|
|
|
Self::init_ctx(&mut self.ctx, None, format)?;
|
|
|
|
self.format = format.map(str::to_string);
|
2024-11-14 10:34:36 +00:00
|
|
|
self.output = MuxerOutput::WriterSeeker(Some(slimbox_unsize!(writer)));
|
2024-11-13 15:39:13 +00:00
|
|
|
Ok(self)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a muxer using a custom IO context
|
2024-11-14 13:09:24 +00:00
|
|
|
pub unsafe fn with_output_write<W>(mut self, writer: W, format: Option<&str>) -> Result<Self>
|
2024-11-13 15:39:13 +00:00
|
|
|
where
|
|
|
|
W: Write + 'static,
|
|
|
|
{
|
2024-11-14 13:09:24 +00:00
|
|
|
Self::init_ctx(&mut self.ctx, None, format)?;
|
2024-11-14 10:34:36 +00:00
|
|
|
self.output = MuxerOutput::Writer(Some(slimbox_unsize!(writer)));
|
2024-11-13 13:32:46 +00:00
|
|
|
Ok(self)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Add a stream to the output using an existing encoder
|
2024-11-14 10:34:36 +00:00
|
|
|
pub unsafe fn with_stream_encoder(self, encoder: &Encoder) -> Result<Self> {
|
|
|
|
Self::add_stream_from_encoder(self.ctx, encoder)?;
|
2024-11-13 13:32:46 +00:00
|
|
|
Ok(self)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Add a stream to the output using an existing input stream (copy)
|
2024-11-14 10:34:36 +00:00
|
|
|
pub unsafe fn with_copy_stream(self, in_stream: *mut AVStream) -> Result<Self> {
|
|
|
|
Self::add_copy_stream(self.ctx, in_stream)?;
|
2024-11-13 13:32:46 +00:00
|
|
|
Ok(self)
|
|
|
|
}
|
|
|
|
|
2024-11-14 10:34:36 +00:00
|
|
|
/// Apply custom options to the [AVFormatContext]
|
|
|
|
pub unsafe fn with_custom_options<F>(self, f_mod: F) -> Self
|
|
|
|
where
|
|
|
|
F: FnOnce(*mut AVFormatContext),
|
|
|
|
{
|
|
|
|
f_mod(self.ctx);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2024-11-13 13:32:46 +00:00
|
|
|
/// Build the muxer
|
|
|
|
pub fn build(self) -> Result<Muxer> {
|
2024-11-14 10:34:36 +00:00
|
|
|
if self.ctx.is_null() {
|
2024-11-13 13:32:46 +00:00
|
|
|
bail!("context is null");
|
|
|
|
}
|
2024-11-14 10:34:36 +00:00
|
|
|
Ok(Muxer {
|
|
|
|
ctx: self.ctx,
|
|
|
|
output: self.output,
|
2024-11-14 13:09:24 +00:00
|
|
|
url: self.url,
|
|
|
|
format: self.format,
|
2024-11-14 10:34:36 +00:00
|
|
|
})
|
2024-11-13 13:32:46 +00:00
|
|
|
}
|
|
|
|
|
2024-11-14 10:34:36 +00:00
|
|
|
pub unsafe fn add_stream_from_encoder(
|
|
|
|
ctx: *mut AVFormatContext,
|
|
|
|
encoder: &Encoder,
|
|
|
|
) -> Result<*mut AVStream> {
|
|
|
|
if ctx.is_null() {
|
|
|
|
bail!("cannot add stream to null ctx");
|
|
|
|
}
|
|
|
|
let stream = avformat_new_stream(ctx, encoder.codec());
|
2024-11-13 13:32:46 +00:00
|
|
|
if stream.is_null() {
|
|
|
|
bail!("unable to allocate stream");
|
|
|
|
}
|
|
|
|
let ret = avcodec_parameters_from_context((*stream).codecpar, encoder.codec_context());
|
|
|
|
bail_ffmpeg!(ret);
|
|
|
|
|
|
|
|
// setup other stream params
|
|
|
|
let encoder_ctx = encoder.codec_context();
|
|
|
|
(*stream).time_base = (*encoder_ctx).time_base;
|
|
|
|
(*stream).avg_frame_rate = (*encoder_ctx).framerate;
|
|
|
|
(*stream).r_frame_rate = (*encoder_ctx).framerate;
|
|
|
|
|
|
|
|
Ok(stream)
|
|
|
|
}
|
|
|
|
|
2024-11-14 10:34:36 +00:00
|
|
|
pub(crate) unsafe fn add_copy_stream(
|
|
|
|
ctx: *mut AVFormatContext,
|
|
|
|
in_stream: *mut AVStream,
|
|
|
|
) -> Result<*mut AVStream> {
|
|
|
|
if ctx.is_null() {
|
|
|
|
bail!("cannot add stream to null ctx");
|
|
|
|
}
|
|
|
|
let stream = avformat_new_stream(ctx, ptr::null_mut());
|
2024-11-13 13:32:46 +00:00
|
|
|
if stream.is_null() {
|
|
|
|
bail!("unable to allocate stream");
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy params from input
|
|
|
|
let ret = avcodec_parameters_copy((*stream).codecpar, (*in_stream).codecpar);
|
|
|
|
bail_ffmpeg!(ret);
|
|
|
|
|
|
|
|
Ok(stream)
|
|
|
|
}
|
2024-11-14 10:34:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Muxer {
|
|
|
|
pub fn builder() -> MuxerBuilder {
|
|
|
|
MuxerBuilder::new()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Add a stream to the output using an existing encoder
|
|
|
|
pub unsafe fn add_stream_encoder(&mut self, encoder: &Encoder) -> Result<*mut AVStream> {
|
|
|
|
MuxerBuilder::add_stream_from_encoder(self.ctx, encoder)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Add a stream to the output using an existing input stream (copy)
|
|
|
|
pub unsafe fn add_copy_stream(&mut self, in_stream: *mut AVStream) -> Result<*mut AVStream> {
|
|
|
|
MuxerBuilder::add_copy_stream(self.ctx, in_stream)
|
|
|
|
}
|
2024-11-13 13:32:46 +00:00
|
|
|
|
2024-11-14 13:09:24 +00:00
|
|
|
/// Initialize the context, usually after it was closed with [Muxer::reset]
|
|
|
|
pub unsafe fn init(&mut self) -> Result<()> {
|
|
|
|
MuxerBuilder::init_ctx(
|
|
|
|
&mut self.ctx,
|
|
|
|
self.url.as_ref().map(|v| v.as_str()),
|
|
|
|
self.format.as_ref().map(|v| v.as_str()),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Change the muxer URL
|
|
|
|
pub fn set_url(&mut self, url: Option<String>) -> Result<()> {
|
|
|
|
if !self.ctx.is_null() {
|
|
|
|
bail!("Cannot change url while initialized, use reset first");
|
|
|
|
}
|
|
|
|
self.url = url;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Change the muxer format
|
|
|
|
pub fn set_format(&mut self, format: Option<String>) -> Result<()> {
|
|
|
|
if !self.ctx.is_null() {
|
|
|
|
bail!("Cannot change format while initialized, use reset first");
|
|
|
|
}
|
|
|
|
self.format = format;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2024-11-13 13:32:46 +00:00
|
|
|
/// Open the output to start sending packets
|
2024-11-14 11:12:02 +00:00
|
|
|
pub unsafe fn open(&mut self, options: Option<HashMap<String, String>>) -> Result<()> {
|
|
|
|
// Set options on ctx
|
|
|
|
if let Some(opts) = options {
|
|
|
|
set_opts((*self.ctx).priv_data, opts)?;
|
|
|
|
}
|
|
|
|
|
2024-11-13 13:32:46 +00:00
|
|
|
if (*(*self.ctx).oformat).flags & AVFMT_NOFILE == 0 {
|
2024-11-13 15:39:13 +00:00
|
|
|
(*self.ctx).pb = (&mut self.output).try_into()?;
|
|
|
|
// if pb is still null, open with ctx.url
|
|
|
|
if (*self.ctx).pb.is_null() {
|
2024-11-13 13:32:46 +00:00
|
|
|
let ret = avio_open(&mut (*self.ctx).pb, (*self.ctx).url, AVIO_FLAG_WRITE);
|
|
|
|
bail_ffmpeg!(ret);
|
2024-11-13 15:39:13 +00:00
|
|
|
} else {
|
|
|
|
// Don't write buffer, just let the handler functions write directly
|
|
|
|
(*self.ctx).flags |= AVIO_FLAG_DIRECT;
|
2024-11-13 13:32:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let ret = avformat_write_header(self.ctx, ptr::null_mut());
|
|
|
|
bail_ffmpeg!(ret);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2024-11-14 10:34:36 +00:00
|
|
|
/// Get [AVFormatContext] pointer
|
|
|
|
pub fn context(&self) -> *mut AVFormatContext {
|
|
|
|
self.ctx
|
|
|
|
}
|
|
|
|
|
2024-11-13 13:32:46 +00:00
|
|
|
/// Write a packet to the output
|
|
|
|
pub unsafe fn write_packet(&mut self, pkt: *mut AVPacket) -> Result<()> {
|
|
|
|
let stream = *(*self.ctx).streams.add((*pkt).stream_index as usize);
|
|
|
|
av_packet_rescale_ts(pkt, (*pkt).time_base, (*stream).time_base);
|
|
|
|
(*pkt).time_base = (*stream).time_base;
|
|
|
|
|
|
|
|
let ret = av_interleaved_write_frame(self.ctx, pkt);
|
|
|
|
bail_ffmpeg!(ret);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Close the output and write the trailer
|
2024-11-14 13:09:24 +00:00
|
|
|
/// [Muxer::init] can be used to re-init the muxer
|
|
|
|
pub unsafe fn reset(&mut self) -> Result<()> {
|
2024-11-13 13:32:46 +00:00
|
|
|
let ret = av_write_trailer(self.ctx);
|
|
|
|
bail_ffmpeg!(ret);
|
2024-11-14 13:09:24 +00:00
|
|
|
self.ctx = ptr::null_mut();
|
2024-11-13 13:32:46 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-13 15:39:13 +00:00
|
|
|
impl Drop for Muxer {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
|
|
|
if !self.ctx.is_null() {
|
|
|
|
if let MuxerOutput::Writer(_) = self.output {
|
|
|
|
av_free((*(*self.ctx).pb).buffer as *mut _);
|
|
|
|
drop(SlimBox::<dyn Read>::from_raw((*(*self.ctx).pb).opaque));
|
|
|
|
}
|
|
|
|
avformat_free_context(self.ctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-13 13:32:46 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
use crate::{generate_test_frame, Scaler};
|
|
|
|
use ffmpeg_sys_the_third::AVCodecID::AV_CODEC_ID_H264;
|
|
|
|
use ffmpeg_sys_the_third::AVPixelFormat::AV_PIX_FMT_YUV420P;
|
|
|
|
use ffmpeg_sys_the_third::{AVFrame, AV_PROFILE_H264_MAIN};
|
2024-11-13 15:39:13 +00:00
|
|
|
use std::path::PathBuf;
|
2024-11-13 13:32:46 +00:00
|
|
|
|
|
|
|
unsafe fn setup_encoder() -> Result<(*mut AVFrame, Encoder)> {
|
|
|
|
std::fs::create_dir_all("test_output")?;
|
|
|
|
let frame = generate_test_frame();
|
|
|
|
|
|
|
|
// convert frame to YUV
|
|
|
|
let mut scaler = Scaler::new();
|
|
|
|
let frame = scaler.process_frame(
|
|
|
|
frame,
|
|
|
|
(*frame).width as u16,
|
|
|
|
(*frame).height as u16,
|
|
|
|
AV_PIX_FMT_YUV420P,
|
|
|
|
)?;
|
|
|
|
|
2024-11-13 15:39:13 +00:00
|
|
|
let encoder = Encoder::new(AV_CODEC_ID_H264)?
|
2024-11-13 13:32:46 +00:00
|
|
|
.with_width((*frame).width)
|
|
|
|
.with_height((*frame).height)
|
|
|
|
.with_pix_fmt(AV_PIX_FMT_YUV420P)
|
|
|
|
.with_bitrate(1_000_000)
|
|
|
|
.with_framerate(30.0)
|
|
|
|
.with_profile(AV_PROFILE_H264_MAIN)
|
|
|
|
.with_level(50)
|
|
|
|
.open(None)?;
|
|
|
|
Ok((frame, encoder))
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn write_frames(
|
2024-11-14 13:09:24 +00:00
|
|
|
muxer: &mut Muxer,
|
2024-11-13 13:32:46 +00:00
|
|
|
mut encoder: Encoder,
|
|
|
|
frame: *mut AVFrame,
|
|
|
|
) -> Result<()> {
|
|
|
|
let mut pts = 0;
|
2024-11-18 10:35:53 +00:00
|
|
|
for _z in 0..90 {
|
2024-11-13 13:32:46 +00:00
|
|
|
(*frame).pts = pts;
|
|
|
|
for pkt in encoder.encode_frame(frame)? {
|
|
|
|
muxer.write_packet(pkt)?;
|
|
|
|
}
|
|
|
|
pts += 1;
|
|
|
|
}
|
|
|
|
// flush
|
|
|
|
for f_pk in encoder.encode_frame(ptr::null_mut())? {
|
|
|
|
muxer.write_packet(f_pk)?;
|
|
|
|
}
|
2024-11-14 13:09:24 +00:00
|
|
|
muxer.reset()?;
|
2024-11-13 13:32:46 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn encode_mkv() -> Result<()> {
|
|
|
|
std::fs::create_dir_all("test_output")?;
|
|
|
|
unsafe {
|
|
|
|
let path = PathBuf::from("test_output/test_muxer.mp4");
|
|
|
|
let (frame, encoder) = setup_encoder()?;
|
|
|
|
|
|
|
|
let mut muxer = Muxer::builder()
|
2024-11-14 11:12:02 +00:00
|
|
|
.with_output_path(path.to_str().unwrap(), None)?
|
2024-11-13 13:32:46 +00:00
|
|
|
.with_stream_encoder(&encoder)?
|
|
|
|
.build()?;
|
2024-11-14 11:12:02 +00:00
|
|
|
muxer.open(None)?;
|
2024-11-14 13:09:24 +00:00
|
|
|
write_frames(&mut muxer, encoder, frame)?;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn encode_mkv_reinit() -> Result<()> {
|
|
|
|
std::fs::create_dir_all("test_output")?;
|
|
|
|
unsafe {
|
|
|
|
let path = PathBuf::from("test_output/test_muxer_reinit_1.mp4");
|
|
|
|
let (frame, encoder) = setup_encoder()?;
|
|
|
|
|
|
|
|
let mut muxer = Muxer::builder()
|
|
|
|
.with_output_path(path.to_str().unwrap(), None)?
|
|
|
|
.with_stream_encoder(&encoder)?
|
|
|
|
.build()?;
|
|
|
|
muxer.open(None)?;
|
|
|
|
write_frames(&mut muxer, encoder, frame)?;
|
|
|
|
|
|
|
|
let path2 = PathBuf::from("test_output/test_muxer_reinit_2.mp4");
|
|
|
|
let (frame, encoder) = setup_encoder()?;
|
|
|
|
muxer.set_url(Some(path2.to_string_lossy().to_string()))?;
|
|
|
|
muxer.init()?;
|
|
|
|
muxer.add_stream_encoder(&encoder)?;
|
|
|
|
muxer.open(None)?;
|
|
|
|
write_frames(&mut muxer, encoder, frame)?;
|
2024-11-13 13:32:46 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn encode_custom_io() -> Result<()> {
|
|
|
|
std::fs::create_dir_all("test_output")?;
|
|
|
|
unsafe {
|
|
|
|
let path = PathBuf::from("test_output/test_custom_muxer.mp4");
|
|
|
|
let (frame, encoder) = setup_encoder()?;
|
|
|
|
|
|
|
|
let fout = std::fs::File::create(path)?;
|
|
|
|
let mut muxer = Muxer::builder()
|
2024-11-14 11:12:02 +00:00
|
|
|
.with_output_write_seek(fout, Some("mp4"))?
|
2024-11-13 15:39:13 +00:00
|
|
|
.with_stream_encoder(&encoder)?
|
|
|
|
.build()?;
|
2024-11-14 11:12:02 +00:00
|
|
|
muxer.open(None)?;
|
2024-11-14 13:09:24 +00:00
|
|
|
write_frames(&mut muxer, encoder, frame)?;
|
2024-11-13 15:39:13 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn encode_custom_io_non_seek() -> Result<()> {
|
|
|
|
std::fs::create_dir_all("test_output")?;
|
|
|
|
unsafe {
|
|
|
|
let path = PathBuf::from("test_output/test_custom_muxer_no_seek.ts");
|
|
|
|
let (frame, encoder) = setup_encoder()?;
|
|
|
|
|
|
|
|
let fout = std::fs::File::create(path)?;
|
|
|
|
let mut muxer = Muxer::builder()
|
2024-11-14 11:12:02 +00:00
|
|
|
.with_output_write(fout, Some("mpegts"))?
|
2024-11-13 13:32:46 +00:00
|
|
|
.with_stream_encoder(&encoder)?
|
|
|
|
.build()?;
|
2024-11-14 11:12:02 +00:00
|
|
|
muxer.open(None)?;
|
2024-11-14 13:09:24 +00:00
|
|
|
write_frames(&mut muxer, encoder, frame)?;
|
2024-11-13 13:32:46 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|