We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aee2549 commit e54b8b3Copy full SHA for e54b8b3
src/lib.rs
@@ -280,7 +280,7 @@ fn process_bsf(
280
let mut new_packet = Packet::empty();
281
let ret = av_bsf_receive_packet(filter.ptr, new_packet.as_mut_ptr());
282
if ret == AVERROR(EAGAIN) {
283
- //debug!("Required extra packets");
+ debug!("Required extra packets");
284
break;
285
}
286
if ret == AVERROR_EOF {
@@ -296,10 +296,6 @@ fn process_bsf(
296
new_packet.data().as_ref().unwrap().len()
297
);
298
new_packet.set_stream(packet.stream());
299
- //new_packet.set_flags(packet.flags());
300
- // new_packet.set_dts(packet.dts());
301
- // new_packet.set_pts(packet.pts());
302
- // new_packet.set_duration(packet.duration());
303
new_packets.push(new_packet.clone());
304
305
0 commit comments