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.

398 lines
15KB

  1. /*
  2. * Copyright (c) 2012 Stefano Sabatini
  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. * Demuxing and decoding example.
  25. *
  26. * Show how to use the libavformat and libavcodec API to demux and
  27. * decode audio and video data.
  28. * @example demuxing_decoding.c
  29. */
  30. #include <libavutil/imgutils.h>
  31. #include <libavutil/samplefmt.h>
  32. #include <libavutil/timestamp.h>
  33. #include <libavformat/avformat.h>
  34. static AVFormatContext *fmt_ctx = NULL;
  35. static AVCodecContext *video_dec_ctx = NULL, *audio_dec_ctx;
  36. static int width, height;
  37. static enum AVPixelFormat pix_fmt;
  38. static AVStream *video_stream = NULL, *audio_stream = NULL;
  39. static const char *src_filename = NULL;
  40. static const char *video_dst_filename = NULL;
  41. static const char *audio_dst_filename = NULL;
  42. static FILE *video_dst_file = NULL;
  43. static FILE *audio_dst_file = NULL;
  44. static uint8_t *video_dst_data[4] = {NULL};
  45. static int video_dst_linesize[4];
  46. static int video_dst_bufsize;
  47. static int video_stream_idx = -1, audio_stream_idx = -1;
  48. static AVFrame *frame = NULL;
  49. static AVPacket pkt;
  50. static int video_frame_count = 0;
  51. static int audio_frame_count = 0;
  52. /* The different ways of decoding and managing data memory. You are not
  53. * supposed to support all the modes in your application but pick the one most
  54. * appropriate to your needs. Look for the use of api_mode in this example to
  55. * see what are the differences of API usage between them */
  56. enum {
  57. API_MODE_NEW_API_REF_COUNT = 1, /* new method, using the frame reference counting */
  58. API_MODE_NEW_API_NO_REF_COUNT = 2, /* new method, without reference counting */
  59. };
  60. static int api_mode = API_MODE_NEW_API_NO_REF_COUNT;
  61. static int decode_packet(int *got_frame, int cached)
  62. {
  63. int ret = 0;
  64. int decoded = pkt.size;
  65. *got_frame = 0;
  66. if (pkt.stream_index == video_stream_idx) {
  67. /* decode video frame */
  68. ret = avcodec_decode_video2(video_dec_ctx, frame, got_frame, &pkt);
  69. if (ret < 0) {
  70. fprintf(stderr, "Error decoding video frame (%s)\n", av_err2str(ret));
  71. return ret;
  72. }
  73. if (*got_frame) {
  74. if (frame->width != width || frame->height != height ||
  75. frame->format != pix_fmt) {
  76. /* To handle this change, one could call av_image_alloc again and
  77. * decode the following frames into another rawvideo file. */
  78. fprintf(stderr, "Error: Width, height and pixel format have to be "
  79. "constant in a rawvideo file, but the width, height or "
  80. "pixel format of the input video changed:\n"
  81. "old: width = %d, height = %d, format = %s\n"
  82. "new: width = %d, height = %d, format = %s\n",
  83. width, height, av_get_pix_fmt_name(pix_fmt),
  84. frame->width, frame->height,
  85. av_get_pix_fmt_name(frame->format));
  86. return -1;
  87. }
  88. printf("video_frame%s n:%d coded_n:%d pts:%s\n",
  89. cached ? "(cached)" : "",
  90. video_frame_count++, frame->coded_picture_number,
  91. av_ts2timestr(frame->pts, &video_dec_ctx->time_base));
  92. /* copy decoded frame to destination buffer:
  93. * this is required since rawvideo expects non aligned data */
  94. av_image_copy(video_dst_data, video_dst_linesize,
  95. (const uint8_t **)(frame->data), frame->linesize,
  96. pix_fmt, width, height);
  97. /* write to rawvideo file */
  98. fwrite(video_dst_data[0], 1, video_dst_bufsize, video_dst_file);
  99. }
  100. } else if (pkt.stream_index == audio_stream_idx) {
  101. /* decode audio frame */
  102. ret = avcodec_decode_audio4(audio_dec_ctx, frame, got_frame, &pkt);
  103. if (ret < 0) {
  104. fprintf(stderr, "Error decoding audio frame (%s)\n", av_err2str(ret));
  105. return ret;
  106. }
  107. /* Some audio decoders decode only part of the packet, and have to be
  108. * called again with the remainder of the packet data.
  109. * Sample: fate-suite/lossless-audio/luckynight-partial.shn
  110. * Also, some decoders might over-read the packet. */
  111. decoded = FFMIN(ret, pkt.size);
  112. if (*got_frame) {
  113. size_t unpadded_linesize = frame->nb_samples * av_get_bytes_per_sample(frame->format);
  114. printf("audio_frame%s n:%d nb_samples:%d pts:%s\n",
  115. cached ? "(cached)" : "",
  116. audio_frame_count++, frame->nb_samples,
  117. av_ts2timestr(frame->pts, &audio_dec_ctx->time_base));
  118. /* Write the raw audio data samples of the first plane. This works
  119. * fine for packed formats (e.g. AV_SAMPLE_FMT_S16). However,
  120. * most audio decoders output planar audio, which uses a separate
  121. * plane of audio samples for each channel (e.g. AV_SAMPLE_FMT_S16P).
  122. * In other words, this code will write only the first audio channel
  123. * in these cases.
  124. * You should use libswresample or libavfilter to convert the frame
  125. * to packed data. */
  126. fwrite(frame->extended_data[0], 1, unpadded_linesize, audio_dst_file);
  127. }
  128. }
  129. /* If we use the new API with reference counting, we own the data and need
  130. * to de-reference it when we don't use it anymore */
  131. if (*got_frame && api_mode == API_MODE_NEW_API_REF_COUNT)
  132. av_frame_unref(frame);
  133. return decoded;
  134. }
  135. static int open_codec_context(int *stream_idx,
  136. AVFormatContext *fmt_ctx, enum AVMediaType type)
  137. {
  138. int ret, stream_index;
  139. AVStream *st;
  140. AVCodecContext *dec_ctx = NULL;
  141. AVCodec *dec = NULL;
  142. AVDictionary *opts = NULL;
  143. ret = av_find_best_stream(fmt_ctx, type, -1, -1, NULL, 0);
  144. if (ret < 0) {
  145. fprintf(stderr, "Could not find %s stream in input file '%s'\n",
  146. av_get_media_type_string(type), src_filename);
  147. return ret;
  148. } else {
  149. stream_index = ret;
  150. st = fmt_ctx->streams[stream_index];
  151. /* find decoder for the stream */
  152. dec_ctx = st->codec;
  153. dec = avcodec_find_decoder(dec_ctx->codec_id);
  154. if (!dec) {
  155. fprintf(stderr, "Failed to find %s codec\n",
  156. av_get_media_type_string(type));
  157. return AVERROR(EINVAL);
  158. }
  159. /* Init the decoders, with or without reference counting */
  160. if (api_mode == API_MODE_NEW_API_REF_COUNT)
  161. av_dict_set(&opts, "refcounted_frames", "1", 0);
  162. if ((ret = avcodec_open2(dec_ctx, dec, &opts)) < 0) {
  163. fprintf(stderr, "Failed to open %s codec\n",
  164. av_get_media_type_string(type));
  165. return ret;
  166. }
  167. *stream_idx = stream_index;
  168. }
  169. return 0;
  170. }
  171. static int get_format_from_sample_fmt(const char **fmt,
  172. enum AVSampleFormat sample_fmt)
  173. {
  174. int i;
  175. struct sample_fmt_entry {
  176. enum AVSampleFormat sample_fmt; const char *fmt_be, *fmt_le;
  177. } sample_fmt_entries[] = {
  178. { AV_SAMPLE_FMT_U8, "u8", "u8" },
  179. { AV_SAMPLE_FMT_S16, "s16be", "s16le" },
  180. { AV_SAMPLE_FMT_S32, "s32be", "s32le" },
  181. { AV_SAMPLE_FMT_FLT, "f32be", "f32le" },
  182. { AV_SAMPLE_FMT_DBL, "f64be", "f64le" },
  183. };
  184. *fmt = NULL;
  185. for (i = 0; i < FF_ARRAY_ELEMS(sample_fmt_entries); i++) {
  186. struct sample_fmt_entry *entry = &sample_fmt_entries[i];
  187. if (sample_fmt == entry->sample_fmt) {
  188. *fmt = AV_NE(entry->fmt_be, entry->fmt_le);
  189. return 0;
  190. }
  191. }
  192. fprintf(stderr,
  193. "sample format %s is not supported as output format\n",
  194. av_get_sample_fmt_name(sample_fmt));
  195. return -1;
  196. }
  197. int main (int argc, char **argv)
  198. {
  199. int ret = 0, got_frame;
  200. if (argc != 4 && argc != 5) {
  201. fprintf(stderr, "usage: %s [-refcount=<old|new_norefcount|new_refcount>] "
  202. "input_file video_output_file audio_output_file\n"
  203. "API example program to show how to read frames from an input file.\n"
  204. "This program reads frames from a file, decodes them, and writes decoded\n"
  205. "video frames to a rawvideo file named video_output_file, and decoded\n"
  206. "audio frames to a rawaudio file named audio_output_file.\n\n"
  207. "If the -refcount option is specified, the program use the\n"
  208. "reference counting frame system which allows keeping a copy of\n"
  209. "the data for longer than one decode call. If unset, it's using\n"
  210. "the classic old method.\n"
  211. "\n", argv[0]);
  212. exit(1);
  213. }
  214. if (argc == 5) {
  215. const char *mode = argv[1] + strlen("-refcount=");
  216. if (!strcmp(mode, "new_norefcount")) api_mode = API_MODE_NEW_API_NO_REF_COUNT;
  217. else if (!strcmp(mode, "new_refcount")) api_mode = API_MODE_NEW_API_REF_COUNT;
  218. else {
  219. fprintf(stderr, "unknow mode '%s'\n", mode);
  220. exit(1);
  221. }
  222. argv++;
  223. }
  224. src_filename = argv[1];
  225. video_dst_filename = argv[2];
  226. audio_dst_filename = argv[3];
  227. /* register all formats and codecs */
  228. av_register_all();
  229. /* open input file, and allocate format context */
  230. if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) {
  231. fprintf(stderr, "Could not open source file %s\n", src_filename);
  232. exit(1);
  233. }
  234. /* retrieve stream information */
  235. if (avformat_find_stream_info(fmt_ctx, NULL) < 0) {
  236. fprintf(stderr, "Could not find stream information\n");
  237. exit(1);
  238. }
  239. if (open_codec_context(&video_stream_idx, fmt_ctx, AVMEDIA_TYPE_VIDEO) >= 0) {
  240. video_stream = fmt_ctx->streams[video_stream_idx];
  241. video_dec_ctx = video_stream->codec;
  242. video_dst_file = fopen(video_dst_filename, "wb");
  243. if (!video_dst_file) {
  244. fprintf(stderr, "Could not open destination file %s\n", video_dst_filename);
  245. ret = 1;
  246. goto end;
  247. }
  248. /* allocate image where the decoded image will be put */
  249. width = video_dec_ctx->width;
  250. height = video_dec_ctx->height;
  251. pix_fmt = video_dec_ctx->pix_fmt;
  252. ret = av_image_alloc(video_dst_data, video_dst_linesize,
  253. width, height, pix_fmt, 1);
  254. if (ret < 0) {
  255. fprintf(stderr, "Could not allocate raw video buffer\n");
  256. goto end;
  257. }
  258. video_dst_bufsize = ret;
  259. }
  260. if (open_codec_context(&audio_stream_idx, fmt_ctx, AVMEDIA_TYPE_AUDIO) >= 0) {
  261. audio_stream = fmt_ctx->streams[audio_stream_idx];
  262. audio_dec_ctx = audio_stream->codec;
  263. audio_dst_file = fopen(audio_dst_filename, "wb");
  264. if (!audio_dst_file) {
  265. fprintf(stderr, "Could not open destination file %s\n", audio_dst_filename);
  266. ret = 1;
  267. goto end;
  268. }
  269. }
  270. /* dump input information to stderr */
  271. av_dump_format(fmt_ctx, 0, src_filename, 0);
  272. if (!audio_stream && !video_stream) {
  273. fprintf(stderr, "Could not find audio or video stream in the input, aborting\n");
  274. ret = 1;
  275. goto end;
  276. }
  277. frame = av_frame_alloc();
  278. if (!frame) {
  279. fprintf(stderr, "Could not allocate frame\n");
  280. ret = AVERROR(ENOMEM);
  281. goto end;
  282. }
  283. /* initialize packet, set data to NULL, let the demuxer fill it */
  284. av_init_packet(&pkt);
  285. pkt.data = NULL;
  286. pkt.size = 0;
  287. if (video_stream)
  288. printf("Demuxing video from file '%s' into '%s'\n", src_filename, video_dst_filename);
  289. if (audio_stream)
  290. printf("Demuxing audio from file '%s' into '%s'\n", src_filename, audio_dst_filename);
  291. /* read frames from the file */
  292. while (av_read_frame(fmt_ctx, &pkt) >= 0) {
  293. AVPacket orig_pkt = pkt;
  294. do {
  295. ret = decode_packet(&got_frame, 0);
  296. if (ret < 0)
  297. break;
  298. pkt.data += ret;
  299. pkt.size -= ret;
  300. } while (pkt.size > 0);
  301. av_free_packet(&orig_pkt);
  302. }
  303. /* flush cached frames */
  304. pkt.data = NULL;
  305. pkt.size = 0;
  306. do {
  307. decode_packet(&got_frame, 1);
  308. } while (got_frame);
  309. printf("Demuxing succeeded.\n");
  310. if (video_stream) {
  311. printf("Play the output video file with the command:\n"
  312. "ffplay -f rawvideo -pix_fmt %s -video_size %dx%d %s\n",
  313. av_get_pix_fmt_name(pix_fmt), width, height,
  314. video_dst_filename);
  315. }
  316. if (audio_stream) {
  317. enum AVSampleFormat sfmt = audio_dec_ctx->sample_fmt;
  318. int n_channels = audio_dec_ctx->channels;
  319. const char *fmt;
  320. if (av_sample_fmt_is_planar(sfmt)) {
  321. const char *packed = av_get_sample_fmt_name(sfmt);
  322. printf("Warning: the sample format the decoder produced is planar "
  323. "(%s). This example will output the first channel only.\n",
  324. packed ? packed : "?");
  325. sfmt = av_get_packed_sample_fmt(sfmt);
  326. n_channels = 1;
  327. }
  328. if ((ret = get_format_from_sample_fmt(&fmt, sfmt)) < 0)
  329. goto end;
  330. printf("Play the output audio file with the command:\n"
  331. "ffplay -f %s -ac %d -ar %d %s\n",
  332. fmt, n_channels, audio_dec_ctx->sample_rate,
  333. audio_dst_filename);
  334. }
  335. end:
  336. avcodec_close(video_dec_ctx);
  337. avcodec_close(audio_dec_ctx);
  338. avformat_close_input(&fmt_ctx);
  339. if (video_dst_file)
  340. fclose(video_dst_file);
  341. if (audio_dst_file)
  342. fclose(audio_dst_file);
  343. av_frame_free(&frame);
  344. av_free(video_dst_data[0]);
  345. return ret < 0;
  346. }