annotate ra144dec.c @ 11865:6111134a3d94 libavcodec

Split ra144.c in common code (to be shared with the future encoder) and decoder. Patch by Francesco Lavra (firstnamelastname@interfree.it)
author vitor
date Fri, 11 Jun 2010 08:01:51 +0000
parents ra144.c@8a4984c5cacc
children 0d8f35836b20
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 * Real Audio 1.0 (14.4K)
7163
ec5bae4d05a2 Update copyright
vitor
parents: 7162
diff changeset
3 *
ec5bae4d05a2 Update copyright
vitor
parents: 7162
diff changeset
4 * Copyright (c) 2008 Vitor Sessak
ec5bae4d05a2 Update copyright
vitor
parents: 7162
diff changeset
5 * Copyright (c) 2003 Nick Kurshev
ec5bae4d05a2 Update copyright
vitor
parents: 7162
diff changeset
6 * Based on public domain decoder at http://www.honeypot.net/audio
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
7 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
8 * This file is part of FFmpeg.
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
9 *
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
10 * 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
11 * 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
12 * 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
13 * 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
14 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
15 * 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
16 * 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
17 * 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
18 * 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
19 *
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 * 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
21 * 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
22 * 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
23 */
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
24
11417
421c9441c11e Move ff_sqrt() to libavutil/intmath.h
mru
parents: 11146
diff changeset
25 #include "libavutil/intmath.h"
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
26 #include "avcodec.h"
9428
0dce4fe6e6f3 Rename bitstream.h to get_bits.h.
stefano
parents: 9355
diff changeset
27 #include "get_bits.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: 1305
diff changeset
28 #include "ra144.h"
8049
611a21e4b01b Split off celp_filters.[ch] from acelp_filters.[ch] for the QCELP decoder.
diego
parents: 7847
diff changeset
29 #include "celp_filters.h"
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
30
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
31
7828
0dc972a25a37 Add av_cold attribute to decode_init()
vitor
parents: 7827
diff changeset
32 static av_cold int ra144_decode_init(AVCodecContext * avctx)
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 {
6895
c63e9357e2a8 Context vars are not global vars. glob is a bad name for it.
vitor
parents: 6894
diff changeset
34 RA144Context *ractx = avctx->priv_data;
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
35
10776
816067b00019 Use correct context for av_log(), should prevent a crash for malformed files.
vitor
parents: 9428
diff changeset
36 ractx->avctx = avctx;
816067b00019 Use correct context for av_log(), should prevent a crash for malformed files.
vitor
parents: 9428
diff changeset
37
7128
614bc53e67a8 Use lpc_coef[2] instead of lpc_coef and lpc_coef_old
vitor
parents: 7127
diff changeset
38 ractx->lpc_coef[0] = ractx->lpc_tables[0];
614bc53e67a8 Use lpc_coef[2] instead of lpc_coef and lpc_coef_old
vitor
parents: 7127
diff changeset
39 ractx->lpc_coef[1] = ractx->lpc_tables[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
40
7451
85ab7655ad4d Modify all codecs to report their supported input and output sample format(s).
pross
parents: 7447
diff changeset
41 avctx->sample_fmt = SAMPLE_FMT_S16;
6767
f95c5091b802 cosmetics: Reindent file, patch by Vitor Sessak, vitor1001 gmail com,
diego
parents: 6712
diff changeset
42 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
43 }
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
44
7133
6a25c2867e2f More cosmetics
vitor
parents: 7132
diff changeset
45 static void do_output_subblock(RA144Context *ractx, const uint16_t *lpc_coefs,
6a25c2867e2f More cosmetics
vitor
parents: 7132
diff changeset
46 int gval, GetBitContext *gb)
6832
9584a95fefcd Cosmetics: move function to remove forward declarations
vitor
parents: 6831
diff changeset
47 {
6887
1b346861c9dc Use (u)int16_t instead of (unsigned) short
vitor
parents: 6882
diff changeset
48 uint16_t buffer_a[40];
1b346861c9dc Use (u)int16_t instead of (unsigned) short
vitor
parents: 6882
diff changeset
49 uint16_t *block;
6907
8b0db8b07a21 cosmetics: typo fixes
diego
parents: 6902
diff changeset
50 int cba_idx = get_bits(gb, 7); // index of the adaptive CB, 0 if none
6900
9333cbdc4524 Rename var: add read coefficients a decent name
vitor
parents: 6899
diff changeset
51 int gain = get_bits(gb, 8);
9333cbdc4524 Rename var: add read coefficients a decent name
vitor
parents: 6899
diff changeset
52 int cb1_idx = get_bits(gb, 7);
9333cbdc4524 Rename var: add read coefficients a decent name
vitor
parents: 6899
diff changeset
53 int cb2_idx = get_bits(gb, 7);
6873
c3a92478875d Make add_wav() receive a vector instead of three integers
vitor
parents: 6870
diff changeset
54 int m[3];
6832
9584a95fefcd Cosmetics: move function to remove forward declarations
vitor
parents: 6831
diff changeset
55
6900
9333cbdc4524 Rename var: add read coefficients a decent name
vitor
parents: 6899
diff changeset
56 if (cba_idx) {
7106
709ee2a35813 Remove useless define
vitor
parents: 7105
diff changeset
57 cba_idx += BLOCKSIZE/2 - 1;
7120
c98b43981d89 Consistency: make the output buffer the first argument of functions
vitor
parents: 7119
diff changeset
58 copy_and_dup(buffer_a, ractx->adapt_cb, cba_idx);
7112
ebedec98b434 Move factor multiplication out of irms()
vitor
parents: 7111
diff changeset
59 m[0] = (irms(buffer_a) * gval) >> 12;
6888
b2f2c09af893 Merge two if's
vitor
parents: 6887
diff changeset
60 } else {
b2f2c09af893 Merge two if's
vitor
parents: 6887
diff changeset
61 m[0] = 0;
6832
9584a95fefcd Cosmetics: move function to remove forward declarations
vitor
parents: 6831
diff changeset
62 }
9584a95fefcd Cosmetics: move function to remove forward declarations
vitor
parents: 6831
diff changeset
63
7121
18d60d9b0895 Merge the >> 4 calculation of cb1_base in the table
vitor
parents: 7120
diff changeset
64 m[1] = (cb1_base[cb1_idx] * gval) >> 8;
18d60d9b0895 Merge the >> 4 calculation of cb1_base in the table
vitor
parents: 7120
diff changeset
65 m[2] = (cb2_base[cb2_idx] * gval) >> 8;
6832
9584a95fefcd Cosmetics: move function to remove forward declarations
vitor
parents: 6831
diff changeset
66
6896
5f79e5940b33 Rename var: buffer_2 is an adaptive codebook
vitor
parents: 6895
diff changeset
67 memmove(ractx->adapt_cb, ractx->adapt_cb + BLOCKSIZE,
7119
39be110f531d Use sizeof() intead of hardcoding the values
vitor
parents: 7118
diff changeset
68 (BUFFERSIZE - BLOCKSIZE) * sizeof(*ractx->adapt_cb));
6882
ea9e8492d9d7 More cosmetics
vitor
parents: 6881
diff changeset
69
6896
5f79e5940b33 Rename var: buffer_2 is an adaptive codebook
vitor
parents: 6895
diff changeset
70 block = ractx->adapt_cb + BUFFERSIZE - BLOCKSIZE;
6832
9584a95fefcd Cosmetics: move function to remove forward declarations
vitor
parents: 6831
diff changeset
71
9081
06fd12c6b7e6 RA144: work around gcc bug/oddity on ARM
mru
parents: 9078
diff changeset
72 add_wav(block, gain, cba_idx, m, cba_idx? buffer_a: NULL,
7120
c98b43981d89 Consistency: make the output buffer the first argument of functions
vitor
parents: 7119
diff changeset
73 cb1_vects[cb1_idx], cb2_vects[cb2_idx]);
6832
9584a95fefcd Cosmetics: move function to remove forward declarations
vitor
parents: 6831
diff changeset
74
7101
6ee204e8d9ae Move code unrelated to lpc filtering out of lpc_filter()
vitor
parents: 7100
diff changeset
75 memcpy(ractx->curr_sblock, ractx->curr_sblock + 40,
6ee204e8d9ae Move code unrelated to lpc filtering out of lpc_filter()
vitor
parents: 7100
diff changeset
76 10*sizeof(*ractx->curr_sblock));
6ee204e8d9ae Move code unrelated to lpc filtering out of lpc_filter()
vitor
parents: 7100
diff changeset
77
8049
611a21e4b01b Split off celp_filters.[ch] from acelp_filters.[ch] for the QCELP decoder.
diego
parents: 7847
diff changeset
78 if (ff_celp_lp_synthesis_filter(ractx->curr_sblock + 10, lpc_coefs,
611a21e4b01b Split off celp_filters.[ch] from acelp_filters.[ch] for the QCELP decoder.
diego
parents: 7847
diff changeset
79 block, BLOCKSIZE, 10, 1, 0xfff))
7162
ad0d9713e953 Use ff_acelp_lp_synthesis_filter() instead of duplicating it
vitor
parents: 7159
diff changeset
80 memset(ractx->curr_sblock, 0, 50*sizeof(*ractx->curr_sblock));
6832
9584a95fefcd Cosmetics: move function to remove forward declarations
vitor
parents: 6831
diff changeset
81 }
9584a95fefcd Cosmetics: move function to remove forward declarations
vitor
parents: 6831
diff changeset
82
7847
5a114f24632a misc spelling/wording/grammar fixes
diego
parents: 7834
diff changeset
83 /** Uncompress one block (20 bytes -> 160*2 bytes). */
7132
22788bf6502a Cosmetics
vitor
parents: 7128
diff changeset
84 static int ra144_decode_frame(AVCodecContext * avctx, void *vdata,
9355
54bc8a2727b0 Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents: 9081
diff changeset
85 int *data_size, AVPacket *avpkt)
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 {
9355
54bc8a2727b0 Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents: 9081
diff changeset
87 const uint8_t *buf = avpkt->data;
54bc8a2727b0 Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents: 9081
diff changeset
88 int buf_size = avpkt->size;
6805
8faad14a40a5 Read the bitstream where the data is actually needed instead of doing it in unpack_input()
vitor
parents: 6804
diff changeset
89 static const uint8_t sizes[10] = {6, 5, 5, 4, 4, 3, 3, 3, 3, 2};
7084
424cb385c5ae Misc cosmetics
vitor
parents: 7083
diff changeset
90 unsigned int refl_rms[4]; // RMS of the reflection coefficients
11146
e8461dae9672 Fix reading beyond buffer end on RA144Context.lpc_tables.
vitor
parents: 10776
diff changeset
91 uint16_t block_coefs[4][10]; // LPC coefficients of each sub-block
7005
6e374f47da64 Remove *lpc_refl from the context. Only the value
vitor
parents: 7004
diff changeset
92 unsigned int lpc_refl[10]; // LPC reflection coefficients of the frame
7447
16737361e9ab Cosmetics: rename loop counter vars to i,j
vitor
parents: 7164
diff changeset
93 int i, j;
6767
f95c5091b802 cosmetics: Reindent file, patch by Vitor Sessak, vitor1001 gmail com,
diego
parents: 6712
diff changeset
94 int16_t *data = vdata;
6898
27b34839f1db Rename var: val -> energy
vitor
parents: 6897
diff changeset
95 unsigned int energy;
6806
e4be053e7d9b Remove unneeded fields from the decoder context
vitor
parents: 6805
diff changeset
96
6934
ac6f00bed029 Revert r13499, log:
vitor
parents: 6928
diff changeset
97 RA144Context *ractx = avctx->priv_data;
6805
8faad14a40a5 Read the bitstream where the data is actually needed instead of doing it in unpack_input()
vitor
parents: 6804
diff changeset
98 GetBitContext gb;
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
99
7506
e94202a2e0b6 Check available size before writing in decode_frame()
vitor
parents: 7451
diff changeset
100 if (*data_size < 2*160)
e94202a2e0b6 Check available size before writing in decode_frame()
vitor
parents: 7451
diff changeset
101 return -1;
e94202a2e0b6 Check available size before writing in decode_frame()
vitor
parents: 7451
diff changeset
102
6854
d4c8338a09a8 Handle the case where we do not have enough input
vitor
parents: 6852
diff changeset
103 if(buf_size < 20) {
d4c8338a09a8 Handle the case where we do not have enough input
vitor
parents: 6852
diff changeset
104 av_log(avctx, AV_LOG_ERROR,
d4c8338a09a8 Handle the case where we do not have enough input
vitor
parents: 6852
diff changeset
105 "Frame too small (%d bytes). Truncated file?\n", buf_size);
7085
f55f71e2be57 Do not write junk in the end of truncated files. FATE
vitor
parents: 7084
diff changeset
106 *data_size = 0;
6854
d4c8338a09a8 Handle the case where we do not have enough input
vitor
parents: 6852
diff changeset
107 return buf_size;
d4c8338a09a8 Handle the case where we do not have enough input
vitor
parents: 6852
diff changeset
108 }
6805
8faad14a40a5 Read the bitstream where the data is actually needed instead of doing it in unpack_input()
vitor
parents: 6804
diff changeset
109 init_get_bits(&gb, buf, 20 * 8);
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
6805
8faad14a40a5 Read the bitstream where the data is actually needed instead of doing it in unpack_input()
vitor
parents: 6804
diff changeset
111 for (i=0; i<10; i++)
7127
8ab2d77fd502 Remove unused entries from lpc_refl_cb*
vitor
parents: 7126
diff changeset
112 lpc_refl[i] = lpc_refl_cb[i][get_bits(&gb, sizes[i])];
6767
f95c5091b802 cosmetics: Reindent file, patch by Vitor Sessak, vitor1001 gmail com,
diego
parents: 6712
diff changeset
113
7128
614bc53e67a8 Use lpc_coef[2] instead of lpc_coef and lpc_coef_old
vitor
parents: 7127
diff changeset
114 eval_coefs(ractx->lpc_coef[0], lpc_refl);
614bc53e67a8 Use lpc_coef[2] instead of lpc_coef and lpc_coef_old
vitor
parents: 7127
diff changeset
115 ractx->lpc_refl_rms[0] = rms(lpc_refl);
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
116
7126
decce608d0a9 Remove unused entries from energy_tab
vitor
parents: 7121
diff changeset
117 energy = energy_tab[get_bits(&gb, 5)];
6767
f95c5091b802 cosmetics: Reindent file, patch by Vitor Sessak, vitor1001 gmail com,
diego
parents: 6712
diff changeset
118
7830
3da762190370 Pass directly variable 'a' to interp instead of evaluating it from num_blocks
vitor
parents: 7829
diff changeset
119 refl_rms[0] = interp(ractx, block_coefs[0], 1, 1, ractx->old_energy);
3da762190370 Pass directly variable 'a' to interp instead of evaluating it from num_blocks
vitor
parents: 7829
diff changeset
120 refl_rms[1] = interp(ractx, block_coefs[1], 2, energy <= ractx->old_energy,
6947
080e7ee48ed1 Remove useless intermediate variable
vitor
parents: 6934
diff changeset
121 t_sqrt(energy*ractx->old_energy) >> 12);
7830
3da762190370 Pass directly variable 'a' to interp instead of evaluating it from num_blocks
vitor
parents: 7829
diff changeset
122 refl_rms[2] = interp(ractx, block_coefs[2], 3, 0, energy);
7128
614bc53e67a8 Use lpc_coef[2] instead of lpc_coef and lpc_coef_old
vitor
parents: 7127
diff changeset
123 refl_rms[3] = rescale_rms(ractx->lpc_refl_rms[0], energy);
6968
50dd3a733f43 The function dec1() do two completly unrelated things. Split the rms calculation out of it.
vitor
parents: 6967
diff changeset
124
7128
614bc53e67a8 Use lpc_coef[2] instead of lpc_coef and lpc_coef_old
vitor
parents: 7127
diff changeset
125 int_to_int16(block_coefs[3], ractx->lpc_coef[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
126
7447
16737361e9ab Cosmetics: rename loop counter vars to i,j
vitor
parents: 7164
diff changeset
127 for (i=0; i < 4; i++) {
16737361e9ab Cosmetics: rename loop counter vars to i,j
vitor
parents: 7164
diff changeset
128 do_output_subblock(ractx, block_coefs[i], refl_rms[i], &gb);
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
129
7447
16737361e9ab Cosmetics: rename loop counter vars to i,j
vitor
parents: 7164
diff changeset
130 for (j=0; j < BLOCKSIZE; j++)
16737361e9ab Cosmetics: rename loop counter vars to i,j
vitor
parents: 7164
diff changeset
131 *data++ = av_clip_int16(ractx->curr_sblock[j + 10] << 2);
6767
f95c5091b802 cosmetics: Reindent file, patch by Vitor Sessak, vitor1001 gmail com,
diego
parents: 6712
diff changeset
132 }
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
133
6898
27b34839f1db Rename var: val -> energy
vitor
parents: 6897
diff changeset
134 ractx->old_energy = energy;
7128
614bc53e67a8 Use lpc_coef[2] instead of lpc_coef and lpc_coef_old
vitor
parents: 7127
diff changeset
135 ractx->lpc_refl_rms[1] = ractx->lpc_refl_rms[0];
6781
2f505f532aa8 Replace some hardcoded swapping with FFSWAP.
astrange
parents: 6780
diff changeset
136
7128
614bc53e67a8 Use lpc_coef[2] instead of lpc_coef and lpc_coef_old
vitor
parents: 7127
diff changeset
137 FFSWAP(unsigned int *, ractx->lpc_coef[0], ractx->lpc_coef[1]);
6781
2f505f532aa8 Replace some hardcoded swapping with FFSWAP.
astrange
parents: 6780
diff changeset
138
6828
0969192d5f8b Simplify ra144_decode_frame()
vitor
parents: 6826
diff changeset
139 *data_size = 2*160;
6767
f95c5091b802 cosmetics: Reindent file, patch by Vitor Sessak, vitor1001 gmail com,
diego
parents: 6712
diff changeset
140 return 20;
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
141 }
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
142
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
143 AVCodec ra_144_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
144 {
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
145 "real_144",
11560
8a4984c5cacc Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents: 11417
diff changeset
146 AVMEDIA_TYPE_AUDIO,
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
147 CODEC_ID_RA_144,
6894
eb3c16b99f27 Rename context struct to be more consistent with the rest of ffmpeg
vitor
parents: 6888
diff changeset
148 sizeof(RA144Context),
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
149 ra144_decode_init,
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
150 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
151 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
152 ra144_decode_frame,
7040
e943e1409077 Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents: 7005
diff changeset
153 .long_name = NULL_IF_CONFIG_SMALL("RealAudio 1.0 (14.4K)"),
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
154 };