diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-10-05 23:56:39 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-10-05 23:58:23 +0200 |
commit | 531872d7636fd51b1babe4b94e25dbf5ce39eeec (patch) | |
tree | 16e0e97f5c3310c9d27d8d7aa415ff8ad4eee9a3 /ffprobe.c | |
parent | 3d189d41c10ed710a13135ba11a0859e6b7e4faf (diff) | |
download | ffmpeg-531872d7636fd51b1babe4b94e25dbf5ce39eeec.tar.gz |
ffprobe: reindent after previous commit
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -1618,15 +1618,15 @@ static void read_packets(WriterContext *w, AVFormatContext *fmt_ctx) while (!av_read_frame(fmt_ctx, &pkt)) { if (selected_streams[pkt.stream_index]) { - if (do_read_packets) { - if (do_show_packets) - show_packet(w, fmt_ctx, &pkt, i++); - nb_streams_packets[pkt.stream_index]++; - } - if (do_read_frames) { - pkt1 = pkt; - while (pkt1.size && process_frame(w, fmt_ctx, &frame, &pkt1) > 0); - } + if (do_read_packets) { + if (do_show_packets) + show_packet(w, fmt_ctx, &pkt, i++); + nb_streams_packets[pkt.stream_index]++; + } + if (do_read_frames) { + pkt1 = pkt; + while (pkt1.size && process_frame(w, fmt_ctx, &frame, &pkt1) > 0); + } } av_free_packet(&pkt); } |