You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

382 lines
12KB

  1. /*
  2. * copyright (c) 2002 Mark Hills <mark@pogo.org.uk>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file oggvorbis.c
  22. * Ogg Vorbis codec support via libvorbisenc.
  23. * @author Mark Hills <mark@pogo.org.uk>
  24. */
  25. #include <vorbis/vorbisenc.h>
  26. #include "avcodec.h"
  27. #undef NDEBUG
  28. #include <assert.h>
  29. #define OGGVORBIS_FRAME_SIZE 64
  30. #define BUFFER_SIZE (1024*64)
  31. typedef struct OggVorbisContext {
  32. vorbis_info vi ;
  33. vorbis_dsp_state vd ;
  34. vorbis_block vb ;
  35. uint8_t buffer[BUFFER_SIZE];
  36. int buffer_index;
  37. /* decoder */
  38. vorbis_comment vc ;
  39. ogg_packet op;
  40. } OggVorbisContext ;
  41. static int oggvorbis_init_encoder(vorbis_info *vi, AVCodecContext *avccontext) {
  42. double cfreq;
  43. if(avccontext->flags & CODEC_FLAG_QSCALE) {
  44. /* variable bitrate */
  45. if(vorbis_encode_setup_vbr(vi, avccontext->channels,
  46. avccontext->sample_rate,
  47. avccontext->global_quality / (float)FF_QP2LAMBDA))
  48. return -1;
  49. } else {
  50. /* constant bitrate */
  51. if(vorbis_encode_setup_managed(vi, avccontext->channels,
  52. avccontext->sample_rate, -1, avccontext->bit_rate, -1))
  53. return -1;
  54. #ifdef OGGVORBIS_VBR_BY_ESTIMATE
  55. /* variable bitrate by estimate */
  56. if(vorbis_encode_ctl(vi, OV_ECTL_RATEMANAGE_AVG, NULL))
  57. return -1;
  58. #endif
  59. }
  60. /* cutoff frequency */
  61. if(avccontext->cutoff > 0) {
  62. cfreq = avccontext->cutoff / 1000.0;
  63. if(vorbis_encode_ctl(vi, OV_ECTL_LOWPASS_SET, &cfreq))
  64. return -1;
  65. }
  66. return vorbis_encode_setup_init(vi);
  67. }
  68. static int oggvorbis_encode_init(AVCodecContext *avccontext) {
  69. OggVorbisContext *context = avccontext->priv_data ;
  70. ogg_packet header, header_comm, header_code;
  71. uint8_t *p;
  72. unsigned int offset, len;
  73. vorbis_info_init(&context->vi) ;
  74. if(oggvorbis_init_encoder(&context->vi, avccontext) < 0) {
  75. av_log(avccontext, AV_LOG_ERROR, "oggvorbis_encode_init: init_encoder failed") ;
  76. return -1 ;
  77. }
  78. vorbis_analysis_init(&context->vd, &context->vi) ;
  79. vorbis_block_init(&context->vd, &context->vb) ;
  80. vorbis_comment_init(&context->vc);
  81. vorbis_comment_add_tag(&context->vc, "encoder", LIBAVCODEC_IDENT) ;
  82. vorbis_analysis_headerout(&context->vd, &context->vc, &header,
  83. &header_comm, &header_code);
  84. len = header.bytes + header_comm.bytes + header_code.bytes;
  85. avccontext->extradata_size= 64 + len + len/255;
  86. p = avccontext->extradata= av_mallocz(avccontext->extradata_size);
  87. p[0] = 2;
  88. offset = 1;
  89. offset += av_xiphlacing(&p[offset], header.bytes);
  90. offset += av_xiphlacing(&p[offset], header_comm.bytes);
  91. memcpy(&p[offset], header.packet, header.bytes);
  92. offset += header.bytes;
  93. memcpy(&p[offset], header_comm.packet, header_comm.bytes);
  94. offset += header_comm.bytes;
  95. memcpy(&p[offset], header_code.packet, header_code.bytes);
  96. offset += header_code.bytes;
  97. avccontext->extradata_size = offset;
  98. avccontext->extradata= av_realloc(avccontext->extradata, avccontext->extradata_size);
  99. /* vorbis_block_clear(&context->vb);
  100. vorbis_dsp_clear(&context->vd);
  101. vorbis_info_clear(&context->vi);*/
  102. vorbis_comment_clear(&context->vc);
  103. avccontext->frame_size = OGGVORBIS_FRAME_SIZE ;
  104. avccontext->coded_frame= avcodec_alloc_frame();
  105. avccontext->coded_frame->key_frame= 1;
  106. return 0 ;
  107. }
  108. static int oggvorbis_encode_frame(AVCodecContext *avccontext,
  109. unsigned char *packets,
  110. int buf_size, void *data)
  111. {
  112. OggVorbisContext *context = avccontext->priv_data ;
  113. float **buffer ;
  114. ogg_packet op ;
  115. signed short *audio = data ;
  116. int l, samples = data ? OGGVORBIS_FRAME_SIZE : 0;
  117. buffer = vorbis_analysis_buffer(&context->vd, samples) ;
  118. if(context->vi.channels == 1) {
  119. for(l = 0 ; l < samples ; l++)
  120. buffer[0][l]=audio[l]/32768.f;
  121. } else {
  122. for(l = 0 ; l < samples ; l++){
  123. buffer[0][l]=audio[l*2]/32768.f;
  124. buffer[1][l]=audio[l*2+1]/32768.f;
  125. }
  126. }
  127. vorbis_analysis_wrote(&context->vd, samples) ;
  128. while(vorbis_analysis_blockout(&context->vd, &context->vb) == 1) {
  129. vorbis_analysis(&context->vb, NULL);
  130. vorbis_bitrate_addblock(&context->vb) ;
  131. while(vorbis_bitrate_flushpacket(&context->vd, &op)) {
  132. if(op.bytes==1) //id love to say this is a hack, bad sadly its not, appearently the end of stream decission is in libogg
  133. continue;
  134. memcpy(context->buffer + context->buffer_index, &op, sizeof(ogg_packet));
  135. context->buffer_index += sizeof(ogg_packet);
  136. memcpy(context->buffer + context->buffer_index, op.packet, op.bytes);
  137. context->buffer_index += op.bytes;
  138. // av_log(avccontext, AV_LOG_DEBUG, "e%d / %d\n", context->buffer_index, op.bytes);
  139. }
  140. }
  141. l=0;
  142. if(context->buffer_index){
  143. ogg_packet *op2= (ogg_packet*)context->buffer;
  144. op2->packet = context->buffer + sizeof(ogg_packet);
  145. l= op2->bytes;
  146. avccontext->coded_frame->pts= av_rescale_q(op2->granulepos, (AVRational){1, avccontext->sample_rate}, avccontext->time_base);
  147. //FIXME we should reorder the user supplied pts and not assume that they are spaced by 1/sample_rate
  148. memcpy(packets, op2->packet, l);
  149. context->buffer_index -= l + sizeof(ogg_packet);
  150. memcpy(context->buffer, context->buffer + l + sizeof(ogg_packet), context->buffer_index);
  151. // av_log(avccontext, AV_LOG_DEBUG, "E%d\n", l);
  152. }
  153. return l;
  154. }
  155. static int oggvorbis_encode_close(AVCodecContext *avccontext) {
  156. OggVorbisContext *context = avccontext->priv_data ;
  157. /* ogg_packet op ; */
  158. vorbis_analysis_wrote(&context->vd, 0) ; /* notify vorbisenc this is EOF */
  159. vorbis_block_clear(&context->vb);
  160. vorbis_dsp_clear(&context->vd);
  161. vorbis_info_clear(&context->vi);
  162. av_freep(&avccontext->coded_frame);
  163. av_freep(&avccontext->extradata);
  164. return 0 ;
  165. }
  166. AVCodec oggvorbis_encoder = {
  167. "vorbis",
  168. CODEC_TYPE_AUDIO,
  169. CODEC_ID_VORBIS,
  170. sizeof(OggVorbisContext),
  171. oggvorbis_encode_init,
  172. oggvorbis_encode_frame,
  173. oggvorbis_encode_close,
  174. .capabilities= CODEC_CAP_DELAY,
  175. } ;
  176. static int oggvorbis_decode_init(AVCodecContext *avccontext) {
  177. OggVorbisContext *context = avccontext->priv_data ;
  178. uint8_t *p= avccontext->extradata;
  179. int i, hsizes[3];
  180. unsigned char *headers[3], *extradata = avccontext->extradata;
  181. vorbis_info_init(&context->vi) ;
  182. vorbis_comment_init(&context->vc) ;
  183. if(! avccontext->extradata_size || ! p) {
  184. av_log(avccontext, AV_LOG_ERROR, "vorbis extradata absent\n");
  185. return -1;
  186. }
  187. if(p[0] == 0 && p[1] == 30) {
  188. for(i = 0; i < 3; i++){
  189. hsizes[i] = *p++ << 8;
  190. hsizes[i] += *p++;
  191. headers[i] = p;
  192. p += hsizes[i];
  193. }
  194. } else if(*p == 2) {
  195. unsigned int offset = 1;
  196. p++;
  197. for(i=0; i<2; i++) {
  198. hsizes[i] = 0;
  199. while((*p == 0xFF) && (offset < avccontext->extradata_size)) {
  200. hsizes[i] += 0xFF;
  201. offset++;
  202. p++;
  203. }
  204. if(offset >= avccontext->extradata_size - 1) {
  205. av_log(avccontext, AV_LOG_ERROR,
  206. "vorbis header sizes damaged\n");
  207. return -1;
  208. }
  209. hsizes[i] += *p;
  210. offset++;
  211. p++;
  212. }
  213. hsizes[2] = avccontext->extradata_size - hsizes[0]-hsizes[1]-offset;
  214. #if 0
  215. av_log(avccontext, AV_LOG_DEBUG,
  216. "vorbis header sizes: %d, %d, %d, / extradata_len is %d \n",
  217. hsizes[0], hsizes[1], hsizes[2], avccontext->extradata_size);
  218. #endif
  219. headers[0] = extradata + offset;
  220. headers[1] = extradata + offset + hsizes[0];
  221. headers[2] = extradata + offset + hsizes[0] + hsizes[1];
  222. } else {
  223. av_log(avccontext, AV_LOG_ERROR,
  224. "vorbis initial header len is wrong: %d\n", *p);
  225. return -1;
  226. }
  227. for(i=0; i<3; i++){
  228. context->op.b_o_s= i==0;
  229. context->op.bytes = hsizes[i];
  230. context->op.packet = headers[i];
  231. if(vorbis_synthesis_headerin(&context->vi, &context->vc, &context->op)<0){
  232. av_log(avccontext, AV_LOG_ERROR, "%d. vorbis header damaged\n", i+1);
  233. return -1;
  234. }
  235. }
  236. avccontext->channels = context->vi.channels;
  237. avccontext->sample_rate = context->vi.rate;
  238. avccontext->time_base= (AVRational){1, avccontext->sample_rate};
  239. vorbis_synthesis_init(&context->vd, &context->vi);
  240. vorbis_block_init(&context->vd, &context->vb);
  241. return 0 ;
  242. }
  243. static inline int conv(int samples, float **pcm, char *buf, int channels) {
  244. int i, j, val ;
  245. ogg_int16_t *ptr, *data = (ogg_int16_t*)buf ;
  246. float *mono ;
  247. for(i = 0 ; i < channels ; i++){
  248. ptr = &data[i];
  249. mono = pcm[i] ;
  250. for(j = 0 ; j < samples ; j++) {
  251. val = mono[j] * 32767.f;
  252. if(val > 32767) val = 32767 ;
  253. if(val < -32768) val = -32768 ;
  254. *ptr = val ;
  255. ptr += channels;
  256. }
  257. }
  258. return 0 ;
  259. }
  260. static int oggvorbis_decode_frame(AVCodecContext *avccontext,
  261. void *data, int *data_size,
  262. uint8_t *buf, int buf_size)
  263. {
  264. OggVorbisContext *context = avccontext->priv_data ;
  265. float **pcm ;
  266. ogg_packet *op= &context->op;
  267. int samples, total_samples, total_bytes;
  268. if(!buf_size){
  269. //FIXME flush
  270. return 0;
  271. }
  272. op->packet = buf;
  273. op->bytes = buf_size;
  274. // av_log(avccontext, AV_LOG_DEBUG, "%d %d %d %"PRId64" %"PRId64" %d %d\n", op->bytes, op->b_o_s, op->e_o_s, op->granulepos, op->packetno, buf_size, context->vi.rate);
  275. /* for(i=0; i<op->bytes; i++)
  276. av_log(avccontext, AV_LOG_DEBUG, "%02X ", op->packet[i]);
  277. av_log(avccontext, AV_LOG_DEBUG, "\n");*/
  278. if(vorbis_synthesis(&context->vb, op) == 0)
  279. vorbis_synthesis_blockin(&context->vd, &context->vb) ;
  280. total_samples = 0 ;
  281. total_bytes = 0 ;
  282. while((samples = vorbis_synthesis_pcmout(&context->vd, &pcm)) > 0) {
  283. conv(samples, pcm, (char*)data + total_bytes, context->vi.channels) ;
  284. total_bytes += samples * 2 * context->vi.channels ;
  285. total_samples += samples ;
  286. vorbis_synthesis_read(&context->vd, samples) ;
  287. }
  288. *data_size = total_bytes ;
  289. return buf_size ;
  290. }
  291. static int oggvorbis_decode_close(AVCodecContext *avccontext) {
  292. OggVorbisContext *context = avccontext->priv_data ;
  293. vorbis_info_clear(&context->vi) ;
  294. vorbis_comment_clear(&context->vc) ;
  295. return 0 ;
  296. }
  297. AVCodec oggvorbis_decoder = {
  298. "vorbis",
  299. CODEC_TYPE_AUDIO,
  300. CODEC_ID_VORBIS,
  301. sizeof(OggVorbisContext),
  302. oggvorbis_decode_init,
  303. NULL,
  304. oggvorbis_decode_close,
  305. oggvorbis_decode_frame,
  306. .capabilities= CODEC_CAP_DELAY,
  307. } ;