comparison movenc.c @ 4223:8f2cb573b5b0 libavformat

Reindent after last commit
author lucabe
date Thu, 15 Jan 2009 14:07:59 +0000
parents 0267c4299992
children 0231b1d5cd15
comparison
equal deleted inserted replaced
4222:0267c4299992 4223:8f2cb573b5b0
1772 if (enc->codec_id == CODEC_ID_H264 && trk->vosLen > 0 && *(uint8_t *)trk->vosData != 1) { 1772 if (enc->codec_id == CODEC_ID_H264 && trk->vosLen > 0 && *(uint8_t *)trk->vosData != 1) {
1773 /* from x264 or from bytestream h264 */ 1773 /* from x264 or from bytestream h264 */
1774 /* nal reformating needed */ 1774 /* nal reformating needed */
1775 ff_avc_parse_nal_units(pb, pkt->data, pkt->size); 1775 ff_avc_parse_nal_units(pb, pkt->data, pkt->size);
1776 } else { 1776 } else {
1777 put_buffer(pb, pkt->data, size); 1777 put_buffer(pb, pkt->data, size);
1778 } 1778 }
1779 1779
1780 put_flush_packet(pb); 1780 put_flush_packet(pb);
1781 return 0; 1781 return 0;
1782 } 1782 }