output_example.c
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:16k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * Libavformat API example: Output a media file in any supported
  3.  * libavformat format. The default codecs are used.
  4.  *
  5.  * Copyright (c) 2003 Fabrice Bellard
  6.  *
  7.  * Permission is hereby granted, free of charge, to any person obtaining a copy
  8.  * of this software and associated documentation files (the "Software"), to deal
  9.  * in the Software without restriction, including without limitation the rights
  10.  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11.  * copies of the Software, and to permit persons to whom the Software is
  12.  * furnished to do so, subject to the following conditions:
  13.  *
  14.  * The above copyright notice and this permission notice shall be included in
  15.  * all copies or substantial portions of the Software.
  16.  *
  17.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  20.  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21.  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22.  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  23.  * THE SOFTWARE.
  24.  */
  25. #include <stdlib.h>
  26. #include <stdio.h>
  27. #include <string.h>
  28. #include <math.h>
  29. #ifndef M_PI
  30. #define M_PI 3.14159265358979323846
  31. #endif
  32. #include "libavformat/avformat.h"
  33. #include "libswscale/swscale.h"
  34. #undef exit
  35. /* 5 seconds stream duration */
  36. #define STREAM_DURATION   5.0
  37. #define STREAM_FRAME_RATE 25 /* 25 images/s */
  38. #define STREAM_NB_FRAMES  ((int)(STREAM_DURATION * STREAM_FRAME_RATE))
  39. #define STREAM_PIX_FMT PIX_FMT_YUV420P /* default pix_fmt */
  40. static int sws_flags = SWS_BICUBIC;
  41. /**************************************************************/
  42. /* audio output */
  43. float t, tincr, tincr2;
  44. int16_t *samples;
  45. uint8_t *audio_outbuf;
  46. int audio_outbuf_size;
  47. int audio_input_frame_size;
  48. /*
  49.  * add an audio output stream
  50.  */
  51. static AVStream *add_audio_stream(AVFormatContext *oc, int codec_id)
  52. {
  53.     AVCodecContext *c;
  54.     AVStream *st;
  55.     st = av_new_stream(oc, 1);
  56.     if (!st) {
  57.         fprintf(stderr, "Could not alloc streamn");
  58.         exit(1);
  59.     }
  60.     c = st->codec;
  61.     c->codec_id = codec_id;
  62.     c->codec_type = CODEC_TYPE_AUDIO;
  63.     /* put sample parameters */
  64.     c->bit_rate = 64000;
  65.     c->sample_rate = 44100;
  66.     c->channels = 2;
  67.     return st;
  68. }
  69. static void open_audio(AVFormatContext *oc, AVStream *st)
  70. {
  71.     AVCodecContext *c;
  72.     AVCodec *codec;
  73.     c = st->codec;
  74.     /* find the audio encoder */
  75.     codec = avcodec_find_encoder(c->codec_id);
  76.     if (!codec) {
  77.         fprintf(stderr, "codec not foundn");
  78.         exit(1);
  79.     }
  80.     /* open it */
  81.     if (avcodec_open(c, codec) < 0) {
  82.         fprintf(stderr, "could not open codecn");
  83.         exit(1);
  84.     }
  85.     /* init signal generator */
  86.     t = 0;
  87.     tincr = 2 * M_PI * 110.0 / c->sample_rate;
  88.     /* increment frequency by 110 Hz per second */
  89.     tincr2 = 2 * M_PI * 110.0 / c->sample_rate / c->sample_rate;
  90.     audio_outbuf_size = 10000;
  91.     audio_outbuf = av_malloc(audio_outbuf_size);
  92.     /* ugly hack for PCM codecs (will be removed ASAP with new PCM
  93.        support to compute the input frame size in samples */
  94.     if (c->frame_size <= 1) {
  95.         audio_input_frame_size = audio_outbuf_size / c->channels;
  96.         switch(st->codec->codec_id) {
  97.         case CODEC_ID_PCM_S16LE:
  98.         case CODEC_ID_PCM_S16BE:
  99.         case CODEC_ID_PCM_U16LE:
  100.         case CODEC_ID_PCM_U16BE:
  101.             audio_input_frame_size >>= 1;
  102.             break;
  103.         default:
  104.             break;
  105.         }
  106.     } else {
  107.         audio_input_frame_size = c->frame_size;
  108.     }
  109.     samples = av_malloc(audio_input_frame_size * 2 * c->channels);
  110. }
  111. /* prepare a 16 bit dummy audio frame of 'frame_size' samples and
  112.    'nb_channels' channels */
  113. static void get_audio_frame(int16_t *samples, int frame_size, int nb_channels)
  114. {
  115.     int j, i, v;
  116.     int16_t *q;
  117.     q = samples;
  118.     for(j=0;j<frame_size;j++) {
  119.         v = (int)(sin(t) * 10000);
  120.         for(i = 0; i < nb_channels; i++)
  121.             *q++ = v;
  122.         t += tincr;
  123.         tincr += tincr2;
  124.     }
  125. }
  126. static void write_audio_frame(AVFormatContext *oc, AVStream *st)
  127. {
  128.     AVCodecContext *c;
  129.     AVPacket pkt;
  130.     av_init_packet(&pkt);
  131.     c = st->codec;
  132.     get_audio_frame(samples, audio_input_frame_size, c->channels);
  133.     pkt.size= avcodec_encode_audio(c, audio_outbuf, audio_outbuf_size, samples);
  134.     pkt.pts= av_rescale_q(c->coded_frame->pts, c->time_base, st->time_base);
  135.     pkt.flags |= PKT_FLAG_KEY;
  136.     pkt.stream_index= st->index;
  137.     pkt.data= audio_outbuf;
  138.     /* write the compressed frame in the media file */
  139.     if (av_write_frame(oc, &pkt) != 0) {
  140.         fprintf(stderr, "Error while writing audio framen");
  141.         exit(1);
  142.     }
  143. }
  144. static void close_audio(AVFormatContext *oc, AVStream *st)
  145. {
  146.     avcodec_close(st->codec);
  147.     av_free(samples);
  148.     av_free(audio_outbuf);
  149. }
  150. /**************************************************************/
  151. /* video output */
  152. AVFrame *picture, *tmp_picture;
  153. uint8_t *video_outbuf;
  154. int frame_count, video_outbuf_size;
  155. /* add a video output stream */
  156. static AVStream *add_video_stream(AVFormatContext *oc, int codec_id)
  157. {
  158.     AVCodecContext *c;
  159.     AVStream *st;
  160.     st = av_new_stream(oc, 0);
  161.     if (!st) {
  162.         fprintf(stderr, "Could not alloc streamn");
  163.         exit(1);
  164.     }
  165.     c = st->codec;
  166.     c->codec_id = codec_id;
  167.     c->codec_type = CODEC_TYPE_VIDEO;
  168.     /* put sample parameters */
  169.     c->bit_rate = 400000;
  170.     /* resolution must be a multiple of two */
  171.     c->width = 352;
  172.     c->height = 288;
  173.     /* time base: this is the fundamental unit of time (in seconds) in terms
  174.        of which frame timestamps are represented. for fixed-fps content,
  175.        timebase should be 1/framerate and timestamp increments should be
  176.        identically 1. */
  177.     c->time_base.den = STREAM_FRAME_RATE;
  178.     c->time_base.num = 1;
  179.     c->gop_size = 12; /* emit one intra frame every twelve frames at most */
  180.     c->pix_fmt = STREAM_PIX_FMT;
  181.     if (c->codec_id == CODEC_ID_MPEG2VIDEO) {
  182.         /* just for testing, we also add B frames */
  183.         c->max_b_frames = 2;
  184.     }
  185.     if (c->codec_id == CODEC_ID_MPEG1VIDEO){
  186.         /* Needed to avoid using macroblocks in which some coeffs overflow.
  187.            This does not happen with normal video, it just happens here as
  188.            the motion of the chroma plane does not match the luma plane. */
  189.         c->mb_decision=2;
  190.     }
  191.     // some formats want stream headers to be separate
  192.     if(!strcmp(oc->oformat->name, "mp4") || !strcmp(oc->oformat->name, "mov") || !strcmp(oc->oformat->name, "3gp"))
  193.         c->flags |= CODEC_FLAG_GLOBAL_HEADER;
  194.     return st;
  195. }
  196. static AVFrame *alloc_picture(int pix_fmt, int width, int height)
  197. {
  198.     AVFrame *picture;
  199.     uint8_t *picture_buf;
  200.     int size;
  201.     picture = avcodec_alloc_frame();
  202.     if (!picture)
  203.         return NULL;
  204.     size = avpicture_get_size(pix_fmt, width, height);
  205.     picture_buf = av_malloc(size);
  206.     if (!picture_buf) {
  207.         av_free(picture);
  208.         return NULL;
  209.     }
  210.     avpicture_fill((AVPicture *)picture, picture_buf,
  211.                    pix_fmt, width, height);
  212.     return picture;
  213. }
  214. static void open_video(AVFormatContext *oc, AVStream *st)
  215. {
  216.     AVCodec *codec;
  217.     AVCodecContext *c;
  218.     c = st->codec;
  219.     /* find the video encoder */
  220.     codec = avcodec_find_encoder(c->codec_id);
  221.     if (!codec) {
  222.         fprintf(stderr, "codec not foundn");
  223.         exit(1);
  224.     }
  225.     /* open the codec */
  226.     if (avcodec_open(c, codec) < 0) {
  227.         fprintf(stderr, "could not open codecn");
  228.         exit(1);
  229.     }
  230.     video_outbuf = NULL;
  231.     if (!(oc->oformat->flags & AVFMT_RAWPICTURE)) {
  232.         /* allocate output buffer */
  233.         /* XXX: API change will be done */
  234.         /* buffers passed into lav* can be allocated any way you prefer,
  235.            as long as they're aligned enough for the architecture, and
  236.            they're freed appropriately (such as using av_free for buffers
  237.            allocated with av_malloc) */
  238.         video_outbuf_size = 200000;
  239.         video_outbuf = av_malloc(video_outbuf_size);
  240.     }
  241.     /* allocate the encoded raw picture */
  242.     picture = alloc_picture(c->pix_fmt, c->width, c->height);
  243.     if (!picture) {
  244.         fprintf(stderr, "Could not allocate picturen");
  245.         exit(1);
  246.     }
  247.     /* if the output format is not YUV420P, then a temporary YUV420P
  248.        picture is needed too. It is then converted to the required
  249.        output format */
  250.     tmp_picture = NULL;
  251.     if (c->pix_fmt != PIX_FMT_YUV420P) {
  252.         tmp_picture = alloc_picture(PIX_FMT_YUV420P, c->width, c->height);
  253.         if (!tmp_picture) {
  254.             fprintf(stderr, "Could not allocate temporary picturen");
  255.             exit(1);
  256.         }
  257.     }
  258. }
  259. /* prepare a dummy image */
  260. static void fill_yuv_image(AVFrame *pict, int frame_index, int width, int height)
  261. {
  262.     int x, y, i;
  263.     i = frame_index;
  264.     /* Y */
  265.     for(y=0;y<height;y++) {
  266.         for(x=0;x<width;x++) {
  267.             pict->data[0][y * pict->linesize[0] + x] = x + y + i * 3;
  268.         }
  269.     }
  270.     /* Cb and Cr */
  271.     for(y=0;y<height/2;y++) {
  272.         for(x=0;x<width/2;x++) {
  273.             pict->data[1][y * pict->linesize[1] + x] = 128 + y + i * 2;
  274.             pict->data[2][y * pict->linesize[2] + x] = 64 + x + i * 5;
  275.         }
  276.     }
  277. }
  278. static void write_video_frame(AVFormatContext *oc, AVStream *st)
  279. {
  280.     int out_size, ret;
  281.     AVCodecContext *c;
  282.     static struct SwsContext *img_convert_ctx;
  283.     c = st->codec;
  284.     if (frame_count >= STREAM_NB_FRAMES) {
  285.         /* no more frame to compress. The codec has a latency of a few
  286.            frames if using B frames, so we get the last frames by
  287.            passing the same picture again */
  288.     } else {
  289.         if (c->pix_fmt != PIX_FMT_YUV420P) {
  290.             /* as we only generate a YUV420P picture, we must convert it
  291.                to the codec pixel format if needed */
  292.             if (img_convert_ctx == NULL) {
  293.                 img_convert_ctx = sws_getContext(c->width, c->height,
  294.                                                  PIX_FMT_YUV420P,
  295.                                                  c->width, c->height,
  296.                                                  c->pix_fmt,
  297.                                                  sws_flags, NULL, NULL, NULL);
  298.                 if (img_convert_ctx == NULL) {
  299.                     fprintf(stderr, "Cannot initialize the conversion contextn");
  300.                     exit(1);
  301.                 }
  302.             }
  303.             fill_yuv_image(tmp_picture, frame_count, c->width, c->height);
  304.             sws_scale(img_convert_ctx, tmp_picture->data, tmp_picture->linesize,
  305.                       0, c->height, picture->data, picture->linesize);
  306.         } else {
  307.             fill_yuv_image(picture, frame_count, c->width, c->height);
  308.         }
  309.     }
  310.     if (oc->oformat->flags & AVFMT_RAWPICTURE) {
  311.         /* raw video case. The API will change slightly in the near
  312.            futur for that */
  313.         AVPacket pkt;
  314.         av_init_packet(&pkt);
  315.         pkt.flags |= PKT_FLAG_KEY;
  316.         pkt.stream_index= st->index;
  317.         pkt.data= (uint8_t *)picture;
  318.         pkt.size= sizeof(AVPicture);
  319.         ret = av_write_frame(oc, &pkt);
  320.     } else {
  321.         /* encode the image */
  322.         out_size = avcodec_encode_video(c, video_outbuf, video_outbuf_size, picture);
  323.         /* if zero size, it means the image was buffered */
  324.         if (out_size > 0) {
  325.             AVPacket pkt;
  326.             av_init_packet(&pkt);
  327.             pkt.pts= av_rescale_q(c->coded_frame->pts, c->time_base, st->time_base);
  328.             if(c->coded_frame->key_frame)
  329.                 pkt.flags |= PKT_FLAG_KEY;
  330.             pkt.stream_index= st->index;
  331.             pkt.data= video_outbuf;
  332.             pkt.size= out_size;
  333.             /* write the compressed frame in the media file */
  334.             ret = av_write_frame(oc, &pkt);
  335.         } else {
  336.             ret = 0;
  337.         }
  338.     }
  339.     if (ret != 0) {
  340.         fprintf(stderr, "Error while writing video framen");
  341.         exit(1);
  342.     }
  343.     frame_count++;
  344. }
  345. static void close_video(AVFormatContext *oc, AVStream *st)
  346. {
  347.     avcodec_close(st->codec);
  348.     av_free(picture->data[0]);
  349.     av_free(picture);
  350.     if (tmp_picture) {
  351.         av_free(tmp_picture->data[0]);
  352.         av_free(tmp_picture);
  353.     }
  354.     av_free(video_outbuf);
  355. }
  356. /**************************************************************/
  357. /* media file output */
  358. int main(int argc, char **argv)
  359. {
  360.     const char *filename;
  361.     AVOutputFormat *fmt;
  362.     AVFormatContext *oc;
  363.     AVStream *audio_st, *video_st;
  364.     double audio_pts, video_pts;
  365.     int i;
  366.     /* initialize libavcodec, and register all codecs and formats */
  367.     av_register_all();
  368.     if (argc != 2) {
  369.         printf("usage: %s output_filen"
  370.                "API example program to output a media file with libavformat.n"
  371.                "The output format is automatically guessed according to the file extension.n"
  372.                "Raw images can also be output by using '%%d' in the filenamen"
  373.                "n", argv[0]);
  374.         exit(1);
  375.     }
  376.     filename = argv[1];
  377.     /* auto detect the output format from the name. default is
  378.        mpeg. */
  379.     fmt = guess_format(NULL, filename, NULL);
  380.     if (!fmt) {
  381.         printf("Could not deduce output format from file extension: using MPEG.n");
  382.         fmt = guess_format("mpeg", NULL, NULL);
  383.     }
  384.     if (!fmt) {
  385.         fprintf(stderr, "Could not find suitable output formatn");
  386.         exit(1);
  387.     }
  388.     /* allocate the output media context */
  389.     oc = av_alloc_format_context();
  390.     if (!oc) {
  391.         fprintf(stderr, "Memory errorn");
  392.         exit(1);
  393.     }
  394.     oc->oformat = fmt;
  395.     snprintf(oc->filename, sizeof(oc->filename), "%s", filename);
  396.     /* add the audio and video streams using the default format codecs
  397.        and initialize the codecs */
  398.     video_st = NULL;
  399.     audio_st = NULL;
  400.     if (fmt->video_codec != CODEC_ID_NONE) {
  401.         video_st = add_video_stream(oc, fmt->video_codec);
  402.     }
  403.     if (fmt->audio_codec != CODEC_ID_NONE) {
  404.         audio_st = add_audio_stream(oc, fmt->audio_codec);
  405.     }
  406.     /* set the output parameters (must be done even if no
  407.        parameters). */
  408.     if (av_set_parameters(oc, NULL) < 0) {
  409.         fprintf(stderr, "Invalid output format parametersn");
  410.         exit(1);
  411.     }
  412.     dump_format(oc, 0, filename, 1);
  413.     /* now that all the parameters are set, we can open the audio and
  414.        video codecs and allocate the necessary encode buffers */
  415.     if (video_st)
  416.         open_video(oc, video_st);
  417.     if (audio_st)
  418.         open_audio(oc, audio_st);
  419.     /* open the output file, if needed */
  420.     if (!(fmt->flags & AVFMT_NOFILE)) {
  421.         if (url_fopen(&oc->pb, filename, URL_WRONLY) < 0) {
  422.             fprintf(stderr, "Could not open '%s'n", filename);
  423.             exit(1);
  424.         }
  425.     }
  426.     /* write the stream header, if any */
  427.     av_write_header(oc);
  428.     for(;;) {
  429.         /* compute current audio and video time */
  430.         if (audio_st)
  431.             audio_pts = (double)audio_st->pts.val * audio_st->time_base.num / audio_st->time_base.den;
  432.         else
  433.             audio_pts = 0.0;
  434.         if (video_st)
  435.             video_pts = (double)video_st->pts.val * video_st->time_base.num / video_st->time_base.den;
  436.         else
  437.             video_pts = 0.0;
  438.         if ((!audio_st || audio_pts >= STREAM_DURATION) &&
  439.             (!video_st || video_pts >= STREAM_DURATION))
  440.             break;
  441.         /* write interleaved audio and video frames */
  442.         if (!video_st || (video_st && audio_st && audio_pts < video_pts)) {
  443.             write_audio_frame(oc, audio_st);
  444.         } else {
  445.             write_video_frame(oc, video_st);
  446.         }
  447.     }
  448.     /* close each codec */
  449.     if (video_st)
  450.         close_video(oc, video_st);
  451.     if (audio_st)
  452.         close_audio(oc, audio_st);
  453.     /* write the trailer, if any */
  454.     av_write_trailer(oc);
  455.     /* free the streams */
  456.     for(i = 0; i < oc->nb_streams; i++) {
  457.         av_freep(&oc->streams[i]->codec);
  458.         av_freep(&oc->streams[i]);
  459.     }
  460.     if (!(fmt->flags & AVFMT_NOFILE)) {
  461.         /* close the output file */
  462.         url_fclose(oc->pb);
  463.     }
  464.     /* free the stream */
  465.     av_free(oc);
  466.     return 0;
  467. }