comparison asf.c @ 373:e47d9c8e2054 libavformat

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.
author michael
date Fri, 05 Mar 2004 22:10:50 +0000
parents 2e12cd1b68ed
children 50bae308f71e
comparison
equal deleted inserted replaced
372:2e12cd1b68ed 373:e47d9c8e2054
21 #include "mpegaudio.h" 21 #include "mpegaudio.h"
22 #include "asf.h" 22 #include "asf.h"
23 23
24 #undef NDEBUG 24 #undef NDEBUG
25 #include <assert.h> 25 #include <assert.h>
26
27 #define FRAME_HEADER_SIZE 17
28 // Fix Me! FRAME_HEADER_SIZE may be different.
26 29
27 static const GUID index_guid = { 30 static const GUID index_guid = {
28 0x33000890, 0xe5b1, 0x11cf, { 0x89, 0xf4, 0x00, 0xa0, 0xc9, 0x03, 0x49, 0xcb }, 31 0x33000890, 0xe5b1, 0x11cf, { 0x89, 0xf4, 0x00, 0xa0, 0xc9, 0x03, 0x49, 0xcb },
29 }; 32 };
30 33