Mercurial > libavcodec.hg
annotate libgsm.c @ 6673:679b9ef6f5f3 libavcodec
Make sure some value is always returned via data_size
| author | mbardiaux |
|---|---|
| date | Fri, 25 Apr 2008 13:25:11 +0000 |
| parents | 79984fdb1203 |
| children | 5df0c730234d |
| rev | line source |
|---|---|
| 2729 | 1 /* |
| 2 * Interface to libgsm for gsm encoding/decoding | |
| 3 * Copyright (c) 2005 Alban Bedel <albeu@free.fr> | |
| 4551 | 4 * Copyright (c) 2006, 2007 Michel Bardiaux <mbardiaux@mediaxim.be> |
| 2729 | 5 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
6 * This file is part of FFmpeg. |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
7 * |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
8 * FFmpeg is free software; you can redistribute it and/or |
| 2729 | 9 * modify it under the terms of the GNU Lesser General Public |
| 10 * 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
|
11 * version 2.1 of the License, or (at your option) any later version. |
| 2729 | 12 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
13 * FFmpeg is distributed in the hope that it will be useful, |
| 2729 | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 16 * Lesser General Public License for more details. | |
| 17 * | |
| 18 * 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
|
19 * 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
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 2729 | 21 */ |
| 2967 | 22 |
| 2729 | 23 /** |
| 24 * @file libgsm.c | |
| 25 * Interface to libgsm for gsm encoding/decoding | |
| 26 */ | |
| 27 | |
| 4551 | 28 // The idiosyncrasies of GSM-in-WAV are explained at http://kbs.cs.tu-berlin.de/~jutta/toast.html |
| 29 | |
| 2729 | 30 #include "avcodec.h" |
| 31 #include <gsm.h> | |
| 32 | |
| 5408 | 33 // gsm.h misses some essential constants |
| 2729 | 34 #define GSM_BLOCK_SIZE 33 |
| 4551 | 35 #define GSM_MS_BLOCK_SIZE 65 |
| 2729 | 36 #define GSM_FRAME_SIZE 160 |
| 37 | |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
5408
diff
changeset
|
38 static av_cold int libgsm_init(AVCodecContext *avctx) { |
|
6672
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
39 if (avctx->channels > 1) { |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
40 av_log(avctx, AV_LOG_ERROR, "Mono required for GSM, got %d channels\n", |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
41 avctx->channels); |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
42 return -1; |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
43 } |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
44 if (avctx->sample_rate != 8000) { |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
45 av_log(avctx, AV_LOG_ERROR, "Sample rate 8000Hz required for GSM, got %dHz\n", |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
46 avctx->sample_rate); |
| 2729 | 47 return -1; |
|
6672
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
48 } |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
49 if (avctx->bit_rate != 13000 /* Official */ && |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
50 avctx->bit_rate != 13200 /* Very common */ && |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
51 avctx->bit_rate != 0 /* Unknown; a.o. mov does not set bitrate when decoding */ ) { |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
52 av_log(avctx, AV_LOG_ERROR, "Bitrate 13000bps required for GSM, got %dbps\n", |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
53 avctx->bit_rate); |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
54 return -1; |
|
79984fdb1203
Allow bitrates zero and 13200 (needed for decoding mov and aiff)
mbardiaux
parents:
6517
diff
changeset
|
55 } |
| 2729 | 56 |
| 4551 | 57 avctx->priv_data = gsm_create(); |
| 2729 | 58 |
| 4551 | 59 switch(avctx->codec_id) { |
| 60 case CODEC_ID_GSM: | |
| 61 avctx->frame_size = GSM_FRAME_SIZE; | |
| 62 avctx->block_align = GSM_BLOCK_SIZE; | |
| 63 break; | |
| 64 case CODEC_ID_GSM_MS: { | |
| 65 int one = 1; | |
| 66 gsm_option(avctx->priv_data, GSM_OPT_WAV49, &one); | |
| 67 avctx->frame_size = 2*GSM_FRAME_SIZE; | |
| 68 avctx->block_align = GSM_MS_BLOCK_SIZE; | |
| 69 } | |
| 70 } | |
| 2967 | 71 |
| 2729 | 72 avctx->coded_frame= avcodec_alloc_frame(); |
| 73 avctx->coded_frame->key_frame= 1; | |
| 2967 | 74 |
| 2729 | 75 return 0; |
| 76 } | |
| 77 | |
|
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
5408
diff
changeset
|
78 static av_cold int libgsm_close(AVCodecContext *avctx) { |
| 2729 | 79 gsm_destroy(avctx->priv_data); |
| 80 avctx->priv_data = NULL; | |
| 81 return 0; | |
| 82 } | |
| 83 | |
| 84 static int libgsm_encode_frame(AVCodecContext *avctx, | |
| 85 unsigned char *frame, int buf_size, void *data) { | |
| 86 // we need a full block | |
| 4551 | 87 if(buf_size < avctx->block_align) return 0; |
| 2729 | 88 |
| 4551 | 89 switch(avctx->codec_id) { |
| 90 case CODEC_ID_GSM: | |
| 91 gsm_encode(avctx->priv_data,data,frame); | |
| 92 break; | |
| 93 case CODEC_ID_GSM_MS: | |
| 94 gsm_encode(avctx->priv_data,data,frame); | |
| 95 gsm_encode(avctx->priv_data,((short*)data)+GSM_FRAME_SIZE,frame+32); | |
| 96 } | |
| 97 return avctx->block_align; | |
| 2729 | 98 } |
| 99 | |
| 100 | |
| 101 AVCodec libgsm_encoder = { | |
|
5102
4323e587708d
Give names of external library decoders/encoders a lib prefix
diego
parents:
4551
diff
changeset
|
102 "libgsm", |
| 2729 | 103 CODEC_TYPE_AUDIO, |
| 104 CODEC_ID_GSM, | |
| 105 0, | |
| 106 libgsm_init, | |
| 107 libgsm_encode_frame, | |
| 108 libgsm_close, | |
| 109 }; | |
| 110 | |
| 4551 | 111 AVCodec libgsm_ms_encoder = { |
|
5102
4323e587708d
Give names of external library decoders/encoders a lib prefix
diego
parents:
4551
diff
changeset
|
112 "libgsm_ms", |
| 4551 | 113 CODEC_TYPE_AUDIO, |
| 114 CODEC_ID_GSM_MS, | |
| 115 0, | |
| 116 libgsm_init, | |
| 117 libgsm_encode_frame, | |
| 118 libgsm_close, | |
| 119 }; | |
| 120 | |
| 2729 | 121 static int libgsm_decode_frame(AVCodecContext *avctx, |
| 122 void *data, int *data_size, | |
| 123 uint8_t *buf, int buf_size) { | |
|
6673
679b9ef6f5f3
Make sure some value is always returned via data_size
mbardiaux
parents:
6672
diff
changeset
|
124 *data_size = 0; /* In case of error */ |
|
679b9ef6f5f3
Make sure some value is always returned via data_size
mbardiaux
parents:
6672
diff
changeset
|
125 if(buf_size < avctx->block_align) return -1; |
| 4551 | 126 switch(avctx->codec_id) { |
| 127 case CODEC_ID_GSM: | |
| 128 if(gsm_decode(avctx->priv_data,buf,data)) return -1; | |
| 129 *data_size = GSM_FRAME_SIZE*sizeof(int16_t); | |
| 130 break; | |
| 131 case CODEC_ID_GSM_MS: | |
| 132 if(gsm_decode(avctx->priv_data,buf,data) || | |
| 133 gsm_decode(avctx->priv_data,buf+33,((int16_t*)data)+GSM_FRAME_SIZE)) return -1; | |
| 134 *data_size = GSM_FRAME_SIZE*sizeof(int16_t)*2; | |
| 135 } | |
| 136 return avctx->block_align; | |
| 2729 | 137 } |
| 138 | |
| 139 AVCodec libgsm_decoder = { | |
|
5102
4323e587708d
Give names of external library decoders/encoders a lib prefix
diego
parents:
4551
diff
changeset
|
140 "libgsm", |
| 2729 | 141 CODEC_TYPE_AUDIO, |
| 142 CODEC_ID_GSM, | |
| 143 0, | |
| 144 libgsm_init, | |
| 145 NULL, | |
| 146 libgsm_close, | |
| 147 libgsm_decode_frame, | |
| 148 }; | |
| 4551 | 149 |
| 150 AVCodec libgsm_ms_decoder = { | |
|
5102
4323e587708d
Give names of external library decoders/encoders a lib prefix
diego
parents:
4551
diff
changeset
|
151 "libgsm_ms", |
| 4551 | 152 CODEC_TYPE_AUDIO, |
| 153 CODEC_ID_GSM_MS, | |
| 154 0, | |
| 155 libgsm_init, | |
| 156 NULL, | |
| 157 libgsm_close, | |
| 158 libgsm_decode_frame, | |
| 159 }; |
