decode_filter_audio.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  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 audio decoding and filtering usage example
  26. * @example decode_filter_audio.c
  27. *
  28. * Demux, decode and filter audio input file, generate a raw audio
  29. * file to be played with ffplay.
  30. */
  31. #include <unistd.h>
  32. #include <libavcodec/avcodec.h>
  33. #include <libavformat/avformat.h>
  34. #include <libavfilter/buffersink.h>
  35. #include <libavfilter/buffersrc.h>
  36. #include <libavutil/channel_layout.h>
  37. #include <libavutil/opt.h>
  38. static const char *filter_descr = "aresample=8000,aformat=sample_fmts=s16:channel_layouts=mono";
  39. static const char *player = "ffplay -f s16le -ar 8000 -ac 1 -";
  40. static AVFormatContext *fmt_ctx;
  41. static AVCodecContext *dec_ctx;
  42. AVFilterContext *buffersink_ctx;
  43. AVFilterContext *buffersrc_ctx;
  44. AVFilterGraph *filter_graph;
  45. static int audio_stream_index = -1;
  46. static int open_input_file(const char *filename)
  47. {
  48. const AVCodec *dec;
  49. int ret;
  50. if ((ret = avformat_open_input(&fmt_ctx, filename, NULL, NULL)) < 0) {
  51. av_log(NULL, AV_LOG_ERROR, "Cannot open input file\n");
  52. return ret;
  53. }
  54. if ((ret = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
  55. av_log(NULL, AV_LOG_ERROR, "Cannot find stream information\n");
  56. return ret;
  57. }
  58. /* select the audio stream */
  59. ret = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_AUDIO, -1, -1, &dec, 0);
  60. if (ret < 0) {
  61. av_log(NULL, AV_LOG_ERROR, "Cannot find an audio stream in the input file\n");
  62. return ret;
  63. }
  64. audio_stream_index = ret;
  65. /* create decoding context */
  66. dec_ctx = avcodec_alloc_context3(dec);
  67. if (!dec_ctx)
  68. return AVERROR(ENOMEM);
  69. avcodec_parameters_to_context(dec_ctx, fmt_ctx->streams[audio_stream_index]->codecpar);
  70. /* init the audio decoder */
  71. if ((ret = avcodec_open2(dec_ctx, dec, NULL)) < 0) {
  72. av_log(NULL, AV_LOG_ERROR, "Cannot open audio decoder\n");
  73. return ret;
  74. }
  75. return 0;
  76. }
  77. static int init_filters(const char *filters_descr)
  78. {
  79. char args[512];
  80. int ret = 0;
  81. const AVFilter *abuffersrc = avfilter_get_by_name("abuffer");
  82. const AVFilter *abuffersink = avfilter_get_by_name("abuffersink");
  83. AVFilterInOut *outputs = avfilter_inout_alloc();
  84. AVFilterInOut *inputs = avfilter_inout_alloc();
  85. static const enum AVSampleFormat out_sample_fmts[] = { AV_SAMPLE_FMT_S16, -1 };
  86. static const int out_sample_rates[] = { 8000, -1 };
  87. const AVFilterLink *outlink;
  88. AVRational time_base = fmt_ctx->streams[audio_stream_index]->time_base;
  89. filter_graph = avfilter_graph_alloc();
  90. if (!outputs || !inputs || !filter_graph) {
  91. ret = AVERROR(ENOMEM);
  92. goto end;
  93. }
  94. /* buffer audio source: the decoded frames from the decoder will be inserted here. */
  95. if (dec_ctx->ch_layout.order == AV_CHANNEL_ORDER_UNSPEC)
  96. av_channel_layout_default(&dec_ctx->ch_layout, dec_ctx->ch_layout.nb_channels);
  97. ret = snprintf(args, sizeof(args),
  98. "time_base=%d/%d:sample_rate=%d:sample_fmt=%s:channel_layout=",
  99. time_base.num, time_base.den, dec_ctx->sample_rate,
  100. av_get_sample_fmt_name(dec_ctx->sample_fmt));
  101. av_channel_layout_describe(&dec_ctx->ch_layout, args + ret, sizeof(args) - ret);
  102. ret = avfilter_graph_create_filter(&buffersrc_ctx, abuffersrc, "in",
  103. args, NULL, filter_graph);
  104. if (ret < 0) {
  105. av_log(NULL, AV_LOG_ERROR, "Cannot create audio buffer source\n");
  106. goto end;
  107. }
  108. /* buffer audio sink: to terminate the filter chain. */
  109. ret = avfilter_graph_create_filter(&buffersink_ctx, abuffersink, "out",
  110. NULL, NULL, filter_graph);
  111. if (ret < 0) {
  112. av_log(NULL, AV_LOG_ERROR, "Cannot create audio buffer sink\n");
  113. goto end;
  114. }
  115. ret = av_opt_set_int_list(buffersink_ctx, "sample_fmts", out_sample_fmts, -1,
  116. AV_OPT_SEARCH_CHILDREN);
  117. if (ret < 0) {
  118. av_log(NULL, AV_LOG_ERROR, "Cannot set output sample format\n");
  119. goto end;
  120. }
  121. ret = av_opt_set(buffersink_ctx, "ch_layouts", "mono",
  122. AV_OPT_SEARCH_CHILDREN);
  123. if (ret < 0) {
  124. av_log(NULL, AV_LOG_ERROR, "Cannot set output channel layout\n");
  125. goto end;
  126. }
  127. ret = av_opt_set_int_list(buffersink_ctx, "sample_rates", out_sample_rates, -1,
  128. AV_OPT_SEARCH_CHILDREN);
  129. if (ret < 0) {
  130. av_log(NULL, AV_LOG_ERROR, "Cannot set output sample rate\n");
  131. goto end;
  132. }
  133. /*
  134. * Set the endpoints for the filter graph. The filter_graph will
  135. * be linked to the graph described by filters_descr.
  136. */
  137. /*
  138. * The buffer source output must be connected to the input pad of
  139. * the first filter described by filters_descr; since the first
  140. * filter input label is not specified, it is set to "in" by
  141. * default.
  142. */
  143. outputs->name = av_strdup("in");
  144. outputs->filter_ctx = buffersrc_ctx;
  145. outputs->pad_idx = 0;
  146. outputs->next = NULL;
  147. /*
  148. * The buffer sink input must be connected to the output pad of
  149. * the last filter described by filters_descr; since the last
  150. * filter output label is not specified, it is set to "out" by
  151. * default.
  152. */
  153. inputs->name = av_strdup("out");
  154. inputs->filter_ctx = buffersink_ctx;
  155. inputs->pad_idx = 0;
  156. inputs->next = NULL;
  157. if ((ret = avfilter_graph_parse_ptr(filter_graph, filters_descr,
  158. &inputs, &outputs, NULL)) < 0)
  159. goto end;
  160. if ((ret = avfilter_graph_config(filter_graph, NULL)) < 0)
  161. goto end;
  162. /* Print summary of the sink buffer
  163. * Note: args buffer is reused to store channel layout string */
  164. outlink = buffersink_ctx->inputs[0];
  165. av_channel_layout_describe(&outlink->ch_layout, args, sizeof(args));
  166. av_log(NULL, AV_LOG_INFO, "Output: srate:%dHz fmt:%s chlayout:%s\n",
  167. (int)outlink->sample_rate,
  168. (char *)av_x_if_null(av_get_sample_fmt_name(outlink->format), "?"),
  169. args);
  170. end:
  171. avfilter_inout_free(&inputs);
  172. avfilter_inout_free(&outputs);
  173. return ret;
  174. }
  175. static void print_frame(const AVFrame *frame)
  176. {
  177. const int n = frame->nb_samples * frame->ch_layout.nb_channels;
  178. const uint16_t *p = (uint16_t*)frame->data[0];
  179. const uint16_t *p_end = p + n;
  180. while (p < p_end) {
  181. fputc(*p & 0xff, stdout);
  182. fputc(*p>>8 & 0xff, stdout);
  183. p++;
  184. }
  185. fflush(stdout);
  186. }
  187. int main(int argc, char **argv)
  188. {
  189. int ret;
  190. AVPacket *packet = av_packet_alloc();
  191. AVFrame *frame = av_frame_alloc();
  192. AVFrame *filt_frame = av_frame_alloc();
  193. if (!packet || !frame || !filt_frame) {
  194. fprintf(stderr, "Could not allocate frame or packet\n");
  195. exit(1);
  196. }
  197. if (argc != 2) {
  198. fprintf(stderr, "Usage: %s file | %s\n", argv[0], player);
  199. exit(1);
  200. }
  201. if ((ret = open_input_file(argv[1])) < 0)
  202. goto end;
  203. if ((ret = init_filters(filter_descr)) < 0)
  204. goto end;
  205. /* read all packets */
  206. while (1) {
  207. if ((ret = av_read_frame(fmt_ctx, packet)) < 0)
  208. break;
  209. if (packet->stream_index == audio_stream_index) {
  210. ret = avcodec_send_packet(dec_ctx, packet);
  211. if (ret < 0) {
  212. av_log(NULL, AV_LOG_ERROR, "Error while sending a packet to the decoder\n");
  213. break;
  214. }
  215. while (ret >= 0) {
  216. ret = avcodec_receive_frame(dec_ctx, frame);
  217. if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) {
  218. break;
  219. } else if (ret < 0) {
  220. av_log(NULL, AV_LOG_ERROR, "Error while receiving a frame from the decoder\n");
  221. goto end;
  222. }
  223. if (ret >= 0) {
  224. /* push the audio data from decoded frame into the filtergraph */
  225. if (av_buffersrc_add_frame_flags(buffersrc_ctx, frame, AV_BUFFERSRC_FLAG_KEEP_REF) < 0) {
  226. av_log(NULL, AV_LOG_ERROR, "Error while feeding the audio filtergraph\n");
  227. break;
  228. }
  229. /* pull filtered audio from the filtergraph */
  230. while (1) {
  231. ret = av_buffersink_get_frame(buffersink_ctx, filt_frame);
  232. if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
  233. break;
  234. if (ret < 0)
  235. goto end;
  236. print_frame(filt_frame);
  237. av_frame_unref(filt_frame);
  238. }
  239. av_frame_unref(frame);
  240. }
  241. }
  242. }
  243. av_packet_unref(packet);
  244. }
  245. end:
  246. avfilter_graph_free(&filter_graph);
  247. avcodec_free_context(&dec_ctx);
  248. avformat_close_input(&fmt_ctx);
  249. av_packet_free(&packet);
  250. av_frame_free(&frame);
  251. av_frame_free(&filt_frame);
  252. if (ret < 0 && ret != AVERROR_EOF) {
  253. fprintf(stderr, "Error occurred: %s\n", av_err2str(ret));
  254. exit(1);
  255. }
  256. exit(0);
  257. }