Fix things from renaming and clippy
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "ffmpeg-the-third"
|
||||
version = "5.1.1"
|
||||
version = "1.0.0+ffmpeg-5.1.2"
|
||||
build = "build.rs"
|
||||
|
||||
authors = ["meh. <meh@schizofreni.co>", "Zhiming Wang <i@zhimingwang.org>"]
|
||||
@ -120,9 +120,9 @@ libc = "0.2"
|
||||
bitflags = "1.2"
|
||||
|
||||
[dependencies.image]
|
||||
version = "0.23"
|
||||
version = "0.24"
|
||||
optional = true
|
||||
|
||||
[dependencies.ffmpeg-sys-the-third]
|
||||
version = "5.1.1"
|
||||
version = "1.0.0"
|
||||
default-features = false
|
||||
|
@ -1,4 +1,4 @@
|
||||
extern crate ffmpeg_next as ffmpeg;
|
||||
extern crate ffmpeg_the_third as ffmpeg;
|
||||
|
||||
use std::env;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
extern crate ffmpeg_next as ffmpeg;
|
||||
extern crate ffmpeg_the_third as ffmpeg;
|
||||
|
||||
use std::env;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
extern crate ffmpeg_next as ffmpeg;
|
||||
extern crate ffmpeg_the_third as ffmpeg;
|
||||
|
||||
use ffmpeg::format::{input, Pixel};
|
||||
use ffmpeg::media::Type;
|
||||
|
@ -1,4 +1,4 @@
|
||||
extern crate ffmpeg_next as ffmpeg;
|
||||
extern crate ffmpeg_the_third as ffmpeg;
|
||||
|
||||
use std::env;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
extern crate ffmpeg_next as ffmpeg;
|
||||
extern crate ffmpeg_the_third as ffmpeg;
|
||||
|
||||
use std::env;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
extern crate ffmpeg_next as ffmpeg;
|
||||
extern crate ffmpeg_the_third as ffmpeg;
|
||||
|
||||
use std::env;
|
||||
use std::path::Path;
|
||||
|
@ -15,7 +15,7 @@
|
||||
// transcode-x264 input.flv output.mp4
|
||||
// transcode-x264 input.mkv output.mkv 'preset=veryslow,crf=18'
|
||||
|
||||
extern crate ffmpeg_next as ffmpeg;
|
||||
extern crate ffmpeg_the_third as ffmpeg;
|
||||
|
||||
use std::collections::HashMap;
|
||||
use std::env;
|
||||
|
@ -101,7 +101,7 @@ impl Context {
|
||||
unsafe {
|
||||
(*self.as_mut_ptr()).thread_type = config.kind.into();
|
||||
(*self.as_mut_ptr()).thread_count = config.count as c_int;
|
||||
(*self.as_mut_ptr()).thread_safe_callbacks = if config.safe { 1 } else { 0 };
|
||||
(*self.as_mut_ptr()).thread_safe_callbacks = i32::from(config.safe);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -121,7 +121,7 @@ impl Packet {
|
||||
pub fn pts(&self) -> Option<i64> {
|
||||
match self.0.pts {
|
||||
AV_NOPTS_VALUE => None,
|
||||
pts => Some(pts as i64),
|
||||
pts => Some(pts),
|
||||
}
|
||||
}
|
||||
|
||||
@ -134,7 +134,7 @@ impl Packet {
|
||||
pub fn dts(&self) -> Option<i64> {
|
||||
match self.0.dts {
|
||||
AV_NOPTS_VALUE => None,
|
||||
dts => Some(dts as i64),
|
||||
dts => Some(dts),
|
||||
}
|
||||
}
|
||||
|
||||
@ -150,7 +150,7 @@ impl Packet {
|
||||
|
||||
#[inline]
|
||||
pub fn duration(&self) -> i64 {
|
||||
self.0.duration as i64
|
||||
self.0.duration
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
@ -192,6 +192,6 @@ impl<'a> SideData<'a> {
|
||||
}
|
||||
|
||||
pub fn data(&self) -> &[u8] {
|
||||
unsafe { slice::from_raw_parts((*self.as_ptr()).data, (*self.as_ptr()).size as usize) }
|
||||
unsafe { slice::from_raw_parts((*self.as_ptr()).data, (*self.as_ptr()).size) }
|
||||
}
|
||||
}
|
||||
|
@ -76,7 +76,7 @@ impl Subtitle {
|
||||
}
|
||||
|
||||
pub fn start(&self) -> u32 {
|
||||
self.0.start_display_time as u32
|
||||
self.0.start_display_time
|
||||
}
|
||||
|
||||
pub fn set_start(&mut self, value: u32) {
|
||||
@ -84,7 +84,7 @@ impl Subtitle {
|
||||
}
|
||||
|
||||
pub fn end(&self) -> u32 {
|
||||
self.0.end_display_time as u32
|
||||
self.0.end_display_time
|
||||
}
|
||||
|
||||
pub fn set_end(&mut self, value: u32) {
|
||||
|
@ -26,7 +26,7 @@ impl<'a> Chapter<'a> {
|
||||
}
|
||||
|
||||
pub fn id(&self) -> i64 {
|
||||
unsafe { (*self.as_ptr()).id as i64 }
|
||||
unsafe { (*self.as_ptr()).id }
|
||||
}
|
||||
|
||||
pub fn time_base(&self) -> Rational {
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
#[macro_use]
|
||||
extern crate bitflags;
|
||||
pub extern crate ffmpeg_sys_next as sys;
|
||||
pub extern crate ffmpeg_sys_the_third as sys;
|
||||
#[cfg(feature = "image")]
|
||||
extern crate image;
|
||||
extern crate libc;
|
||||
|
@ -69,7 +69,7 @@ impl Audio {
|
||||
#[inline]
|
||||
pub fn set_channel_layout(&mut self, value: ChannelLayout) {
|
||||
unsafe {
|
||||
(*self.as_mut_ptr()).channel_layout = value.bits() as u64;
|
||||
(*self.as_mut_ptr()).channel_layout = value.bits();
|
||||
}
|
||||
}
|
||||
|
||||
@ -140,7 +140,7 @@ impl Audio {
|
||||
panic!("out of bounds");
|
||||
}
|
||||
|
||||
if !<T as Sample>::is_valid(self.format(), self.channels() as u16) {
|
||||
if !<T as Sample>::is_valid(self.format(), self.channels()) {
|
||||
panic!("unsupported type");
|
||||
}
|
||||
|
||||
@ -153,7 +153,7 @@ impl Audio {
|
||||
panic!("out of bounds");
|
||||
}
|
||||
|
||||
if !<T as Sample>::is_valid(self.format(), self.channels() as u16) {
|
||||
if !<T as Sample>::is_valid(self.format(), self.channels()) {
|
||||
panic!("unsupported type");
|
||||
}
|
||||
|
||||
|
@ -79,8 +79,8 @@ impl Frame {
|
||||
pub fn packet(&self) -> Packet {
|
||||
unsafe {
|
||||
Packet {
|
||||
duration: (*self.as_ptr()).pkt_duration as i64,
|
||||
position: (*self.as_ptr()).pkt_pos as i64,
|
||||
duration: (*self.as_ptr()).pkt_duration,
|
||||
position: (*self.as_ptr()).pkt_pos,
|
||||
size: (*self.as_ptr()).pkt_size as usize,
|
||||
|
||||
#[cfg(not(feature = "ffmpeg_5_0"))]
|
||||
@ -95,7 +95,7 @@ impl Frame {
|
||||
unsafe {
|
||||
match (*self.as_ptr()).pts {
|
||||
AV_NOPTS_VALUE => None,
|
||||
pts => Some(pts as i64),
|
||||
pts => Some(pts),
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -112,7 +112,7 @@ impl Frame {
|
||||
unsafe {
|
||||
match (*self.as_ptr()).best_effort_timestamp {
|
||||
AV_NOPTS_VALUE => None,
|
||||
t => Some(t as i64),
|
||||
t => Some(t),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -216,7 +216,7 @@ impl<'a> SideData<'a> {
|
||||
|
||||
#[inline]
|
||||
pub fn data(&self) -> &[u8] {
|
||||
unsafe { slice::from_raw_parts((*self.as_ptr()).data, (*self.as_ptr()).size as usize) }
|
||||
unsafe { slice::from_raw_parts((*self.as_ptr()).data, (*self.as_ptr()).size) }
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
@ -3,12 +3,12 @@ use Error;
|
||||
|
||||
#[inline(always)]
|
||||
pub fn current() -> i64 {
|
||||
unsafe { av_gettime() as i64 }
|
||||
unsafe { av_gettime() }
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
pub fn relative() -> i64 {
|
||||
unsafe { av_gettime_relative() as i64 }
|
||||
unsafe { av_gettime_relative() }
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
|
Reference in New Issue
Block a user