filtering_audio.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. /*
  2. * Copyright (c) 2010 Nicolas George
  3. * Copyright (c) 2011 Stefano Sabatini
  4. * Copyright (c) 2012 Clément Bœsch
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. /**
  25. * @file
  26. * API example for audio decoding and filtering
  27. * @example doc/examples/filtering_audio.c
  28. */
  29. #include <unistd.h>
  30. #include <libavcodec/avcodec.h>
  31. #include <libavformat/avformat.h>
  32. #include <libavfilter/avfiltergraph.h>
  33. #include <libavfilter/avcodec.h>
  34. #include <libavfilter/buffersink.h>
  35. #include <libavfilter/buffersrc.h>
  36. #include <libavutil/opt.h>
  37. const char *filter_descr = "aresample=8000,aformat=sample_fmts=s16:channel_layouts=mono";
  38. const char *player = "ffplay -f s16le -ar 8000 -ac 1 -";
  39. static AVFormatContext *fmt_ctx;
  40. static AVCodecContext *dec_ctx;
  41. AVFilterContext *buffersink_ctx;
  42. AVFilterContext *buffersrc_ctx;
  43. AVFilterGraph *filter_graph;
  44. static int audio_stream_index = -1;
  45. static int open_input_file(const char *filename)
  46. {
  47. int ret;
  48. AVCodec *dec;
  49. if ((ret = avformat_open_input(&fmt_ctx, filename, NULL, NULL)) < 0) {
  50. av_log(NULL, AV_LOG_ERROR, "Cannot open input file\n");
  51. return ret;
  52. }
  53. if ((ret = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
  54. av_log(NULL, AV_LOG_ERROR, "Cannot find stream information\n");
  55. return ret;
  56. }
  57. /* select the audio stream */
  58. ret = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_AUDIO, -1, -1, &dec, 0);
  59. if (ret < 0) {
  60. av_log(NULL, AV_LOG_ERROR, "Cannot find a audio stream in the input file\n");
  61. return ret;
  62. }
  63. audio_stream_index = ret;
  64. dec_ctx = fmt_ctx->streams[audio_stream_index]->codec;
  65. av_opt_set_int(dec_ctx, "refcounted_frames", 1, 0);
  66. /* init the audio decoder */
  67. if ((ret = avcodec_open2(dec_ctx, dec, NULL)) < 0) {
  68. av_log(NULL, AV_LOG_ERROR, "Cannot open audio decoder\n");
  69. return ret;
  70. }
  71. return 0;
  72. }
  73. static int init_filters(const char *filters_descr)
  74. {
  75. char args[512];
  76. int ret;
  77. AVFilter *abuffersrc = avfilter_get_by_name("abuffer");
  78. AVFilter *abuffersink = avfilter_get_by_name("abuffersink");
  79. AVFilterInOut *outputs = avfilter_inout_alloc();
  80. AVFilterInOut *inputs = avfilter_inout_alloc();
  81. const enum AVSampleFormat out_sample_fmts[] = { AV_SAMPLE_FMT_S16, -1 };
  82. const int64_t out_channel_layouts[] = { AV_CH_LAYOUT_MONO, -1 };
  83. const int out_sample_rates[] = { 8000, -1 };
  84. const AVFilterLink *outlink;
  85. AVRational time_base = fmt_ctx->streams[audio_stream_index]->time_base;
  86. filter_graph = avfilter_graph_alloc();
  87. /* buffer audio source: the decoded frames from the decoder will be inserted here. */
  88. if (!dec_ctx->channel_layout)
  89. dec_ctx->channel_layout = av_get_default_channel_layout(dec_ctx->channels);
  90. snprintf(args, sizeof(args),
  91. "time_base=%d/%d:sample_rate=%d:sample_fmt=%s:channel_layout=0x%"PRIx64,
  92. time_base.num, time_base.den, dec_ctx->sample_rate,
  93. av_get_sample_fmt_name(dec_ctx->sample_fmt), dec_ctx->channel_layout);
  94. ret = avfilter_graph_create_filter(&buffersrc_ctx, abuffersrc, "in",
  95. args, NULL, filter_graph);
  96. if (ret < 0) {
  97. av_log(NULL, AV_LOG_ERROR, "Cannot create audio buffer source\n");
  98. return ret;
  99. }
  100. /* buffer audio sink: to terminate the filter chain. */
  101. ret = avfilter_graph_create_filter(&buffersink_ctx, abuffersink, "out",
  102. NULL, NULL, filter_graph);
  103. if (ret < 0) {
  104. av_log(NULL, AV_LOG_ERROR, "Cannot create audio buffer sink\n");
  105. return ret;
  106. }
  107. ret = av_opt_set_int_list(buffersink_ctx, "sample_fmts", out_sample_fmts, -1,
  108. AV_OPT_SEARCH_CHILDREN);
  109. if (ret < 0) {
  110. av_log(NULL, AV_LOG_ERROR, "Cannot set output sample format\n");
  111. return ret;
  112. }
  113. ret = av_opt_set_int_list(buffersink_ctx, "channel_layouts", out_channel_layouts, -1,
  114. AV_OPT_SEARCH_CHILDREN);
  115. if (ret < 0) {
  116. av_log(NULL, AV_LOG_ERROR, "Cannot set output channel layout\n");
  117. return ret;
  118. }
  119. ret = av_opt_set_int_list(buffersink_ctx, "sample_rates", out_sample_rates, -1,
  120. AV_OPT_SEARCH_CHILDREN);
  121. if (ret < 0) {
  122. av_log(NULL, AV_LOG_ERROR, "Cannot set output sample rate\n");
  123. return ret;
  124. }
  125. /* Endpoints for the filter graph. */
  126. outputs->name = av_strdup("in");
  127. outputs->filter_ctx = buffersrc_ctx;
  128. outputs->pad_idx = 0;
  129. outputs->next = NULL;
  130. inputs->name = av_strdup("out");
  131. inputs->filter_ctx = buffersink_ctx;
  132. inputs->pad_idx = 0;
  133. inputs->next = NULL;
  134. if ((ret = avfilter_graph_parse_ptr(filter_graph, filters_descr,
  135. &inputs, &outputs, NULL)) < 0)
  136. return ret;
  137. if ((ret = avfilter_graph_config(filter_graph, NULL)) < 0)
  138. return ret;
  139. /* Print summary of the sink buffer
  140. * Note: args buffer is reused to store channel layout string */
  141. outlink = buffersink_ctx->inputs[0];
  142. av_get_channel_layout_string(args, sizeof(args), -1, outlink->channel_layout);
  143. av_log(NULL, AV_LOG_INFO, "Output: srate:%dHz fmt:%s chlayout:%s\n",
  144. (int)outlink->sample_rate,
  145. (char *)av_x_if_null(av_get_sample_fmt_name(outlink->format), "?"),
  146. args);
  147. return 0;
  148. }
  149. static void print_frame(const AVFrame *frame)
  150. {
  151. const int n = frame->nb_samples * av_get_channel_layout_nb_channels(av_frame_get_channel_layout(frame));
  152. const uint16_t *p = (uint16_t*)frame->data[0];
  153. const uint16_t *p_end = p + n;
  154. while (p < p_end) {
  155. fputc(*p & 0xff, stdout);
  156. fputc(*p>>8 & 0xff, stdout);
  157. p++;
  158. }
  159. fflush(stdout);
  160. }
  161. int main(int argc, char **argv)
  162. {
  163. int ret;
  164. AVPacket packet;
  165. AVFrame *frame = av_frame_alloc();
  166. AVFrame *filt_frame = av_frame_alloc();
  167. int got_frame;
  168. if (!frame || !filt_frame) {
  169. perror("Could not allocate frame");
  170. exit(1);
  171. }
  172. if (argc != 2) {
  173. fprintf(stderr, "Usage: %s file | %s\n", argv[0], player);
  174. exit(1);
  175. }
  176. avcodec_register_all();
  177. av_register_all();
  178. avfilter_register_all();
  179. if ((ret = open_input_file(argv[1])) < 0)
  180. goto end;
  181. if ((ret = init_filters(filter_descr)) < 0)
  182. goto end;
  183. /* read all packets */
  184. while (1) {
  185. if ((ret = av_read_frame(fmt_ctx, &packet)) < 0)
  186. break;
  187. if (packet.stream_index == audio_stream_index) {
  188. avcodec_get_frame_defaults(frame);
  189. got_frame = 0;
  190. ret = avcodec_decode_audio4(dec_ctx, frame, &got_frame, &packet);
  191. if (ret < 0) {
  192. av_log(NULL, AV_LOG_ERROR, "Error decoding audio\n");
  193. continue;
  194. }
  195. if (got_frame) {
  196. /* push the audio data from decoded frame into the filtergraph */
  197. if (av_buffersrc_add_frame_flags(buffersrc_ctx, frame, 0) < 0) {
  198. av_log(NULL, AV_LOG_ERROR, "Error while feeding the audio filtergraph\n");
  199. break;
  200. }
  201. /* pull filtered audio from the filtergraph */
  202. while (1) {
  203. ret = av_buffersink_get_frame(buffersink_ctx, filt_frame);
  204. if(ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
  205. break;
  206. if(ret < 0)
  207. goto end;
  208. print_frame(filt_frame);
  209. av_frame_unref(filt_frame);
  210. }
  211. }
  212. }
  213. av_free_packet(&packet);
  214. }
  215. end:
  216. avfilter_graph_free(&filter_graph);
  217. if (dec_ctx)
  218. avcodec_close(dec_ctx);
  219. avformat_close_input(&fmt_ctx);
  220. av_frame_free(&frame);
  221. av_frame_free(&filt_frame);
  222. if (ret < 0 && ret != AVERROR_EOF) {
  223. char buf[1024];
  224. av_strerror(ret, buf, sizeof(buf));
  225. fprintf(stderr, "Error occurred: %s\n", buf);
  226. exit(1);
  227. }
  228. exit(0);
  229. }