Reindent, rewrap long comment lines to keep line length below 80 chars

Originally committed as revision 24390 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Martin Storsjö 2010-07-21 17:25:09 +00:00
parent bcc4cb4681
commit 4f5340a0b1

View File

@ -194,9 +194,10 @@ static int asfrtp_parse_packet(AVFormatContext *s, PayloadContext *asf,
if (!(mflags & 0x40)) { if (!(mflags & 0x40)) {
/** /**
* If 0x40 is not set, the len_off field specifies an offset of this * If 0x40 is not set, the len_off field specifies an offset
* packet's payload data in the complete (reassembled) ASF packet. * of this packet's payload data in the complete (reassembled)
* This is used to spread one ASF packet over multiple RTP packets. * ASF packet. This is used to spread one ASF packet over
* multiple RTP packets.
*/ */
if (asf->pktbuf && len_off != url_ftell(asf->pktbuf)) { if (asf->pktbuf && len_off != url_ftell(asf->pktbuf)) {
uint8_t *p; uint8_t *p;
@ -218,11 +219,11 @@ static int asfrtp_parse_packet(AVFormatContext *s, PayloadContext *asf,
asf->pktbuf = NULL; asf->pktbuf = NULL;
} else { } else {
/** /**
* If 0x40 is set, the len_off field specifies the length of the * If 0x40 is set, the len_off field specifies the length of
* next ASF packet that can be read from this payload data alone. * the next ASF packet that can be read from this payload
* This is commonly the same as the payload size, but could be * data alone. This is commonly the same as the payload size,
* less in case of packet splitting (i.e. multiple ASF packets in * but could be less in case of packet splitting (i.e.
* one RTP packet). * multiple ASF packets in one RTP packet).
*/ */
int cur_len = start_off + len_off - off; int cur_len = start_off + len_off - off;