Commit 4f5340a0 authored by Martin Storsjö's avatar Martin Storsjö

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

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