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.

236 lines
6.7KB

  1. /*
  2. * Copyright (c) 2001 Fabrice Bellard
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5. * of this software and associated documentation files (the "Software"), to deal
  6. * in the Software without restriction, including without limitation the rights
  7. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. * copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. * THE SOFTWARE.
  21. */
  22. /**
  23. * @file
  24. * audio encoding with libavcodec API example.
  25. *
  26. * @example encode_audio.c
  27. */
  28. #include <stdint.h>
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31. #include "libavcodec/avcodec.h"
  32. #include "libavutil/channel_layout.h"
  33. #include "libavutil/common.h"
  34. #include "libavutil/frame.h"
  35. #include "libavutil/samplefmt.h"
  36. /* check that a given sample format is supported by the encoder */
  37. static int check_sample_fmt(const AVCodec *codec, enum AVSampleFormat sample_fmt)
  38. {
  39. const enum AVSampleFormat *p = codec->sample_fmts;
  40. while (*p != AV_SAMPLE_FMT_NONE) {
  41. if (*p == sample_fmt)
  42. return 1;
  43. p++;
  44. }
  45. return 0;
  46. }
  47. /* just pick the highest supported samplerate */
  48. static int select_sample_rate(const AVCodec *codec)
  49. {
  50. const int *p;
  51. int best_samplerate = 0;
  52. if (!codec->supported_samplerates)
  53. return 44100;
  54. p = codec->supported_samplerates;
  55. while (*p) {
  56. best_samplerate = FFMAX(*p, best_samplerate);
  57. p++;
  58. }
  59. return best_samplerate;
  60. }
  61. /* select layout with the highest channel count */
  62. static int select_channel_layout(const AVCodec *codec)
  63. {
  64. const uint64_t *p;
  65. uint64_t best_ch_layout = 0;
  66. int best_nb_channels = 0;
  67. if (!codec->channel_layouts)
  68. return AV_CH_LAYOUT_STEREO;
  69. p = codec->channel_layouts;
  70. while (*p) {
  71. int nb_channels = av_get_channel_layout_nb_channels(*p);
  72. if (nb_channels > best_nb_channels) {
  73. best_ch_layout = *p;
  74. best_nb_channels = nb_channels;
  75. }
  76. p++;
  77. }
  78. return best_ch_layout;
  79. }
  80. int main(int argc, char **argv)
  81. {
  82. const char *filename;
  83. const AVCodec *codec;
  84. AVCodecContext *c= NULL;
  85. AVFrame *frame;
  86. AVPacket pkt;
  87. int i, j, k, ret, got_output;
  88. int buffer_size;
  89. FILE *f;
  90. uint16_t *samples;
  91. float t, tincr;
  92. if (argc <= 1) {
  93. fprintf(stderr, "Usage: %s <output file>\n", argv[0]);
  94. return 0;
  95. }
  96. filename = argv[1];
  97. /* register all the codecs */
  98. avcodec_register_all();
  99. /* find the MP2 encoder */
  100. codec = avcodec_find_encoder(AV_CODEC_ID_MP2);
  101. if (!codec) {
  102. fprintf(stderr, "Codec not found\n");
  103. exit(1);
  104. }
  105. c = avcodec_alloc_context3(codec);
  106. if (!c) {
  107. fprintf(stderr, "Could not allocate audio codec context\n");
  108. exit(1);
  109. }
  110. /* put sample parameters */
  111. c->bit_rate = 64000;
  112. /* check that the encoder supports s16 pcm input */
  113. c->sample_fmt = AV_SAMPLE_FMT_S16;
  114. if (!check_sample_fmt(codec, c->sample_fmt)) {
  115. fprintf(stderr, "Encoder does not support sample format %s",
  116. av_get_sample_fmt_name(c->sample_fmt));
  117. exit(1);
  118. }
  119. /* select other audio parameters supported by the encoder */
  120. c->sample_rate = select_sample_rate(codec);
  121. c->channel_layout = select_channel_layout(codec);
  122. c->channels = av_get_channel_layout_nb_channels(c->channel_layout);
  123. /* open it */
  124. if (avcodec_open2(c, codec, NULL) < 0) {
  125. fprintf(stderr, "Could not open codec\n");
  126. exit(1);
  127. }
  128. f = fopen(filename, "wb");
  129. if (!f) {
  130. fprintf(stderr, "Could not open %s\n", filename);
  131. exit(1);
  132. }
  133. /* frame containing input raw audio */
  134. frame = av_frame_alloc();
  135. if (!frame) {
  136. fprintf(stderr, "Could not allocate audio frame\n");
  137. exit(1);
  138. }
  139. frame->nb_samples = c->frame_size;
  140. frame->format = c->sample_fmt;
  141. frame->channel_layout = c->channel_layout;
  142. /* the codec gives us the frame size, in samples,
  143. * we calculate the size of the samples buffer in bytes */
  144. buffer_size = av_samples_get_buffer_size(NULL, c->channels, c->frame_size,
  145. c->sample_fmt, 0);
  146. if (buffer_size < 0) {
  147. fprintf(stderr, "Could not get sample buffer size\n");
  148. exit(1);
  149. }
  150. samples = av_malloc(buffer_size);
  151. if (!samples) {
  152. fprintf(stderr, "Could not allocate %d bytes for samples buffer\n",
  153. buffer_size);
  154. exit(1);
  155. }
  156. /* setup the data pointers in the AVFrame */
  157. ret = avcodec_fill_audio_frame(frame, c->channels, c->sample_fmt,
  158. (const uint8_t*)samples, buffer_size, 0);
  159. if (ret < 0) {
  160. fprintf(stderr, "Could not setup audio frame\n");
  161. exit(1);
  162. }
  163. /* encode a single tone sound */
  164. t = 0;
  165. tincr = 2 * M_PI * 440.0 / c->sample_rate;
  166. for (i = 0; i < 200; i++) {
  167. av_init_packet(&pkt);
  168. pkt.data = NULL; // packet data will be allocated by the encoder
  169. pkt.size = 0;
  170. for (j = 0; j < c->frame_size; j++) {
  171. samples[2*j] = (int)(sin(t) * 10000);
  172. for (k = 1; k < c->channels; k++)
  173. samples[2*j + k] = samples[2*j];
  174. t += tincr;
  175. }
  176. /* encode the samples */
  177. ret = avcodec_encode_audio2(c, &pkt, frame, &got_output);
  178. if (ret < 0) {
  179. fprintf(stderr, "Error encoding audio frame\n");
  180. exit(1);
  181. }
  182. if (got_output) {
  183. fwrite(pkt.data, 1, pkt.size, f);
  184. av_packet_unref(&pkt);
  185. }
  186. }
  187. /* get the delayed frames */
  188. for (got_output = 1; got_output; i++) {
  189. ret = avcodec_encode_audio2(c, &pkt, NULL, &got_output);
  190. if (ret < 0) {
  191. fprintf(stderr, "Error encoding frame\n");
  192. exit(1);
  193. }
  194. if (got_output) {
  195. fwrite(pkt.data, 1, pkt.size, f);
  196. av_packet_unref(&pkt);
  197. }
  198. }
  199. fclose(f);
  200. av_freep(&samples);
  201. av_frame_free(&frame);
  202. avcodec_free_context(&c);
  203. }