diff options
author | Konstantin Andreyev <kandreyev@bcsii.com> | 2004-03-05 22:10:50 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-03-05 22:10:50 +0000 |
commit | 615b92fd8eb1a67acfa1799f5ba3f50cd8aac688 (patch) | |
tree | cef6a20687972e372edcf73a8e2111b1611fc1d1 /libavformat/asf.c | |
parent | 542993b06e5c9b3010da72be7e390006eb01a50e (diff) | |
download | ffmpeg-615b92fd8eb1a67acfa1799f5ba3f50cd8aac688.tar.gz |
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.c | 3 |
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 }, }; |