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:
parent
bcc4cb4681
commit
4f5340a0b1
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user