Correct indention.

Originally committed as revision 21041 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2010-01-07 00:50:34 +00:00
parent 8157483d64
commit 9f907d853f

View File

@ -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 //FIXME remove the following 2 lines they shall be replaced by the bitstream filters
if(ost->st->codec->codec_id != CODEC_ID_H264) { 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)) 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; opkt.destruct= av_destruct_packet;
} else { } else {
opkt.data = data_buf; opkt.data = data_buf;
opkt.size = data_size; opkt.size = data_size;