Mercurial > libavcodec.hg
annotate ra288.c @ 7193:3ab9c2bc0413 libavcodec
Move vars declaration to inner loop when possible
| author | vitor |
|---|---|
| date | Fri, 04 Jul 2008 15:37:52 +0000 |
| parents | 9517beb3b491 |
| children | 5e5c1178ae9a |
| rev | line source |
|---|---|
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
1 /* |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
2 * RealAudio 2.0 (28.8K) |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
3 * Copyright (c) 2003 the ffmpeg project |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
4 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
5 * This file is part of FFmpeg. |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
6 * |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
9 * License as published by the Free Software Foundation; either |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
11 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
15 * Lesser General Public License for more details. |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
16 * |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
|
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2979
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
20 */ |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
21 |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
22 #include "avcodec.h" |
| 7171 | 23 #define ALT_BITSTREAM_READER_LE |
| 24 #include "bitstream.h" | |
|
1335
b4a72edb3a71
moved the tables into header files (and applied the 'static' patch). Nick: why do you like mergeing tables and code into one file, so making it unusable big?
al3x
parents:
1316
diff
changeset
|
25 #include "ra288.h" |
| 2967 | 26 |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
27 typedef struct { |
| 7167 | 28 float history[8]; |
| 29 float output[40]; | |
| 30 float pr1[36]; | |
| 31 float pr2[10]; | |
| 32 int phase, phasep; | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
33 |
| 7167 | 34 float st1a[111], st1b[37], st1[37]; |
| 35 float st2a[38], st2b[11], st2[11]; | |
| 36 float sb[41]; | |
| 37 float lhist[10]; | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
38 } Real288_internal; |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
39 |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
40 /* Decode and produce output */ |
| 7192 | 41 static void decode(Real288_internal *glob, float gain, int cb_coef) |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
42 { |
| 7167 | 43 unsigned int x, y; |
| 44 double sum, sumsum; | |
| 45 float buffer[5]; | |
| 46 | |
| 47 for (x=36; x--; glob->sb[x+5] = glob->sb[x]); | |
| 48 | |
| 49 for (x=5; x--;) { | |
| 7193 | 50 float *p1 = glob->sb+x; |
| 51 float *p2 = glob->pr1; | |
| 7167 | 52 for (sum=0, y=36; y--; sum -= (*(++p1))*(*(p2++))); |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
53 |
| 7167 | 54 glob->sb[x] = sum; |
| 55 } | |
| 56 | |
| 57 /* convert log and do rms */ | |
| 58 for (sum=32, x=10; x--; sum -= glob->pr2[x] * glob->lhist[x]); | |
| 59 | |
| 60 if (sum < 0) | |
| 61 sum = 0; | |
| 62 else if (sum > 60) | |
| 63 sum = 60; | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
64 |
| 7192 | 65 sumsum = exp(sum * 0.1151292546497) * gain; /* pow(10.0,sum/20)*f */ |
| 7167 | 66 |
| 67 for (sum=0, x=5; x--;) { | |
| 7191 | 68 buffer[x] = codetable[cb_coef][x] * sumsum; |
| 7167 | 69 sum += buffer[x] * buffer[x]; |
| 70 } | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
71 |
| 7167 | 72 if ((sum /= 5) < 1) |
| 73 sum = 1; | |
| 74 | |
| 75 /* shift and store */ | |
| 76 for (x=10; --x; glob->lhist[x] = glob->lhist[x-1]); | |
| 77 | |
| 78 *glob->lhist = glob->history[glob->phase] = 10 * log10(sum) - 32; | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
79 |
| 7167 | 80 for (x=1; x < 5; x++) |
| 81 for (y=x; y--; buffer[x] -= glob->pr1[x-y-1] * buffer[y]); | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
82 |
| 7167 | 83 /* output */ |
| 84 for (x=0; x < 5; x++) { | |
| 7193 | 85 float f = glob->sb[4-x] + buffer[x]; |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
86 |
| 7167 | 87 if (f > 4095) |
| 88 f = 4095; | |
| 89 else if (f < -4095) | |
| 90 f = -4095; | |
| 91 | |
| 92 glob->output[glob->phasep+x] = glob->sb[4-x] = f; | |
| 93 } | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
94 } |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
95 |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
96 /* column multiply */ |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
97 static void colmult(float *tgt, float *m1, const float *m2, int n) |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
98 { |
| 7167 | 99 while (n--) |
| 100 *(tgt++) = (*(m1++)) * (*(m2++)); | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
101 } |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
102 |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
103 static int pred(float *in, float *tgt, int n) |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
104 { |
| 7167 | 105 int x, y; |
| 106 double f0, f1, f2; | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
107 |
| 7167 | 108 if (in[n] == 0) |
| 109 return 0; | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
110 |
| 7167 | 111 if ((f0 = *in) <= 0) |
| 112 return 0; | |
| 113 | |
| 114 for (x=1 ; ; x++) { | |
| 7193 | 115 float *p1 = in + x; |
| 116 float *p2 = tgt; | |
| 117 | |
| 7167 | 118 if (n < x) |
| 119 return 1; | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
120 |
| 7167 | 121 f1 = *(p1--); |
| 122 for (y=x; --y; f1 += (*(p1--))*(*(p2++))); | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
123 |
| 7167 | 124 p1 = tgt + x - 1; |
| 125 p2 = tgt; | |
| 126 *(p1--) = f2 = -f1/f0; | |
| 127 for (y=x >> 1; y--;) { | |
| 7193 | 128 float temp = *p2 + *p1 * f2; |
| 7167 | 129 *(p1--) += *p2 * f2; |
| 130 *(p2++) = temp; | |
| 131 } | |
| 132 if ((f0 += f1*f2) < 0) | |
| 133 return 0; | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
134 } |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
135 } |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
136 |
| 7169 | 137 /* product sum (lsf) */ |
| 138 static void prodsum(float *tgt, float *src, int len, int n) | |
| 139 { | |
| 140 unsigned int x; | |
| 141 double sum; | |
| 142 | |
| 143 while (n >= 0) { | |
| 7193 | 144 float *p2 = src; |
| 145 float *p1 = p2 - n; | |
| 7169 | 146 for (sum=0, x=len; x--; sum += (*p1++) * (*p2++)); |
| 147 tgt[n--] = sum; | |
| 148 } | |
| 149 } | |
| 150 | |
| 7167 | 151 static void co(int n, int i, int j, float *in, float *out, float *st1, |
| 152 float *st2, const float *table) | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
153 { |
| 7167 | 154 int a, b, c; |
| 155 unsigned int x; | |
| 156 float *fp; | |
| 157 float buffer1[37]; | |
| 158 float buffer2[37]; | |
| 159 float work[111]; | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
160 |
| 7167 | 161 /* rotate and multiply */ |
| 162 c = (b = (a = n + i) + j) - i; | |
| 163 fp = st1 + i; | |
| 164 for (x=0; x < b; x++) { | |
| 165 if (x == c) | |
| 166 fp=in; | |
| 167 work[x] = *(table++) * (*(st1++) = *(fp++)); | |
| 168 } | |
| 2967 | 169 |
| 7167 | 170 prodsum(buffer1, work + n, i, n); |
| 171 prodsum(buffer2, work + a, j, n); | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
172 |
| 7167 | 173 for (x=0;x<=n;x++) { |
| 174 *st2 = *st2 * (0.5625) + buffer1[x]; | |
| 175 out[x] = *(st2++) + buffer2[x]; | |
| 176 } | |
| 177 *out *= 1.00390625; /* to prevent clipping */ | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
178 } |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
179 |
| 7169 | 180 static void update(Real288_internal *glob) |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
181 { |
| 7169 | 182 int x,y; |
| 183 float buffer1[40], temp1[37]; | |
| 184 float buffer2[8], temp2[11]; | |
| 185 | |
| 186 for (x=0, y=glob->phasep+5; x < 40; buffer1[x++] = glob->output[(y++)%40]); | |
| 187 | |
| 188 co(36, 40, 35, buffer1, temp1, glob->st1a, glob->st1b, table1); | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
189 |
| 7169 | 190 if (pred(temp1, glob->st1, 36)) |
| 191 colmult(glob->pr1, glob->st1, table1a, 36); | |
| 192 | |
| 193 for (x=0, y=glob->phase + 1; x < 8; buffer2[x++] = glob->history[(y++) % 8]); | |
| 194 | |
| 195 co(10, 8, 20, buffer2, temp2, glob->st2a, glob->st2b, table2); | |
| 196 | |
| 197 if (pred(temp2, glob->st2, 10)) | |
| 198 colmult(glob->pr2, glob->st2, table2a, 10); | |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
199 } |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
200 |
| 7174 | 201 /* Decode a block (celp) */ |
| 202 static int ra288_decode_frame(AVCodecContext * avctx, void *data, | |
| 203 int *data_size, const uint8_t * buf, | |
| 204 int buf_size) | |
| 1313 | 205 { |
| 7174 | 206 int16_t *out = data; |
| 7167 | 207 int x, y; |
| 208 Real288_internal *glob = avctx->priv_data; | |
|
7173
bc2fd265f52b
Remove unpack() function, read the bitstream as needed
vitor
parents:
7172
diff
changeset
|
209 GetBitContext gb; |
| 7167 | 210 |
| 7174 | 211 if (buf_size < avctx->block_align) { |
| 212 av_log(avctx, AV_LOG_ERROR, | |
| 213 "Error! Input buffer is too small [%d<%d]\n", | |
| 214 buf_size, avctx->block_align); | |
| 215 return 0; | |
| 216 } | |
| 217 | |
| 218 init_get_bits(&gb, buf, avctx->block_align * 8); | |
| 1313 | 219 |
| 7167 | 220 for (x=0; x < 32; x++) { |
| 7192 | 221 float gain = amptable[get_bits(&gb, 3)]; |
|
7173
bc2fd265f52b
Remove unpack() function, read the bitstream as needed
vitor
parents:
7172
diff
changeset
|
222 int cb_coef = get_bits(&gb, 6 + (x&1)); |
| 7167 | 223 glob->phasep = (glob->phase = x & 7) * 5; |
| 7192 | 224 decode(glob, gain, cb_coef); |
| 7167 | 225 |
| 226 for (y=0; y<5; *(out++) = 8 * glob->output[glob->phasep+(y++)]); | |
| 227 | |
| 228 if (glob->phase == 3) | |
| 229 update(glob); | |
| 230 } | |
| 231 | |
| 7174 | 232 *data_size = (char *)out - (char *)data; |
|
2956
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2288
diff
changeset
|
233 return avctx->block_align; |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
234 } |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
235 |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
236 AVCodec ra_288_decoder = |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
237 { |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
238 "real_288", |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
239 CODEC_TYPE_AUDIO, |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
240 CODEC_ID_RA_288, |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
241 sizeof(Real288_internal), |
| 7168 | 242 NULL, |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
243 NULL, |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
244 NULL, |
|
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
245 ra288_decode_frame, |
|
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6712
diff
changeset
|
246 .long_name = NULL_IF_CONFIG_SMALL("RealAudio 2.0 (28.8K)"), |
|
1304
e8543aab0cc9
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from a mplayerhq (originally from public domain player for Amiga
nickols_k
parents:
diff
changeset
|
247 }; |
