summaryrefslogtreecommitdiff
path: root/libavformat/asf.c
diff options
context:
space:
mode:
authorKonstantin Andreyev <kandreyev@bcsii.com>2004-03-05 22:10:50 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-03-05 22:10:50 +0000
commit615b92fd8eb1a67acfa1799f5ba3f50cd8aac688 (patch)
treecef6a20687972e372edcf73a8e2111b1611fc1d1 /libavformat/asf.c
parent542993b06e5c9b3010da72be7e390006eb01a50e (diff)
asf patch by (Konstantin Andreyev <kandreyev at bcsii dot com>)
1. Corrected packet sent time. (Packet sent time => previous packet sent time) 2. Corrected payload playing time. (Payload playing time => packet sent time) 3. Used different format for packets with one payload and multi payloads. Originally committed as revision 2851 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.c')
-rw-r--r--libavformat/asf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c
index ab80eb4d36..19542e5a0c 100644
--- a/libavformat/asf.c
+++ b/libavformat/asf.c
@@ -24,6 +24,9 @@
#undef NDEBUG
#include <assert.h>
+#define FRAME_HEADER_SIZE 17
+// Fix Me! FRAME_HEADER_SIZE may be different.
+
static const GUID index_guid = {
0x33000890, 0xe5b1, 0x11cf, { 0x89, 0xf4, 0x00, 0xa0, 0xc9, 0x03, 0x49, 0xcb },
};