mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
ffprobe: reindent after previous commit
This commit is contained in:
parent
3d189d41c1
commit
531872d763
18
ffprobe.c
18
ffprobe.c
@ -1618,15 +1618,15 @@ static void read_packets(WriterContext *w, AVFormatContext *fmt_ctx)
|
|||||||
|
|
||||||
while (!av_read_frame(fmt_ctx, &pkt)) {
|
while (!av_read_frame(fmt_ctx, &pkt)) {
|
||||||
if (selected_streams[pkt.stream_index]) {
|
if (selected_streams[pkt.stream_index]) {
|
||||||
if (do_read_packets) {
|
if (do_read_packets) {
|
||||||
if (do_show_packets)
|
if (do_show_packets)
|
||||||
show_packet(w, fmt_ctx, &pkt, i++);
|
show_packet(w, fmt_ctx, &pkt, i++);
|
||||||
nb_streams_packets[pkt.stream_index]++;
|
nb_streams_packets[pkt.stream_index]++;
|
||||||
}
|
}
|
||||||
if (do_read_frames) {
|
if (do_read_frames) {
|
||||||
pkt1 = pkt;
|
pkt1 = pkt;
|
||||||
while (pkt1.size && process_frame(w, fmt_ctx, &frame, &pkt1) > 0);
|
while (pkt1.size && process_frame(w, fmt_ctx, &frame, &pkt1) > 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
av_free_packet(&pkt);
|
av_free_packet(&pkt);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user