1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
use std::{
ffi::CStr,
marker::PhantomData,
ops::Drop,
ptr::{self, NonNull},
};
use crate::{
avcodec::{
AVCodecParameters, AVCodecParametersMut, AVCodecParametersRef, AVCodecRef, AVPacket,
},
avformat::{AVIOContext, AVIOContextCustom, AVIOContextURL},
avutil::{AVDictionary, AVDictionaryMut, AVDictionaryRef, AVRational},
error::{Result, RsmpegError},
ffi,
shared::*,
};
pub enum AVIOContextContainer {
Url(AVIOContextURL),
Custom(AVIOContextCustom),
}
wrap! {
AVFormatContextInput: ffi::AVFormatContext,
io_context: Option<AVIOContextContainer> = None,
}
impl AVFormatContextInput {
pub fn open(filename: &CStr) -> Result<Self> {
let mut input_format_context = ptr::null_mut();
unsafe {
ffi::avformat_open_input(
&mut input_format_context,
filename.as_ptr(),
ptr::null_mut(),
ptr::null_mut(),
)
}
.upgrade()
.map_err(RsmpegError::OpenInputError)?;
let mut context = unsafe { Self::from_raw(NonNull::new(input_format_context).unwrap()) };
unsafe { ffi::avformat_find_stream_info(context.as_mut_ptr(), ptr::null_mut()) }
.upgrade()
.map_err(|_| RsmpegError::FindStreamInfoError)?;
Ok(context)
}
pub fn from_io_context(mut io_context: AVIOContextContainer) -> Result<Self> {
let input_format_context = {
let input_format_context = unsafe { ffi::avformat_alloc_context() }.upgrade().unwrap();
unsafe {
(*input_format_context.as_ptr()).pb = match &mut io_context {
AVIOContextContainer::Url(ctx) => ctx.as_mut_ptr(),
AVIOContextContainer::Custom(ctx) => ctx.as_mut_ptr(),
};
}
input_format_context
};
unsafe {
ffi::avformat_open_input(
&mut input_format_context.as_ptr(),
ptr::null_mut(),
ptr::null_mut(),
ptr::null_mut(),
)
}
.upgrade()
.map_err(RsmpegError::OpenInputError)?;
let mut input_format_context = unsafe { Self::from_raw(input_format_context) };
input_format_context.io_context = Some(io_context);
unsafe {
ffi::avformat_find_stream_info(input_format_context.as_mut_ptr(), ptr::null_mut())
}
.upgrade()
.map_err(|_| RsmpegError::FindStreamInfoError)?;
Ok(input_format_context)
}
pub fn dump(&mut self, index: usize, filename: &CStr) -> Result<()> {
unsafe {
ffi::av_dump_format(self.as_mut_ptr(), index as i32, filename.as_ptr(), 0);
}
Ok(())
}
pub fn read_packet(&mut self) -> Result<Option<AVPacket>> {
let mut packet = AVPacket::new();
match unsafe { ffi::av_read_frame(self.as_mut_ptr(), packet.as_mut_ptr()) }.upgrade() {
Ok(_) => Ok(Some(packet)),
Err(ffi::AVERROR_EOF) => Ok(None),
Err(x) => Err(RsmpegError::ReadFrameError(x)),
}
}
pub fn find_best_stream(
&self,
media_type: ffi::AVMediaType,
) -> Result<Option<(usize, AVCodecRef<'static>)>> {
let dec = ptr::null_mut();
let mut dec = dec as _;
match unsafe {
ffi::av_find_best_stream(self.as_ptr() as *mut _, media_type, -1, -1, &mut dec, 0)
}
.upgrade()
{
Ok(index) => Ok(Some((index as usize, unsafe {
AVCodecRef::from_raw(NonNull::new(dec as *mut _).unwrap())
}))),
Err(ffi::AVERROR_STREAM_NOT_FOUND) => Ok(None),
Err(e) => Err(RsmpegError::AVError(e)),
}
}
}
impl<'stream> AVFormatContextInput {
pub fn streams(&'stream self) -> AVStreamRefs<'stream> {
AVStreamRefs {
stream_head: NonNull::new(self.streams as *mut _).unwrap(),
len: self.nb_streams,
_marker: PhantomData,
}
}
pub fn iformat(&'stream self) -> AVInputFormatRef<'stream> {
unsafe { AVInputFormatRef::from_raw(NonNull::new(self.iformat as *mut _).unwrap()) }
}
pub fn metadata(&'stream self) -> Option<AVDictionaryRef<'stream>> {
NonNull::new(self.metadata).map(|x| unsafe { AVDictionaryRef::from_raw(x) })
}
}
impl Drop for AVFormatContextInput {
fn drop(&mut self) {
let mut context = self.as_mut_ptr();
unsafe { ffi::avformat_close_input(&mut context) }
}
}
wrap! {
AVFormatContextOutput: ffi::AVFormatContext,
io_context: Option<AVIOContextContainer> = None,
}
impl AVFormatContextOutput {
pub fn create(filename: &CStr, io_context: Option<AVIOContextContainer>) -> Result<Self> {
let mut output_format_context = ptr::null_mut();
unsafe {
ffi::avformat_alloc_output_context2(
&mut output_format_context,
ptr::null_mut(),
ptr::null_mut(),
filename.as_ptr(),
)
}
.upgrade()
.map_err(|_| RsmpegError::OpenOutputError)?;
let mut output_format_context =
unsafe { Self::from_raw(NonNull::new(output_format_context).unwrap()) };
if unsafe { *output_format_context.oformat }.flags & ffi::AVFMT_NOFILE as i32 == 0 {
let mut io_context = match io_context {
Some(x) => x,
None => {
AVIOContextContainer::Url(AVIOContextURL::open(filename, ffi::AVIO_FLAG_WRITE)?)
}
};
unsafe {
output_format_context.deref_mut().pb = match &mut io_context {
AVIOContextContainer::Url(ctx) => ctx.as_mut_ptr(),
AVIOContextContainer::Custom(ctx) => ctx.as_mut_ptr(),
};
}
output_format_context.io_context = Some(io_context);
}
Ok(output_format_context)
}
pub fn write_header(&mut self) -> Result<()> {
unsafe { ffi::avformat_write_header(self.as_mut_ptr(), ptr::null_mut()) }
.upgrade()
.map_err(RsmpegError::WriteHeaderError)?;
Ok(())
}
pub fn write_trailer(&mut self) -> Result<()> {
unsafe { ffi::av_write_trailer(self.as_mut_ptr()) }
.upgrade()
.map_err(|_| RsmpegError::WriteTrailerError)?;
Ok(())
}
pub fn dump(&mut self, index: i32, filename: &CStr) -> Result<()> {
unsafe {
ffi::av_dump_format(self.as_mut_ptr(), index, filename.as_ptr(), 1);
}
Ok(())
}
pub fn write_frame(&mut self, packet: &mut AVPacket) -> Result<()> {
unsafe { ffi::av_write_frame(self.as_mut_ptr(), packet.as_mut_ptr()) }
.upgrade()
.map_err(|_| RsmpegError::WriteFrameError)?;
Ok(())
}
pub fn interleaved_write_frame(&mut self, packet: &mut AVPacket) -> Result<()> {
unsafe { ffi::av_interleaved_write_frame(self.as_mut_ptr(), packet.as_mut_ptr()) }
.upgrade()
.map_err(RsmpegError::InterleavedWriteFrameError)?;
Ok(())
}
}
impl<'stream> AVFormatContextOutput {
pub fn streams(&'stream self) -> AVStreamRefs<'stream> {
AVStreamRefs {
stream_head: NonNull::new(self.streams as *mut _).unwrap(),
len: self.nb_streams,
_marker: PhantomData,
}
}
pub fn oformat(&'stream self) -> AVOutputFormatRef<'stream> {
unsafe { AVOutputFormatRef::from_raw(NonNull::new(self.oformat as *mut _).unwrap()) }
}
pub fn new_stream(&'stream mut self) -> AVStreamMut<'stream> {
let new_stream = unsafe { ffi::avformat_new_stream(self.as_mut_ptr(), ptr::null()) }
.upgrade()
.unwrap();
unsafe { AVStreamMut::from_raw(new_stream) }
}
}
impl Drop for AVFormatContextOutput {
fn drop(&mut self) {
if unsafe { *self.oformat }.flags & ffi::AVFMT_NOFILE as i32 == 0 {
if let Some(pb) = NonNull::new(self.pb) {
let _ = unsafe { AVIOContext::from_raw(pb) };
}
}
unsafe {
ffi::avformat_free_context(self.as_mut_ptr());
}
}
}
wrap_ref!(AVInputFormat: ffi::AVInputFormat);
wrap_ref!(AVOutputFormat: ffi::AVOutputFormat);
wrap_ref_mut!(AVStream: ffi::AVStream);
settable!(AVStream {
time_base: AVRational,
});
impl AVStream {
pub fn guess_framerate(&self) -> Option<AVRational> {
Some(unsafe {
ffi::av_guess_frame_rate(ptr::null_mut(), self.as_ptr() as *mut _, ptr::null_mut())
})
}
pub fn get_end_pts(&self) -> Option<i64> {
let result = unsafe { ffi::av_stream_get_end_pts(self.as_ptr()) };
(result >= 0).then(|| result as i64)
}
}
impl<'stream> AVStream {
pub fn codecpar(&'stream self) -> AVCodecParametersRef<'stream> {
unsafe { AVCodecParametersRef::from_raw(NonNull::new(self.codecpar).unwrap()) }
}
pub fn codecpar_mut(&'stream mut self) -> AVCodecParametersMut<'stream> {
unsafe { AVCodecParametersMut::from_raw(NonNull::new(self.codecpar).unwrap()) }
}
pub fn set_codecpar(&mut self, parameters: AVCodecParameters) {
if let Some(codecpar) = self.codecpar.upgrade() {
let _ = unsafe { AVCodecParameters::from_raw(codecpar) };
}
unsafe {
self.deref_mut().codecpar = parameters.into_raw().as_ptr();
}
}
pub fn metadata(&'stream self) -> Option<AVDictionaryRef<'stream>> {
NonNull::new(self.metadata).map(|x| unsafe { AVDictionaryRef::from_raw(x) })
}
pub fn metadata_mut(&'stream mut self) -> Option<AVDictionaryMut<'stream>> {
NonNull::new(self.metadata).map(|x| unsafe { AVDictionaryMut::from_raw(x) })
}
pub fn set_metadata(&mut self, dict: Option<AVDictionary>) {
let _ = NonNull::new(self.metadata).map(|x| unsafe { AVDictionary::from_raw(x) });
unsafe {
self.deref_mut().metadata = dict
.map(|x| x.into_raw().as_ptr())
.unwrap_or(ptr::null_mut());
}
}
}
pub struct AVStreamRefsIter<'stream> {
ptr: NonNull<NonNull<ffi::AVStream>>,
end: NonNull<NonNull<ffi::AVStream>>,
_marker: PhantomData<&'stream ffi::AVStream>,
}
impl<'stream> std::iter::Iterator for AVStreamRefsIter<'stream> {
type Item = AVStreamRef<'stream>;
fn next(&mut self) -> Option<Self::Item> {
if self.ptr == self.end {
None
} else {
let old = self.ptr;
unsafe {
self.ptr = NonNull::new_unchecked(self.ptr.as_ptr().offset(1));
}
Some(unsafe { AVStreamRef::from_raw(*old.as_ref()) })
}
}
}
pub struct AVStreamRefs<'stream> {
stream_head: NonNull<NonNull<ffi::AVStream>>,
len: u32,
_marker: PhantomData<&'stream ffi::AVStream>,
}
impl<'stream> std::iter::IntoIterator for AVStreamRefs<'stream> {
type Item = AVStreamRef<'stream>;
type IntoIter = AVStreamRefsIter<'stream>;
fn into_iter(self) -> Self::IntoIter {
let end =
NonNull::new(unsafe { self.stream_head.as_ptr().add(self.len as usize) }).unwrap();
AVStreamRefsIter {
ptr: self.stream_head,
end,
_marker: PhantomData,
}
}
}
impl<'stream> AVStreamRefs<'stream> {
pub fn get(&self, index: usize) -> Option<AVStreamRef<'stream>> {
if index < self.len as usize {
let stream_ptr = unsafe { *self.stream_head.as_ptr().add(index) };
Some(unsafe { AVStreamRef::from_raw(stream_ptr) })
} else {
None
}
}
pub fn num(&self) -> usize {
self.len as usize
}
}