Mercurial > libavcodec.hg
annotate ws-snd1.c @ 8624:b1663f732e67 libavcodec
Fix 10L in r16670 (broke deblocking code)
| author | darkshikari |
|---|---|
| date | Sun, 18 Jan 2009 07:20:12 +0000 |
| parents | 2acf0ae7b041 |
| children | 5b7d5a33a3e2 |
| rev | line source |
|---|---|
| 2585 | 1 /* |
| 2 * Westwood SNDx codecs | |
| 3 * Copyright (c) 2005 Konstantin Shishkov | |
| 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 |
| 2585 | 8 * modify it under the terms of the GNU Lesser General Public |
| 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. |
| 2585 | 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, |
| 2585 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 15 * Lesser General Public License for more details. | |
| 16 * | |
| 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:
2967
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 2585 | 20 */ |
|
8573
2acf0ae7b041
Fix build: Add intreadwrite.h and bswap.h #includes where necessary.
diego
parents:
7451
diff
changeset
|
21 |
|
2acf0ae7b041
Fix build: Add intreadwrite.h and bswap.h #includes where necessary.
diego
parents:
7451
diff
changeset
|
22 #include "libavutil/intreadwrite.h" |
| 2585 | 23 #include "avcodec.h" |
| 24 | |
| 25 /** | |
| 26 * @file ws-snd.c | |
| 27 * Westwood SNDx codecs. | |
| 28 * | |
| 29 * Reference documents about VQA format and its audio codecs | |
| 30 * can be found here: | |
| 31 * http://www.multimedia.cx | |
| 32 */ | |
| 33 | |
| 34 static const char ws_adpcm_2bit[] = { -2, -1, 0, 1}; | |
| 35 static const char ws_adpcm_4bit[] = { | |
| 36 -9, -8, -6, -5, -4, -3, -2, -1, | |
| 37 0, 1, 2, 3, 4, 5, 6, 8 }; | |
| 38 | |
| 39 #define CLIP8(a) if(a>127)a=127;if(a<-128)a=-128; | |
| 40 | |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6299
diff
changeset
|
41 static av_cold int ws_snd_decode_init(AVCodecContext * avctx) |
| 2585 | 42 { |
| 43 // WSSNDContext *c = avctx->priv_data; | |
| 2967 | 44 |
|
7451
85ab7655ad4d
Modify all codecs to report their supported input and output sample format(s).
pross
parents:
7040
diff
changeset
|
45 avctx->sample_fmt = SAMPLE_FMT_S16; |
| 2585 | 46 return 0; |
| 47 } | |
| 48 | |
| 49 static int ws_snd_decode_frame(AVCodecContext *avctx, | |
| 50 void *data, int *data_size, | |
| 6299 | 51 const uint8_t *buf, int buf_size) |
| 2585 | 52 { |
| 53 // WSSNDContext *c = avctx->priv_data; | |
| 2967 | 54 |
| 2585 | 55 int in_size, out_size; |
| 56 int sample = 0; | |
| 57 int i; | |
| 58 short *samples = data; | |
| 2967 | 59 |
| 2585 | 60 if (!buf_size) |
| 61 return 0; | |
| 62 | |
| 4364 | 63 out_size = AV_RL16(&buf[0]); |
| 2585 | 64 *data_size = out_size * 2; |
| 4364 | 65 in_size = AV_RL16(&buf[2]); |
| 2585 | 66 buf += 4; |
| 2967 | 67 |
|
5674
ca944f1db2b3
Add checks on input/output buffers size for some audio decoders
kostya
parents:
4364
diff
changeset
|
68 if (out_size > *data_size) { |
|
ca944f1db2b3
Add checks on input/output buffers size for some audio decoders
kostya
parents:
4364
diff
changeset
|
69 av_log(avctx, AV_LOG_ERROR, "Frame is too large to fit in buffer\n"); |
|
ca944f1db2b3
Add checks on input/output buffers size for some audio decoders
kostya
parents:
4364
diff
changeset
|
70 return -1; |
|
ca944f1db2b3
Add checks on input/output buffers size for some audio decoders
kostya
parents:
4364
diff
changeset
|
71 } |
|
ca944f1db2b3
Add checks on input/output buffers size for some audio decoders
kostya
parents:
4364
diff
changeset
|
72 if (in_size > buf_size) { |
|
ca944f1db2b3
Add checks on input/output buffers size for some audio decoders
kostya
parents:
4364
diff
changeset
|
73 av_log(avctx, AV_LOG_ERROR, "Frame data is larger than input buffer\n"); |
|
ca944f1db2b3
Add checks on input/output buffers size for some audio decoders
kostya
parents:
4364
diff
changeset
|
74 return -1; |
|
ca944f1db2b3
Add checks on input/output buffers size for some audio decoders
kostya
parents:
4364
diff
changeset
|
75 } |
| 2585 | 76 if (in_size == out_size) { |
| 77 for (i = 0; i < out_size; i++) | |
| 78 *samples++ = (*buf++ - 0x80) << 8; | |
| 79 return buf_size; | |
| 80 } | |
| 2967 | 81 |
| 2585 | 82 while (out_size > 0) { |
| 83 int code; | |
| 84 uint8_t count; | |
| 85 code = (*buf) >> 6; | |
| 86 count = (*buf) & 0x3F; | |
| 87 buf++; | |
| 88 switch(code) { | |
| 89 case 0: /* ADPCM 2-bit */ | |
| 90 for (count++; count > 0; count--) { | |
| 91 code = *buf++; | |
| 92 sample += ws_adpcm_2bit[code & 0x3]; | |
| 93 CLIP8(sample); | |
| 94 *samples++ = sample << 8; | |
| 95 sample += ws_adpcm_2bit[(code >> 2) & 0x3]; | |
| 96 CLIP8(sample); | |
| 97 *samples++ = sample << 8; | |
| 98 sample += ws_adpcm_2bit[(code >> 4) & 0x3]; | |
| 99 CLIP8(sample); | |
| 100 *samples++ = sample << 8; | |
| 101 sample += ws_adpcm_2bit[(code >> 6) & 0x3]; | |
| 102 CLIP8(sample); | |
| 103 *samples++ = sample << 8; | |
| 104 out_size -= 4; | |
| 105 } | |
| 106 break; | |
| 107 case 1: /* ADPCM 4-bit */ | |
| 108 for (count++; count > 0; count--) { | |
| 109 code = *buf++; | |
| 110 sample += ws_adpcm_4bit[code & 0xF]; | |
| 111 CLIP8(sample); | |
| 112 *samples++ = sample << 8; | |
| 113 sample += ws_adpcm_4bit[code >> 4]; | |
| 114 CLIP8(sample); | |
| 115 *samples++ = sample << 8; | |
| 116 out_size -= 2; | |
| 117 } | |
| 118 break; | |
| 119 case 2: /* no compression */ | |
| 120 if (count & 0x20) { /* big delta */ | |
| 121 char t; | |
| 122 t = count; | |
| 123 t <<= 3; | |
| 124 sample += t >> 3; | |
| 125 *samples++ = sample << 8; | |
| 126 out_size--; | |
| 127 } else { /* copy */ | |
| 128 for (count++; count > 0; count--) { | |
| 129 *samples++ = (*buf++ - 0x80) << 8; | |
| 130 out_size--; | |
| 131 } | |
| 132 sample = buf[-1] - 0x80; | |
| 133 } | |
| 134 break; | |
| 135 default: /* run */ | |
| 136 for(count++; count > 0; count--) { | |
| 137 *samples++ = sample << 8; | |
| 138 out_size--; | |
| 139 } | |
| 140 } | |
| 141 } | |
| 2967 | 142 |
| 2585 | 143 return buf_size; |
| 144 } | |
| 145 | |
| 146 AVCodec ws_snd1_decoder = { | |
| 147 "ws_snd1", | |
| 148 CODEC_TYPE_AUDIO, | |
| 149 CODEC_ID_WESTWOOD_SND1, | |
| 4019 | 150 0, |
| 2585 | 151 ws_snd_decode_init, |
| 152 NULL, | |
| 153 NULL, | |
| 154 ws_snd_decode_frame, | |
|
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6717
diff
changeset
|
155 .long_name = NULL_IF_CONFIG_SMALL("Westwood Audio (SND1)"), |
| 2585 | 156 }; |
