Mercurial > mplayer.hg
annotate tremor/tremor.diff @ 16429:84174804804b
Updates to NUT spec:
1. remove average_bitrate
2. add other_stream_header, for subtitles and metadata
3. add max_pts to index
4. index_ptr - a 64 bit integer to say the total length of all index packets
5. specify how to write "multiple" indexes
6. change forward_ptr behavior, starts right after forward_ptr, ends after
checksum
7. remove stream_id <-> stream_class limitation.
8. time_base_nom must also be non zero.
9. rename time_base_nom and time_base_denom, now timebase means the length
of a tick, not amounts of ticks
10. remove (old?) sample_rate_mul stuff.
11. specify what exactly the checksum covers.
12. specify that stream classes which have multiple streams must have an
info packet.. (in new Semantic requirements section)
13. Rename 'timestamp' to pts.
14. Change date of draft...
15. Add myself to authors...
author | ods15 |
---|---|
date | Fri, 09 Sep 2005 10:26:21 +0000 |
parents | c820ccd4f5eb |
children | fb837e2ab413 |
rev | line source |
---|---|
14369 | 1 diff -ur orig/misc.h mod-2004-01-05/misc.h |
2 --- orig/misc.h 2005-01-04 16:29:01.000000000 +0100 | |
3 +++ mod-2004-01-05/misc.h 2004-12-30 13:09:20.000000000 +0100 | |
4 @@ -29,8 +29,9 @@ | |
5 /* 64 bit multiply */ | |
6 | |
7 #include <sys/types.h> | |
8 +#include "config.h" | |
9 | |
10 -#if BYTE_ORDER==LITTLE_ENDIAN | |
11 +#ifndef WORDS_BIGENDIAN | |
12 union magic { | |
13 struct { | |
14 ogg_int32_t lo; | |
15 @@ -38,9 +39,7 @@ | |
16 } halves; | |
17 ogg_int64_t whole; | |
18 }; | |
19 -#endif | |
20 - | |
21 -#if BYTE_ORDER==BIG_ENDIAN | |
22 +#else | |
23 union magic { | |
24 struct { | |
25 ogg_int32_t hi; | |
26 diff -ur orig/os_types.h mod-2004-01-05/os_types.h | |
27 --- orig/os_types.h 2005-01-04 16:29:02.000000000 +0100 | |
28 +++ mod-2004-01-05/os_types.h 2005-01-05 10:39:07.000000000 +0100 | |
15455 | 29 @@ -32,57 +32,11 @@ |
14369 | 30 #define _ogg_realloc realloc |
31 #define _ogg_free free | |
32 | |
33 -#ifdef _WIN32 | |
34 - | |
35 -# ifndef __GNUC__ | |
36 - /* MSVC/Borland */ | |
37 - typedef __int64 ogg_int64_t; | |
38 - typedef __int32 ogg_int32_t; | |
39 - typedef unsigned __int32 ogg_uint32_t; | |
40 - typedef __int16 ogg_int16_t; | |
41 -# else | |
42 - /* Cygwin */ | |
43 - #include <_G_config.h> | |
44 - typedef _G_int64_t ogg_int64_t; | |
45 - typedef _G_int32_t ogg_int32_t; | |
46 - typedef _G_uint32_t ogg_uint32_t; | |
47 - typedef _G_int16_t ogg_int16_t; | |
48 -# endif | |
49 - | |
50 -#elif defined(__MACOS__) | |
51 - | |
52 -# include <sys/types.h> | |
53 - typedef SInt16 ogg_int16_t; | |
54 - typedef SInt32 ogg_int32_t; | |
55 - typedef UInt32 ogg_uint32_t; | |
56 - typedef SInt64 ogg_int64_t; | |
57 - | |
58 -#elif defined(__MACOSX__) /* MacOS X Framework build */ | |
59 - | |
60 -# include <sys/types.h> | |
61 - typedef int16_t ogg_int16_t; | |
62 - typedef int32_t ogg_int32_t; | |
63 - typedef u_int32_t ogg_uint32_t; | |
64 + #include <inttypes.h> | |
65 typedef int64_t ogg_int64_t; | |
66 - | |
67 -#elif defined(__BEOS__) | |
68 - | |
69 - /* Be */ | |
70 -# include <inttypes.h> | |
71 - | |
72 -#elif defined (__EMX__) | |
73 - | |
74 - /* OS/2 GCC */ | |
75 - typedef short ogg_int16_t; | |
76 - typedef int ogg_int32_t; | |
77 - typedef unsigned int ogg_uint32_t; | |
78 - typedef long long ogg_int64_t; | |
79 - | |
80 -#else | |
81 - | |
82 -# include <sys/types.h> | |
83 -# include "config_types.h" | |
84 - | |
85 -#endif | |
86 + typedef int32_t ogg_int32_t; | |
87 + typedef uint32_t ogg_uint32_t; | |
15455 | 88 + typedef uint16_t ogg_uint16_t; |
14369 | 89 + typedef int16_t ogg_int16_t; |
90 | |
91 #endif /* _OS_TYPES_H */ | |
16266
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
92 Index: sharedbook.c |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
93 =================================================================== |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
94 RCS file: /cvsroot/mplayer/main/tremor/sharedbook.c,v |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
95 retrieving revision 1.1 |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
96 diff -u -r1.1 sharedbook.c |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
97 --- sharedbook.c 30 Dec 2004 12:09:20 -0000 1.1 |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
98 +++ sharedbook.c 18 Aug 2005 16:13:54 -0000 |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
99 @@ -208,7 +208,7 @@ |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
100 int indexdiv=1; |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
101 for(k=0;k<b->dim;k++){ |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
102 int index= (j/indexdiv)%quantvals; |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
103 - int point; |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
104 + ogg_int32_t point; |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
105 int val=VFLOAT_MULTI(delta,delpoint, |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
106 abs(b->quantlist[index]),&point); |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
107 |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
108 @@ -242,7 +242,7 @@ |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
109 int lastpoint=0; |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
110 |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
111 for(k=0;k<b->dim;k++){ |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
112 - int point; |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
113 + ogg_int32_t point; |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
114 int val=VFLOAT_MULTI(delta,delpoint, |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
115 abs(b->quantlist[j*b->dim+k]),&point); |
c820ccd4f5eb
fix warnings and decoding on CYGWIN (produced only noise before this change)
faust3
parents:
15455
diff
changeset
|
116 |