pub use crate::util::format::{Pixel, pixel};
pub use crate::util::format::{Sample, sample};
use crate::util::interrupt;
pub mod stream;
pub mod chapter;
pub mod context;
pub use self::context::Context;
pub mod format;
#[cfg(not(feature = "ffmpeg_5_0"))]
pub use self::format::list;
pub use self::format::{Flags, flag};
pub use self::format::{Input, Output};
pub mod network;
use std::ffi::{CStr, CString};
use std::path::Path;
use std::ptr;
use std::str::from_utf8_unchecked;
use crate::ffi::*;
use crate::{Dictionary, Error, Format};
#[cfg(not(feature = "ffmpeg_5_0"))]
pub fn register_all() {
unsafe {
av_register_all();
}
}
#[cfg(not(feature = "ffmpeg_5_0"))]
pub fn register(format: &Format) {
match *format {
Format::Input(ref format) => unsafe {
av_register_input_format(format.as_ptr() as *mut _);
},
Format::Output(ref format) => unsafe {
av_register_output_format(format.as_ptr() as *mut _);
},
}
}
pub fn version() -> u32 {
unsafe { avformat_version() }
}
pub fn configuration() -> &'static str {
unsafe { from_utf8_unchecked(CStr::from_ptr(avformat_configuration()).to_bytes()) }
}
pub fn license() -> &'static str {
unsafe { from_utf8_unchecked(CStr::from_ptr(avformat_license()).to_bytes()) }
}
fn from_path<P: AsRef<Path> + ?Sized>(path: &P) -> CString {
CString::new(path.as_ref().as_os_str().to_str().unwrap()).unwrap()
}
fn opt_cstring(s: Option<&str>) -> Result<Option<CString>, Error> {
s.map(CString::new)
.transpose()
.map_err(|_| Error::Other { errno: EINVAL })
}
pub fn open<P: AsRef<Path> + ?Sized>(path: &P, format: &Format) -> Result<Context, Error> {
unsafe {
let mut ps = ptr::null_mut();
let path = from_path(path);
match *format {
Format::Input(ref format) => match avformat_open_input(
&mut ps,
path.as_ptr(),
format.as_ptr() as *mut _,
ptr::null_mut(),
) {
0 => match avformat_find_stream_info(ps, ptr::null_mut()) {
r if r >= 0 => Ok(Context::Input(context::Input::wrap(ps))),
e => Err(Error::from(e)),
},
e => Err(Error::from(e)),
},
Format::Output(ref format) => match avformat_alloc_output_context2(
&mut ps,
format.as_ptr() as *mut _,
ptr::null(),
path.as_ptr(),
) {
0 => match avio_open(&mut (*ps).pb, path.as_ptr(), AVIO_FLAG_WRITE) {
0 => Ok(Context::Output(context::Output::wrap(ps))),
e => Err(Error::from(e)),
},
e => Err(Error::from(e)),
},
}
}
}
pub fn open_with<P: AsRef<Path> + ?Sized>(
path: &P,
format: &Format,
options: Dictionary,
) -> Result<Context, Error> {
unsafe {
let mut ps = ptr::null_mut();
let path = from_path(path);
let mut opts = options.disown();
match *format {
Format::Input(ref format) => {
let res = avformat_open_input(
&mut ps,
path.as_ptr(),
format.as_ptr() as *mut _,
&mut opts,
);
Dictionary::own(opts);
match res {
0 => match avformat_find_stream_info(ps, ptr::null_mut()) {
r if r >= 0 => Ok(Context::Input(context::Input::wrap(ps))),
e => Err(Error::from(e)),
},
e => Err(Error::from(e)),
}
}
Format::Output(ref format) => match avformat_alloc_output_context2(
&mut ps,
format.as_ptr() as *mut _,
ptr::null(),
path.as_ptr(),
) {
0 => match avio_open(&mut (*ps).pb, path.as_ptr(), AVIO_FLAG_WRITE) {
0 => Ok(Context::Output(context::Output::wrap(ps))),
e => Err(Error::from(e)),
},
e => Err(Error::from(e)),
},
}
}
}
pub fn input<P: AsRef<Path> + ?Sized>(path: &P) -> Result<context::Input, Error> {
unsafe {
let mut ps = ptr::null_mut();
let path = from_path(path);
match avformat_open_input(&mut ps, path.as_ptr(), ptr::null_mut(), ptr::null_mut()) {
0 => match avformat_find_stream_info(ps, ptr::null_mut()) {
r if r >= 0 => Ok(context::Input::wrap(ps)),
e => {
avformat_close_input(&mut ps);
Err(Error::from(e))
}
},
e => Err(Error::from(e)),
}
}
}
pub fn input_with_dictionary<P: AsRef<Path> + ?Sized>(
path: &P,
options: Dictionary,
) -> Result<context::Input, Error> {
unsafe {
let mut ps = ptr::null_mut();
let path = from_path(path);
let mut opts = options.disown();
let res = avformat_open_input(&mut ps, path.as_ptr(), ptr::null_mut(), &mut opts);
Dictionary::own(opts);
match res {
0 => match avformat_find_stream_info(ps, ptr::null_mut()) {
r if r >= 0 => Ok(context::Input::wrap(ps)),
e => {
avformat_close_input(&mut ps);
Err(Error::from(e))
}
},
e => Err(Error::from(e)),
}
}
}
pub fn input_with_interrupt<P: AsRef<Path> + ?Sized, F>(
path: &P,
closure: F,
) -> Result<context::Input, Error>
where
F: FnMut() -> bool + Send + 'static,
{
unsafe {
let mut ps = avformat_alloc_context();
if ps.is_null() {
return Err(Error::Other { errno: ENOMEM });
}
let path = from_path(path);
let interrupt = interrupt::new(Box::new(closure));
(*ps).interrupt_callback = interrupt.interrupt;
match avformat_open_input(&mut ps, path.as_ptr(), ptr::null_mut(), ptr::null_mut()) {
0 => match avformat_find_stream_info(ps, ptr::null_mut()) {
r if r >= 0 => Ok(context::Input::wrap_with_interrupt(ps, interrupt.guard)),
e => {
avformat_close_input(&mut ps);
Err(Error::from(e))
}
},
e => Err(Error::from(e)),
}
}
}
pub fn input_with_interrupt_and_dictionary<P: AsRef<Path> + ?Sized, F>(
path: &P,
closure: F,
options: Dictionary,
) -> Result<context::Input, Error>
where
F: FnMut() -> bool + Send + 'static,
{
unsafe {
let mut ps = avformat_alloc_context();
if ps.is_null() {
return Err(Error::Other { errno: ENOMEM });
}
let interrupt = interrupt::new(Box::new(closure));
(*ps).interrupt_callback = interrupt.interrupt;
let path = from_path(path);
let mut opts = options.disown();
let res = avformat_open_input(&raw mut ps, path.as_ptr(), ptr::null_mut(), &raw mut opts);
Dictionary::own(opts);
match res {
0 => match avformat_find_stream_info(ps, ptr::null_mut()) {
r if r >= 0 => Ok(context::Input::wrap_with_interrupt(ps, interrupt.guard)),
e => {
avformat_close_input(&raw mut ps);
Err(Error::from(e))
}
},
e => Err(Error::from(e)),
}
}
}
pub fn input_from_stream(
custom_io: context::StreamIo,
filename: Option<&str>,
options: Option<Dictionary>,
) -> Result<context::Input, Error> {
input_from_stream_impl(custom_io, filename, options, None)
}
pub fn input_from_stream_with_interrupt<F>(
custom_io: context::StreamIo,
filename: Option<&str>,
options: Option<Dictionary>,
closure: F,
) -> Result<context::Input, Error>
where
F: FnMut() -> bool + Send + 'static,
{
input_from_stream_impl(
custom_io,
filename,
options,
Some(interrupt::new(Box::new(closure))),
)
}
fn input_from_stream_impl(
mut custom_io: context::StreamIo,
filename: Option<&str>,
options: Option<Dictionary>,
interrupt: Option<interrupt::Interrupt>,
) -> Result<context::Input, Error> {
if custom_io.is_writable() {
return Err(Error::Other { errno: EINVAL });
}
let filename = opt_cstring(filename)?;
let filename_ptr = filename.as_ref().map_or(ptr::null(), |f| f.as_ptr());
unsafe {
let mut ps = avformat_alloc_context();
if ps.is_null() {
return Err(Error::Other { errno: ENOMEM });
}
if let Some(ref it) = interrupt {
(*ps).interrupt_callback = it.interrupt;
custom_io.set_interrupt(it.interrupt);
}
(*ps).pb = custom_io.as_mut_ptr();
(*ps).flags |= AVFMT_FLAG_CUSTOM_IO;
let result = if let Some(opts) = options {
let mut opts = opts.disown();
let res = avformat_open_input(&mut ps, filename_ptr, ptr::null_mut(), &mut opts);
Dictionary::own(opts);
res
} else {
avformat_open_input(&mut ps, filename_ptr, ptr::null_mut(), ptr::null_mut())
};
match result {
0 => match avformat_find_stream_info(ps, ptr::null_mut()) {
r if r >= 0 => Ok(match interrupt {
Some(it) => {
context::Input::wrap_with_custom_io_and_interrupt(ps, custom_io, it.guard)
}
None => context::Input::wrap_with_custom_io(ps, custom_io),
}),
e => {
avformat_close_input(&mut ps);
Err(Error::from(e))
}
},
e => Err(Error::from(e)),
}
}
}
pub fn output<P: AsRef<Path> + ?Sized>(path: &P) -> Result<context::Output, Error> {
unsafe {
let mut ps = ptr::null_mut();
let path = from_path(path);
match avformat_alloc_output_context2(&mut ps, ptr::null_mut(), ptr::null(), path.as_ptr()) {
0 => match avio_open(&mut (*ps).pb, path.as_ptr(), AVIO_FLAG_WRITE) {
0 => Ok(context::Output::wrap(ps)),
e => Err(Error::from(e)),
},
e => Err(Error::from(e)),
}
}
}
pub fn output_with<P: AsRef<Path> + ?Sized>(
path: &P,
options: Dictionary,
) -> Result<context::Output, Error> {
unsafe {
let mut ps = ptr::null_mut();
let path = from_path(path);
let mut opts = options.disown();
match avformat_alloc_output_context2(&mut ps, ptr::null_mut(), ptr::null(), path.as_ptr()) {
0 => {
let res = avio_open2(
&mut (*ps).pb,
path.as_ptr(),
AVIO_FLAG_WRITE,
ptr::null(),
&mut opts,
);
Dictionary::own(opts);
match res {
0 => Ok(context::Output::wrap(ps)),
e => Err(Error::from(e)),
}
}
e => Err(Error::from(e)),
}
}
}
pub fn output_as<P: AsRef<Path> + ?Sized>(
path: &P,
format: &str,
) -> Result<context::Output, Error> {
unsafe {
let mut ps = ptr::null_mut();
let path = from_path(path);
let format = CString::new(format).unwrap();
match avformat_alloc_output_context2(
&mut ps,
ptr::null_mut(),
format.as_ptr(),
path.as_ptr(),
) {
0 => match avio_open(&mut (*ps).pb, path.as_ptr(), AVIO_FLAG_WRITE) {
0 => Ok(context::Output::wrap(ps)),
e => Err(Error::from(e)),
},
e => Err(Error::from(e)),
}
}
}
pub fn output_as_with<P: AsRef<Path> + ?Sized>(
path: &P,
format: &str,
options: Dictionary,
) -> Result<context::Output, Error> {
unsafe {
let mut ps = ptr::null_mut();
let path = from_path(path);
let format = CString::new(format).unwrap();
let mut opts = options.disown();
match avformat_alloc_output_context2(
&mut ps,
ptr::null_mut(),
format.as_ptr(),
path.as_ptr(),
) {
0 => {
let res = avio_open2(
&mut (*ps).pb,
path.as_ptr(),
AVIO_FLAG_WRITE,
ptr::null(),
&mut opts,
);
Dictionary::own(opts);
match res {
0 => Ok(context::Output::wrap(ps)),
e => Err(Error::from(e)),
}
}
e => Err(Error::from(e)),
}
}
}
pub fn output_to_stream(
mut custom_io: context::StreamIo,
filename: Option<&str>,
format: Option<&str>,
) -> Result<context::Output, Error> {
if !custom_io.is_writable() {
return Err(Error::Other { errno: EINVAL });
}
let filename = opt_cstring(filename)?;
let filename_ptr = filename.as_ref().map_or(ptr::null(), |f| f.as_ptr());
let format = opt_cstring(format)?;
let format_ptr = format.as_ref().map_or(ptr::null(), |f| f.as_ptr());
unsafe {
let mut ps = ptr::null_mut();
match avformat_alloc_output_context2(&mut ps, ptr::null_mut(), format_ptr, filename_ptr) {
0 => {
if (*(*ps).oformat).flags & AVFMT_NOFILE != 0 {
avformat_free_context(ps);
return Err(Error::Other { errno: EINVAL });
}
(*ps).pb = custom_io.as_mut_ptr();
(*ps).flags |= AVFMT_FLAG_CUSTOM_IO;
Ok(context::Output::wrap_with_custom_io(ps, custom_io))
}
e => Err(Error::from(e)),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn input_with_interrupt_and_dictionary_accepts_str_path() {
let result = input_with_interrupt_and_dictionary(
"/ffmpeg-next-input-does-not-exist",
|| false,
Dictionary::new(),
);
assert!(result.is_err());
}
}