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.

242 lines
6.5KB

  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. if (!best_samplerate || abs(44100 - *p) < abs(44100 - best_samplerate))
  57. best_samplerate = *p;
  58. p++;
  59. }
  60. return best_samplerate;
  61. }
  62. /* select layout with the highest channel count */
  63. static int select_channel_layout(const AVCodec *codec)
  64. {
  65. const uint64_t *p;
  66. uint64_t best_ch_layout = 0;
  67. int best_nb_channels = 0;
  68. if (!codec->channel_layouts)
  69. return AV_CH_LAYOUT_STEREO;
  70. p = codec->channel_layouts;
  71. while (*p) {
  72. int nb_channels = av_get_channel_layout_nb_channels(*p);
  73. if (nb_channels > best_nb_channels) {
  74. best_ch_layout = *p;
  75. best_nb_channels = nb_channels;
  76. }
  77. p++;
  78. }
  79. return best_ch_layout;
  80. }
  81. static void encode(AVCodecContext *ctx, AVFrame *frame, AVPacket *pkt,
  82. FILE *output)
  83. {
  84. int ret;
  85. /* send the frame for encoding */
  86. ret = avcodec_send_frame(ctx, frame);
  87. if (ret < 0) {
  88. fprintf(stderr, "Error sending the frame to the encoder\n");
  89. exit(1);
  90. }
  91. /* read all the available output packets (in general there may be any
  92. * number of them */
  93. while (ret >= 0) {
  94. ret = avcodec_receive_packet(ctx, pkt);
  95. if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
  96. return;
  97. else if (ret < 0) {
  98. fprintf(stderr, "Error encoding audio frame\n");
  99. exit(1);
  100. }
  101. fwrite(pkt->data, 1, pkt->size, output);
  102. av_packet_unref(pkt);
  103. }
  104. }
  105. int main(int argc, char **argv)
  106. {
  107. const char *filename;
  108. const AVCodec *codec;
  109. AVCodecContext *c= NULL;
  110. AVFrame *frame;
  111. AVPacket *pkt;
  112. int i, j, k, ret;
  113. FILE *f;
  114. uint16_t *samples;
  115. float t, tincr;
  116. if (argc <= 1) {
  117. fprintf(stderr, "Usage: %s <output file>\n", argv[0]);
  118. return 0;
  119. }
  120. filename = argv[1];
  121. /* register all the codecs */
  122. avcodec_register_all();
  123. /* find the MP2 encoder */
  124. codec = avcodec_find_encoder(AV_CODEC_ID_MP2);
  125. if (!codec) {
  126. fprintf(stderr, "Codec not found\n");
  127. exit(1);
  128. }
  129. c = avcodec_alloc_context3(codec);
  130. if (!c) {
  131. fprintf(stderr, "Could not allocate audio codec context\n");
  132. exit(1);
  133. }
  134. /* put sample parameters */
  135. c->bit_rate = 64000;
  136. /* check that the encoder supports s16 pcm input */
  137. c->sample_fmt = AV_SAMPLE_FMT_S16;
  138. if (!check_sample_fmt(codec, c->sample_fmt)) {
  139. fprintf(stderr, "Encoder does not support sample format %s",
  140. av_get_sample_fmt_name(c->sample_fmt));
  141. exit(1);
  142. }
  143. /* select other audio parameters supported by the encoder */
  144. c->sample_rate = select_sample_rate(codec);
  145. c->channel_layout = select_channel_layout(codec);
  146. c->channels = av_get_channel_layout_nb_channels(c->channel_layout);
  147. /* open it */
  148. if (avcodec_open2(c, codec, NULL) < 0) {
  149. fprintf(stderr, "Could not open codec\n");
  150. exit(1);
  151. }
  152. f = fopen(filename, "wb");
  153. if (!f) {
  154. fprintf(stderr, "Could not open %s\n", filename);
  155. exit(1);
  156. }
  157. /* packet for holding encoded output */
  158. pkt = av_packet_alloc();
  159. if (!pkt) {
  160. fprintf(stderr, "could not allocate the packet\n");
  161. exit(1);
  162. }
  163. /* frame containing input raw audio */
  164. frame = av_frame_alloc();
  165. if (!frame) {
  166. fprintf(stderr, "Could not allocate audio frame\n");
  167. exit(1);
  168. }
  169. frame->nb_samples = c->frame_size;
  170. frame->format = c->sample_fmt;
  171. frame->channel_layout = c->channel_layout;
  172. /* allocate the data buffers */
  173. ret = av_frame_get_buffer(frame, 0);
  174. if (ret < 0) {
  175. fprintf(stderr, "Could not allocate audio data buffers\n");
  176. exit(1);
  177. }
  178. /* encode a single tone sound */
  179. t = 0;
  180. tincr = 2 * M_PI * 440.0 / c->sample_rate;
  181. for (i = 0; i < 200; i++) {
  182. /* make sure the frame is writable -- makes a copy if the encoder
  183. * kept a reference internally */
  184. ret = av_frame_make_writable(frame);
  185. if (ret < 0)
  186. exit(1);
  187. samples = (uint16_t*)frame->data[0];
  188. for (j = 0; j < c->frame_size; j++) {
  189. samples[2*j] = (int)(sin(t) * 10000);
  190. for (k = 1; k < c->channels; k++)
  191. samples[2*j + k] = samples[2*j];
  192. t += tincr;
  193. }
  194. encode(c, frame, pkt, f);
  195. }
  196. /* flush the encoder */
  197. encode(c, NULL, pkt, f);
  198. fclose(f);
  199. av_frame_free(&frame);
  200. av_packet_free(&pkt);
  201. avcodec_free_context(&c);
  202. return 0;
  203. }