summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-01-07 00:50:34 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-01-07 00:50:34 +0000
commit9f907d853f90de1f877adefc55732a466d798ce5 (patch)
tree97aba6dcc35b3ab71a84e9fe85e4f20f19f3a341
parent8157483d6436194e901717cb1aa3bd1aaf6d3dd7 (diff)
Correct indention.
Originally committed as revision 21041 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--ffmpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 4e51c4d7d2..69ee42769c 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1495,8 +1495,8 @@ static int output_packet(AVInputStream *ist, int ist_index,
//FIXME remove the following 2 lines they shall be replaced by the bitstream filters
if(ost->st->codec->codec_id != CODEC_ID_H264) {
- if(av_parser_change(ist->st->parser, ost->st->codec, &opkt.data, &opkt.size, data_buf, data_size, pkt->flags & PKT_FLAG_KEY))
- opkt.destruct= av_destruct_packet;
+ if(av_parser_change(ist->st->parser, ost->st->codec, &opkt.data, &opkt.size, data_buf, data_size, pkt->flags & PKT_FLAG_KEY))
+ opkt.destruct= av_destruct_packet;
} else {
opkt.data = data_buf;
opkt.size = data_size;