Reindent after last commit

Originally committed as revision 16617 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Luca Abeni 2009-01-15 14:07:59 +00:00
parent 0a63a676ec
commit ca93bc175a
3 changed files with 3 additions and 3 deletions

View File

@ -366,7 +366,7 @@ static int flv_write_packet(AVFormatContext *s, AVPacket *pkt)
enc->extradata_size > 0 && *(uint8_t*)enc->extradata != 1) {
ff_avc_parse_nal_units(pb, pkt->data, pkt->size);
} else {
put_buffer(pb, pkt->data, size);
put_buffer(pb, pkt->data, size);
}
put_be32(pb,size+flags_size+11); // previous tag size
flv->duration = FFMAX(flv->duration, pkt->pts + flv->delay + pkt->duration);

View File

@ -801,7 +801,7 @@ static void mkv_write_block(AVFormatContext *s, unsigned int blockid, AVPacket *
/* nal reformating needed */
ff_avc_parse_nal_units(pb, pkt->data, pkt->size);
} else {
put_buffer(pb, pkt->data, pkt->size);
put_buffer(pb, pkt->data, pkt->size);
}
}

View File

@ -1774,7 +1774,7 @@ static int mov_write_packet(AVFormatContext *s, AVPacket *pkt)
/* nal reformating needed */
ff_avc_parse_nal_units(pb, pkt->data, pkt->size);
} else {
put_buffer(pb, pkt->data, size);
put_buffer(pb, pkt->data, size);
}
put_flush_packet(pb);