1 /*
2 * Copyright (c) 2003 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 /**
24 * @file
25 * libavformat API example.
26 *
27 * Output a media file in any supported libavformat format. The default
28 * codecs are used.
29 * @example muxing.c
30 */
31
32 #include <stdlib.h>
33 #include <stdio.h>
34 #include <string.h>
35 #include <math.h>
36
45
46 #define STREAM_DURATION 10.0
47 #define STREAM_FRAME_RATE 25 /* 25 images/s */
48 #define STREAM_PIX_FMT AV_PIX_FMT_YUV420P /* default pix_fmt */
49
50 #define SCALE_FLAGS SWS_BICUBIC
51
52 // a wrapper around a single output AVStream
55
56 /* pts of the next frame that will be generated */
59
62
64
68
70 {
72
73 printf("pts:%s pts_time:%s dts:%s dts_time:%s duration:%s duration_time:%s stream_index:%d\n",
78 }
79
81 {
82 /* rescale output packet timestamp values from codec to stream timebase */
85
86 /* Write the compressed frame to the media file. */
89 }
90
91 /* Add an output stream. */
95 {
97 int i;
98
99 /* find the encoder */
101 if (!(*codec)) {
102 fprintf(stderr, "Could not find encoder for '%s'\n",
104 exit(1);
105 }
106
109 fprintf(stderr, "Could not allocate stream\n");
110 exit(1);
111 }
114
115 switch ((*codec)->type) {
121 if ((*codec)->supported_samplerates) {
122 c->
sample_rate = (*codec)->supported_samplerates[0];
123 for (i = 0; (*codec)->supported_samplerates[i]; i++) {
124 if ((*codec)->supported_samplerates[i] == 44100)
126 }
127 }
130 if ((*codec)->channel_layouts) {
132 for (i = 0; (*codec)->channel_layouts[i]; i++) {
135 }
136 }
139 break;
140
143
145 /* Resolution must be a multiple of two. */
148 /* timebase: This is the fundamental unit of time (in seconds) in terms
149 * of which frame timestamps are represented. For fixed-fps content,
150 * timebase should be 1/framerate and timestamp increments should be
151 * identical to 1. */
154
155 c->
gop_size = 12;
/* emit one intra frame every twelve frames at most */
158 /* just for testing, we also add B frames */
160 }
162 /* Needed to avoid using macroblocks in which some coeffs overflow.
163 * This does not happen with normal video, it just happens here as
164 * the motion of the chroma plane does not match the luma plane. */
166 }
167 break;
168
169 default:
170 break;
171 }
172
173 /* Some formats want stream headers to be separate. */
176 }
177
178 /**************************************************************/
179 /* audio output */
180
182 uint64_t channel_layout,
184 {
187
188 if (!frame) {
189 fprintf(stderr, "Error allocating an audio frame\n");
190 exit(1);
191 }
192
193 frame->
format = sample_fmt;
197
198 if (nb_samples) {
200 if (ret < 0) {
201 fprintf(stderr, "Error allocating an audio buffer\n");
202 exit(1);
203 }
204 }
205
207 }
208
210 {
212 int nb_samples;
215
217
218 /* open it */
222 if (ret < 0) {
223 fprintf(stderr,
"Could not open audio codec: %s\n",
av_err2str(ret));
224 exit(1);
225 }
226
227 /* init signal generator */
230 /* increment frequency by 110 Hz per second */
232
234 nb_samples = 10000;
235 else
237
242
243 /* create resampler context */
246 fprintf(stderr, "Could not allocate resampler context\n");
247 exit(1);
248 }
249
250 /* set options */
257
258 /* initialize the resampling context */
260 fprintf(stderr, "Failed to initialize the resampling context\n");
261 exit(1);
262 }
263 }
264
265 /* Prepare a 16 bit dummy audio frame of 'frame_size' samples and
266 * 'nb_channels' channels. */
268 {
271 int16_t *q = (int16_t*)frame->
data[0];
272
273 /* check if we want to generate more frames */
277
279 v = (int)(sin(ost->t) * 10000);
280 for (i = 0; i < ost->st->codec->channels; i++)
282 ost->t += ost->tincr;
283 ost->tincr += ost->tincr2;
284 }
285
288
290 }
291
292 /*
293 * encode one audio frame and send it to the muxer
294 * return 1 when encoding is finished, 0 otherwise
295 */
297 {
302 int got_packet;
303 int dst_nb_samples;
304
307
309
310 if (frame) {
311 /* convert samples from native format to destination codec format, using the resampler */
312 /* compute destination number of samples */
316
317 /* when we pass a frame to the encoder, it may keep a reference to it
318 * internally;
319 * make sure we do not overwrite it here
320 */
322 if (ret < 0)
323 exit(1);
324
325 /* convert to destination format */
329 if (ret < 0) {
330 fprintf(stderr, "Error while converting\n");
331 exit(1);
332 }
334
337 }
338
341 fprintf(stderr,
"Error encoding audio frame: %s\n",
av_err2str(
ret));
342 exit(1);
343 }
344
345 if (got_packet) {
348 fprintf(stderr, "Error while writing audio frame: %s\n",
350 exit(1);
351 }
352 }
353
354 return (
frame || got_packet) ? 0 : 1;
355 }
356
357 /**************************************************************/
358 /* video output */
359
361 {
364
366 if (!picture)
368
372
373 /* allocate the buffers for the frame data */
375 if (ret < 0) {
376 fprintf(stderr, "Could not allocate frame data.\n");
377 exit(1);
378 }
379
380 return picture;
381 }
382
384 {
388
390
391 /* open the codec */
394 if (ret < 0) {
395 fprintf(stderr,
"Could not open video codec: %s\n",
av_err2str(ret));
396 exit(1);
397 }
398
399 /* allocate and init a re-usable frame */
402 fprintf(stderr, "Could not allocate video frame\n");
403 exit(1);
404 }
405
406 /* If the output format is not YUV420P, then a temporary YUV420P
407 * picture is needed too. It is then converted to the required
408 * output format. */
413 fprintf(stderr, "Could not allocate temporary picture\n");
414 exit(1);
415 }
416 }
417 }
418
419 /* Prepare a dummy image. */
422 {
424
425 /* when we pass a frame to the encoder, it may keep a reference to it
426 * internally;
427 * make sure we do not overwrite it here
428 */
430 if (ret < 0)
431 exit(1);
432
433 i = frame_index;
434
435 /* Y */
436 for (y = 0; y <
height; y++)
437 for (x = 0; x <
width; x++)
438 pict->
data[0][y * pict->
linesize[0] + x] = x + y + i * 3;
439
440 /* Cb and Cr */
441 for (y = 0; y < height / 2; y++) {
442 for (x = 0; x < width / 2; x++) {
443 pict->
data[1][y * pict->
linesize[1] + x] = 128 + y + i * 2;
444 pict->
data[2][y * pict->
linesize[2] + x] = 64 + x + i * 5;
445 }
446 }
447 }
448
450 {
452
453 /* check if we want to generate more frames */
457
459 /* as we only generate a YUV420P picture, we must convert it
460 * to the codec pixel format if needed */
461 if (!ost->sws_ctx) {
467 if (!ost->sws_ctx) {
468 fprintf(stderr,
469 "Could not initialize the conversion context\n");
470 exit(1);
471 }
472 }
475 (
const uint8_t *
const *)ost->tmp_frame->data, ost->tmp_frame->linesize,
476 0,
c->height, ost->frame->data, ost->frame->linesize);
477 } else {
479 }
480
481 ost->frame->pts = ost->next_pts++;
482
483 return ost->frame;
484 }
485
486 /*
487 * encode one video frame and send it to the muxer
488 * return 1 when encoding is finished, 0 otherwise
489 */
491 {
495 int got_packet = 0;
496
498
500
502 /* a hack to avoid data copy with some raw video muxers */
505
506 if (!frame)
507 return 1;
508
513
516
518 } else {
521
522 /* encode the image */
524 if (ret < 0) {
525 fprintf(stderr,
"Error encoding video frame: %s\n",
av_err2str(ret));
526 exit(1);
527 }
528
529 if (got_packet) {
531 } else {
532 ret = 0;
533 }
534 }
535
536 if (ret < 0) {
537 fprintf(stderr,
"Error while writing video frame: %s\n",
av_err2str(ret));
538 exit(1);
539 }
540
541 return (frame || got_packet) ? 0 : 1;
542 }
543
545 {
551 }
552
553 /**************************************************************/
554 /* media file output */
555
556 int main(
int argc,
char **argv)
557 {
559 const char *filename;
562 AVCodec *audio_codec, *video_codec;
564 int have_video = 0, have_audio = 0;
565 int encode_video = 0, encode_audio = 0;
567
568 /* Initialize libavcodec, and register all codecs and formats. */
570
571 if (argc < 2) {
572 printf("usage: %s output_file\n"
573 "API example program to output a media file with libavformat.\n"
574 "This program generates a synthetic audio and video stream, encodes and\n"
575 "muxes them into a file named output_file.\n"
576 "The output format is automatically guessed according to the file extension.\n"
577 "Raw images can also be output by using '%%d' in the filename.\n"
578 "\n", argv[0]);
579 return 1;
580 }
581
582 filename = argv[1];
583 if (argc > 3 && !strcmp(argv[2], "-flags")) {
585 }
586
587 /* allocate the output media context */
589 if (!oc) {
590 printf("Could not deduce output format from file extension: using MPEG.\n");
592 }
593 if (!oc)
594 return 1;
595
597
598 /* Add the audio and video streams using the default format codecs
599 * and initialize the codecs. */
602 have_video = 1;
603 encode_video = 1;
604 }
607 have_audio = 1;
608 encode_audio = 1;
609 }
610
611 /* Now that all the parameters are set, we can open the audio and
612 * video codecs and allocate the necessary encode buffers. */
613 if (have_video)
615
616 if (have_audio)
618
620
621 /* open the output file, if needed */
624 if (ret < 0) {
625 fprintf(stderr, "Could not open '%s': %s\n", filename,
627 return 1;
628 }
629 }
630
631 /* Write the stream header, if any. */
633 if (ret < 0) {
634 fprintf(stderr, "Error occurred when opening output file: %s\n",
636 return 1;
637 }
638
639 while (encode_video || encode_audio) {
640 /* select the stream to encode */
641 if (encode_video &&
643 audio_st.next_pts, audio_st.st->codec->time_base) <= 0)) {
645 } else {
647 }
648 }
649
650 /* Write the trailer, if any. The trailer must be written before you
651 * close the CodecContexts open when you wrote the header; otherwise
652 * av_write_trailer() may try to use memory that was freed on
653 * av_codec_close(). */
655
656 /* Close each codec. */
657 if (have_video)
659 if (have_audio)
661
663 /* Close the output file. */
665
666 /* free the stream */
668
669 return 0;
670 }