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.

200 lines
5.4KB

  1. /*
  2. * Copyright (c) 2001 Fabrice Bellard
  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. * video encoding with libavcodec API example
  25. *
  26. * @example encode_video.c
  27. */
  28. #include <stdio.h>
  29. #include <stdlib.h>
  30. #include <string.h>
  31. #include <libavcodec/avcodec.h>
  32. #include <libavutil/opt.h>
  33. #include <libavutil/imgutils.h>
  34. static void encode(AVCodecContext *enc_ctx, AVFrame *frame, AVPacket *pkt,
  35. FILE *outfile)
  36. {
  37. int ret;
  38. /* send the frame to the encoder */
  39. if (frame)
  40. printf("Send frame %3"PRId64"\n", frame->pts);
  41. ret = avcodec_send_frame(enc_ctx, frame);
  42. if (ret < 0) {
  43. fprintf(stderr, "Error sending a frame for encoding\n");
  44. exit(1);
  45. }
  46. while (ret >= 0) {
  47. ret = avcodec_receive_packet(enc_ctx, pkt);
  48. if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
  49. return;
  50. else if (ret < 0) {
  51. fprintf(stderr, "Error during encoding\n");
  52. exit(1);
  53. }
  54. printf("Write packet %3"PRId64" (size=%5d)\n", pkt->pts, pkt->size);
  55. fwrite(pkt->data, 1, pkt->size, outfile);
  56. av_packet_unref(pkt);
  57. }
  58. }
  59. int main(int argc, char **argv)
  60. {
  61. const char *filename, *codec_name;
  62. const AVCodec *codec;
  63. AVCodecContext *c= NULL;
  64. int i, ret, x, y;
  65. FILE *f;
  66. AVFrame *frame;
  67. AVPacket *pkt;
  68. uint8_t endcode[] = { 0, 0, 1, 0xb7 };
  69. if (argc <= 2) {
  70. fprintf(stderr, "Usage: %s <output file> <codec name>\n", argv[0]);
  71. exit(0);
  72. }
  73. filename = argv[1];
  74. codec_name = argv[2];
  75. avcodec_register_all();
  76. /* find the mpeg1video encoder */
  77. codec = avcodec_find_encoder_by_name(codec_name);
  78. if (!codec) {
  79. fprintf(stderr, "Codec '%s' not found\n", codec_name);
  80. exit(1);
  81. }
  82. c = avcodec_alloc_context3(codec);
  83. if (!c) {
  84. fprintf(stderr, "Could not allocate video codec context\n");
  85. exit(1);
  86. }
  87. pkt = av_packet_alloc();
  88. if (!pkt)
  89. exit(1);
  90. /* put sample parameters */
  91. c->bit_rate = 400000;
  92. /* resolution must be a multiple of two */
  93. c->width = 352;
  94. c->height = 288;
  95. /* frames per second */
  96. c->time_base = (AVRational){1, 25};
  97. c->framerate = (AVRational){25, 1};
  98. /* emit one intra frame every ten frames
  99. * check frame pict_type before passing frame
  100. * to encoder, if frame->pict_type is AV_PICTURE_TYPE_I
  101. * then gop_size is ignored and the output of encoder
  102. * will always be I frame irrespective to gop_size
  103. */
  104. c->gop_size = 10;
  105. c->max_b_frames = 1;
  106. c->pix_fmt = AV_PIX_FMT_YUV420P;
  107. if (codec->id == AV_CODEC_ID_H264)
  108. av_opt_set(c->priv_data, "preset", "slow", 0);
  109. /* open it */
  110. ret = avcodec_open2(c, codec, NULL);
  111. if (ret < 0) {
  112. fprintf(stderr, "Could not open codec: %s\n", av_err2str(ret));
  113. exit(1);
  114. }
  115. f = fopen(filename, "wb");
  116. if (!f) {
  117. fprintf(stderr, "Could not open %s\n", filename);
  118. exit(1);
  119. }
  120. frame = av_frame_alloc();
  121. if (!frame) {
  122. fprintf(stderr, "Could not allocate video frame\n");
  123. exit(1);
  124. }
  125. frame->format = c->pix_fmt;
  126. frame->width = c->width;
  127. frame->height = c->height;
  128. ret = av_frame_get_buffer(frame, 32);
  129. if (ret < 0) {
  130. fprintf(stderr, "Could not allocate the video frame data\n");
  131. exit(1);
  132. }
  133. /* encode 1 second of video */
  134. for (i = 0; i < 25; i++) {
  135. fflush(stdout);
  136. /* make sure the frame data is writable */
  137. ret = av_frame_make_writable(frame);
  138. if (ret < 0)
  139. exit(1);
  140. /* prepare a dummy image */
  141. /* Y */
  142. for (y = 0; y < c->height; y++) {
  143. for (x = 0; x < c->width; x++) {
  144. frame->data[0][y * frame->linesize[0] + x] = x + y + i * 3;
  145. }
  146. }
  147. /* Cb and Cr */
  148. for (y = 0; y < c->height/2; y++) {
  149. for (x = 0; x < c->width/2; x++) {
  150. frame->data[1][y * frame->linesize[1] + x] = 128 + y + i * 2;
  151. frame->data[2][y * frame->linesize[2] + x] = 64 + x + i * 5;
  152. }
  153. }
  154. frame->pts = i;
  155. /* encode the image */
  156. encode(c, frame, pkt, f);
  157. }
  158. /* flush the encoder */
  159. encode(c, NULL, pkt, f);
  160. /* add sequence end code to have a real MPEG file */
  161. fwrite(endcode, 1, sizeof(endcode), f);
  162. fclose(f);
  163. avcodec_free_context(&c);
  164. av_frame_free(&frame);
  165. av_packet_free(&pkt);
  166. return 0;
  167. }