[FFmpeg-devel] [PATCH 4/5] lavf/concatdec: reindent after last commit.
Nicolas George
george at nsup.org
Mon Apr 21 16:42:01 CEST 2014
Signed-off-by: Nicolas George <george at nsup.org>
---
libavformat/concatdec.c | 21 ++++++++++-----------
1 file changed, 10 insertions(+), 11 deletions(-)
diff --git a/libavformat/concatdec.c b/libavformat/concatdec.c
index 98f4160..5751d0c 100644
--- a/libavformat/concatdec.c
+++ b/libavformat/concatdec.c
@@ -406,17 +406,16 @@ static int concat_read_packet(AVFormatContext *avf, AVPacket *pkt)
}
if (ret < 0)
return ret;
- /* TODO reindent */
- if ((ret = match_streams(avf)) < 0) {
- av_packet_unref(pkt);
- return ret;
- }
- cs = &cat->cur_file->streams[pkt->stream_index];
- if (cs->out_stream_index < 0) {
- av_packet_unref(pkt);
- continue;
- }
- pkt->stream_index = cs->out_stream_index;
+ if ((ret = match_streams(avf)) < 0) {
+ av_packet_unref(pkt);
+ return ret;
+ }
+ cs = &cat->cur_file->streams[pkt->stream_index];
+ if (cs->out_stream_index < 0) {
+ av_packet_unref(pkt);
+ continue;
+ }
+ pkt->stream_index = cs->out_stream_index;
break;
}
--
1.7.10.4
More information about the ffmpeg-devel
mailing list