Commit 9a808bdb authored by lucabe's avatar lucabe

Reindent after last commit


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16617 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4dc5a844
...@@ -366,7 +366,7 @@ static int flv_write_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -366,7 +366,7 @@ static int flv_write_packet(AVFormatContext *s, AVPacket *pkt)
enc->extradata_size > 0 && *(uint8_t*)enc->extradata != 1) { enc->extradata_size > 0 && *(uint8_t*)enc->extradata != 1) {
ff_avc_parse_nal_units(pb, pkt->data, pkt->size); ff_avc_parse_nal_units(pb, pkt->data, pkt->size);
} else { } else {
put_buffer(pb, pkt->data, size); put_buffer(pb, pkt->data, size);
} }
put_be32(pb,size+flags_size+11); // previous tag size put_be32(pb,size+flags_size+11); // previous tag size
flv->duration = FFMAX(flv->duration, pkt->pts + flv->delay + pkt->duration); flv->duration = FFMAX(flv->duration, pkt->pts + flv->delay + pkt->duration);
......
...@@ -801,7 +801,7 @@ static void mkv_write_block(AVFormatContext *s, unsigned int blockid, AVPacket * ...@@ -801,7 +801,7 @@ static void mkv_write_block(AVFormatContext *s, unsigned int blockid, AVPacket *
/* nal reformating needed */ /* nal reformating needed */
ff_avc_parse_nal_units(pb, pkt->data, pkt->size); ff_avc_parse_nal_units(pb, pkt->data, pkt->size);
} else { } else {
put_buffer(pb, pkt->data, pkt->size); put_buffer(pb, pkt->data, pkt->size);
} }
} }
......
...@@ -1774,7 +1774,7 @@ static int mov_write_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -1774,7 +1774,7 @@ static int mov_write_packet(AVFormatContext *s, AVPacket *pkt)
/* nal reformating needed */ /* nal reformating needed */
ff_avc_parse_nal_units(pb, pkt->data, pkt->size); ff_avc_parse_nal_units(pb, pkt->data, pkt->size);
} else { } else {
put_buffer(pb, pkt->data, size); put_buffer(pb, pkt->data, size);
} }
put_flush_packet(pb); put_flush_packet(pb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment