Skip to content
Snippets Groups Projects
Commit 72dcd48c authored by Aaron Graham's avatar Aaron Graham Committed by Michael Niedermayer
Browse files

avformat/asfenc: honor the maximum of 63 payloads


Fixes Ticket3634

Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent 81d1fcf3
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,7 @@
#define ASF_INDEXED_INTERVAL 10000000
#define ASF_INDEX_BLOCK (1<<9)
#define ASF_PAYLOADS_PER_PACKET 63
#define ASF_PACKET_ERROR_CORRECTION_DATA_SIZE 0x2
#define ASF_PACKET_ERROR_CORRECTION_FLAGS \
......@@ -858,6 +859,8 @@ static void put_frame(AVFormatContext *s, ASFStream *stream, AVStream *avst,
flush_packet(s);
else if (asf->packet_size_left <= (PAYLOAD_HEADER_SIZE_MULTIPLE_PAYLOADS + PACKET_HEADER_MIN_SIZE + 1))
flush_packet(s);
else if (asf->packet_nb_payloads == ASF_PAYLOADS_PER_PACKET)
flush_packet(s);
}
stream->seq++;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment