前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >使用FFmpeg新解码API解封装解码音视频(代码实例)

使用FFmpeg新解码API解封装解码音视频(代码实例)

作者头像
用户3765803
发布2019-03-05 09:40:11
1.2K0
发布2019-03-05 09:40:11
举报
文章被收录于专栏:悟空被FFmpeg玩悟空被FFmpeg玩

在ffmpeg的源代码中,有新旧版本的编解码接口调用示例,但是demux、mux然后decode、encode的联动起来的接口调用实例并没有,在使用旧版本的编解码接口在编译时会报接口弃用告警信息,所以最好尽快把原有的调用方式切换到新的编解码接口调用方式,告警信息如下:

点击(此处)折叠或打开

  1. liuqideMBP:xxx liuqi$ make doc/examples/demuxing_decoding
  2. CC doc/examples/demuxing_decoding.o
  3. src/doc/examples/demuxing_decoding.c:73:15: warning: 'avcodec_decode_video2' is deprecated [-Wdeprecated-declarations]
  4. ret = avcodec_decode_video2(video_dec_ctx, frame, got_frame, &pkt);
  5.               ^
  6. src/libavcodec/avcodec.h:4631:1: note: 'avcodec_decode_video2' has been explicitly marked deprecated here
  7. attribute_deprecated
  8. ^
  9. src/libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  10. # define attribute_deprecated __attribute__((deprecated))
  11.                                                 ^
  12. src/doc/examples/demuxing_decoding.c:111:15: warning: 'avcodec_decode_audio4' is deprecated [-Wdeprecated-declarations]
  13. ret = avcodec_decode_audio4(audio_dec_ctx, frame, got_frame, &pkt);
  14.               ^
  15. src/libavcodec/avcodec.h:4582:1: note: 'avcodec_decode_audio4' has been explicitly marked deprecated here
  16. attribute_deprecated
  17. ^
  18. src/libavutil/attributes.h:94:49: note: expanded from macro 'attribute_deprecated'
  19. # define attribute_deprecated __attribute__((deprecated))
  20.                                                 ^
  21. 2 warnings generated.
  22. LD doc/examples/demuxing_decoding_g
  23. ld: warning: directory not found for option '-Llibavresample'
  24. STRIP doc/examples/demuxing_decoding

为了修改方便,而网上又没有只管举例的相关完整的实例,所以在这里写一个例子,供大伙参考

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

下面看一下编译的方式,其实我是用的ffmpeg原生的编译方式编译的make doc/examples/demuxing_decoding,在这里贴一下make -n doc/examples/demuxing_decoding的输出

点击(此处)折叠或打开

  1. liuqideMBP:xxx liuqi$ make -n doc/examples/demuxing_decoding
  2. printf "CC\t%s\n" doc/examples/demuxing_decoding.o; ccache gcc -I. -Isrc/ -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -I/Users/liuqi/multimedia/ffmpeg/compat/dispatch_semaphore -DPIC -DZLIB_CONST -std=c11 -Werror=partial-availability -fomit-frame-pointer -fPIC -pthread -I/usr/local/include -I/usr/local/Cellar/fontconfig/2.12.6/include -I/usr/local/opt/freetype/include/freetype2 -I/usr/local/Cellar/fribidi/0.19.7_1/include/fribidi -I/usr/local/Cellar/glib/2.54.2/include/glib-2.0 -I/usr/local/Cellar/glib/2.54.2/lib/glib-2.0/include -I/usr/local/opt/gettext/include -I/usr/local/Cellar/pcre/8.41/include -I/usr/local/opt/freetype/include/freetype2 -I/usr/local/Cellar/libbluray/1.0.1/include -I/usr/local/include -I/usr/local/Cellar/fontconfig/2.12.6/include -I/usr/local/opt/freetype/include/freetype2 -I/usr/local/opt/freetype/include/freetype2 -I/usr/local/Cellar/speex/1.2rc1/include -I/usr/local/include -I/usr/local/Cellar/x265/2.5_1/include -g -Wdeclaration-after-statement -Wall -Wdisabled-optimization -Wpointer-arith -Wredundant-decls -Wwrite-strings -Wtype-limits -Wundef -Wmissing-prototypes -Wno-pointer-to-int-cast -Wstrict-prototypes -Wempty-body -Wno-parentheses -Wno-switch -Wno-format-zero-length -Wno-pointer-sign -Wno-unused-const-variable -O3 -fno-math-errno -fno-signed-zeros -mstack-alignment=16 -Qunused-arguments -Werror=implicit-function-declaration -Werror=missing-prototypes -Werror=return-type -D_THREAD_SAFE -I/usr/local/include/SDL2 -MMD -MF doc/examples/demuxing_decoding.d -MT doc/examples/demuxing_decoding.o -c -o doc/examples/demuxing_decoding.o src/doc/examples/demuxing_decoding.c
  3. printf "LD\t%s\n" doc/examples/demuxing_decoding_g; ccache gcc -Llibavcodec -Llibavdevice -Llibavfilter -Llibavformat -Llibavresample -Llibavutil -Llibpostproc -Llibswscale -Llibswresample -Wl,-dynamic,-search_paths_first -Qunused-arguments -o doc/examples/demuxing_decoding_g doc/examples/demuxing_decoding.o -lavdevice -lavfilter -lavformat -lavcodec -lpostproc -lswresample -lswscale -lavutil -framework Foundation -lm -framework AVFoundation -framework CoreVideo -framework CoreMedia -pthread -framework CoreGraphics -L/usr/local/lib -lSDL2 -framework OpenGL -framework OpenGL -pthread -lm -L/usr/local/lib -lass -framework CoreImage -framework AppKit -L/usr/local/Cellar/fontconfig/2.12.6/lib -L/usr/local/opt/freetype/lib -lfontconfig -lfreetype -L/usr/local/opt/freetype/lib -lfreetype -lm -lbz2 -L/usr/local/Cellar/libbluray/1.0.1/lib -lbluray -lz -Wl,-framework,CoreFoundation -Wl,-framework,Security -liconv -lm -llzma -lz -framework AudioToolbox -L/usr/local/lib -lfdk-aac -lmp3lame -L/usr/local/Cellar/speex/1.2rc1/lib -lspeex -L/usr/local/lib -lx264 -L/usr/local/Cellar/x265/2.5_1/lib -lx265 -pthread -framework VideoToolbox -framework CoreFoundation -framework CoreMedia -framework CoreVideo -framework CoreServices -lm -lm -lm -pthread -lm -framework VideoToolbox -framework CoreFoundation -framework CoreMedia -framework CoreVideo -framework CoreServices
  4. printf "STRIP\t%s\n" doc/examples/demuxing_decoding; strip -x -o doc/examples/demuxing_decoding doc/examples/demuxing_decoding_g
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017-11-29 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档