| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2003 Fabrice Bellard | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |  * THE SOFTWARE. | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-05-30 09:12:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * @file | 
					
						
							| 
									
										
										
										
											2011-06-30 21:06:25 +02:00
										 |  |  |  * libavformat API example. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Output a media file in any supported libavformat format. | 
					
						
							|  |  |  |  * The default codecs are used. | 
					
						
							| 
									
										
										
										
											2011-05-30 09:12:48 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2004-01-06 21:03:41 +00:00
										 |  |  | #include <string.h>
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | #include <math.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-04 12:58:23 +01:00
										 |  |  | #include "libavutil/mathematics.h"
 | 
					
						
							| 
									
										
										
										
											2008-05-09 11:56:36 +00:00
										 |  |  | #include "libavformat/avformat.h"
 | 
					
						
							|  |  |  | #include "libswscale/swscale.h"
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-10 14:34:56 +00:00
										 |  |  | #undef exit
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | /* 5 seconds stream duration */ | 
					
						
							| 
									
										
										
										
											2011-10-02 23:05:07 +02:00
										 |  |  | #define STREAM_DURATION   200.0
 | 
					
						
							| 
									
										
										
										
											2003-09-10 23:09:30 +00:00
										 |  |  | #define STREAM_FRAME_RATE 25 /* 25 images/s */
 | 
					
						
							|  |  |  | #define STREAM_NB_FRAMES  ((int)(STREAM_DURATION * STREAM_FRAME_RATE))
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  | #define STREAM_PIX_FMT    PIX_FMT_YUV420P /* default pix_fmt */
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-03 16:55:36 +00:00
										 |  |  | static int sws_flags = SWS_BICUBIC; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | /**************************************************************/ | 
					
						
							|  |  |  | /* audio output */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-21 18:44:41 +02:00
										 |  |  | static float t, tincr, tincr2; | 
					
						
							|  |  |  | static int16_t *samples; | 
					
						
							|  |  |  | static int audio_input_frame_size; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |  * add an audio output stream | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-08-02 17:42:40 +00:00
										 |  |  | static AVStream *add_audio_stream(AVFormatContext *oc, enum CodecID codec_id) | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     AVCodecContext *c; | 
					
						
							|  |  |  |     AVStream *st; | 
					
						
							| 
									
										
										
										
											2012-01-28 20:12:45 +01:00
										 |  |  |     AVCodec *codec; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-28 20:12:45 +01:00
										 |  |  |     /* find the audio encoder */ | 
					
						
							|  |  |  |     codec = avcodec_find_encoder(codec_id); | 
					
						
							|  |  |  |     if (!codec) { | 
					
						
							|  |  |  |         fprintf(stderr, "codec not found\n"); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-28 20:12:45 +01:00
										 |  |  |     st = avformat_new_stream(oc, codec); | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     if (!st) { | 
					
						
							|  |  |  |         fprintf(stderr, "Could not alloc stream\n"); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-11-05 13:11:18 +01:00
										 |  |  |     st->id = 1; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     c = st->codec; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* put sample parameters */ | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     c->sample_fmt  = AV_SAMPLE_FMT_S16; | 
					
						
							|  |  |  |     c->bit_rate    = 64000; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     c->sample_rate = 44100; | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     c->channels    = 2; | 
					
						
							| 
									
										
										
										
											2010-01-21 17:10:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // some formats want stream headers to be separate
 | 
					
						
							| 
									
										
										
										
											2011-07-27 02:04:53 +02:00
										 |  |  |     if (oc->oformat->flags & AVFMT_GLOBALHEADER) | 
					
						
							| 
									
										
										
										
											2010-01-21 17:10:13 +00:00
										 |  |  |         c->flags |= CODEC_FLAG_GLOBAL_HEADER; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     return st; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-30 23:33:19 +00:00
										 |  |  | static void open_audio(AVFormatContext *oc, AVStream *st) | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     AVCodecContext *c; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     c = st->codec; | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     /* open it */ | 
					
						
							| 
									
										
										
										
											2012-01-28 20:12:45 +01:00
										 |  |  |     if (avcodec_open2(c, NULL, NULL) < 0) { | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         fprintf(stderr, "could not open codec\n"); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* init signal generator */ | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     t     = 0; | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     tincr = 2 * M_PI * 110.0 / c->sample_rate; | 
					
						
							|  |  |  |     /* increment frequency by 110 Hz per second */ | 
					
						
							|  |  |  |     tincr2 = 2 * M_PI * 110.0 / c->sample_rate / c->sample_rate; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-24 08:59:38 +01:00
										 |  |  |     if (c->codec->capabilities & CODEC_CAP_VARIABLE_FRAME_SIZE) | 
					
						
							|  |  |  |         audio_input_frame_size = 10000; | 
					
						
							|  |  |  |     else | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         audio_input_frame_size = c->frame_size; | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     samples = av_malloc(audio_input_frame_size * | 
					
						
							|  |  |  |                         av_get_bytes_per_sample(c->sample_fmt) * | 
					
						
							|  |  |  |                         c->channels); | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  | /* Prepare a 16 bit dummy audio frame of 'frame_size' samples and
 | 
					
						
							|  |  |  |  * 'nb_channels' channels. */ | 
					
						
							| 
									
										
										
										
											2006-01-30 23:33:19 +00:00
										 |  |  | static void get_audio_frame(int16_t *samples, int frame_size, int nb_channels) | 
					
						
							| 
									
										
										
										
											2003-08-08 18:03:31 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int j, i, v; | 
					
						
							|  |  |  |     int16_t *q; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     q = samples; | 
					
						
							| 
									
										
										
										
											2011-07-27 02:04:53 +02:00
										 |  |  |     for (j = 0; j < frame_size; j++) { | 
					
						
							| 
									
										
										
										
											2003-08-08 18:03:31 +00:00
										 |  |  |         v = (int)(sin(t) * 10000); | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |         for (i = 0; i < nb_channels; i++) | 
					
						
							| 
									
										
										
										
											2003-08-08 18:03:31 +00:00
										 |  |  |             *q++ = v; | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |         t     += tincr; | 
					
						
							| 
									
										
										
										
											2003-08-08 18:03:31 +00:00
										 |  |  |         tincr += tincr2; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-30 23:33:19 +00:00
										 |  |  | static void write_audio_frame(AVFormatContext *oc, AVStream *st) | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     AVCodecContext *c; | 
					
						
							| 
									
										
										
										
											2012-03-29 12:00:37 -07:00
										 |  |  |     AVPacket pkt = { 0 }; // data and size must be 0;
 | 
					
						
							| 
									
										
										
										
											2012-02-24 08:59:38 +01:00
										 |  |  |     AVFrame *frame = avcodec_alloc_frame(); | 
					
						
							|  |  |  |     int got_packet; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-24 08:59:38 +01:00
										 |  |  |     av_init_packet(&pkt); | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     c = st->codec; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-08 18:03:31 +00:00
										 |  |  |     get_audio_frame(samples, audio_input_frame_size, c->channels); | 
					
						
							| 
									
										
										
										
											2012-02-24 08:59:38 +01:00
										 |  |  |     frame->nb_samples = audio_input_frame_size; | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     avcodec_fill_audio_frame(frame, c->channels, c->sample_fmt, | 
					
						
							|  |  |  |                              (uint8_t *)samples, | 
					
						
							|  |  |  |                              audio_input_frame_size * | 
					
						
							|  |  |  |                              av_get_bytes_per_sample(c->sample_fmt) * | 
					
						
							|  |  |  |                              c->channels, 1); | 
					
						
							| 
									
										
										
										
											2003-08-08 18:03:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-24 08:59:38 +01:00
										 |  |  |     avcodec_encode_audio2(c, &pkt, frame, &got_packet); | 
					
						
							|  |  |  |     if (!got_packet) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2004-05-29 02:06:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     pkt.stream_index = st->index; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     /* Write the compressed frame to the media file. */ | 
					
						
							| 
									
										
										
										
											2009-02-18 11:46:14 +00:00
										 |  |  |     if (av_interleaved_write_frame(oc, &pkt) != 0) { | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         fprintf(stderr, "Error while writing audio frame\n"); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-30 23:33:19 +00:00
										 |  |  | static void close_audio(AVFormatContext *oc, AVStream *st) | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     avcodec_close(st->codec); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     av_free(samples); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | /**************************************************************/ | 
					
						
							|  |  |  | /* video output */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-21 18:44:41 +02:00
										 |  |  | static AVFrame *picture, *tmp_picture; | 
					
						
							|  |  |  | static uint8_t *video_outbuf; | 
					
						
							|  |  |  | static int frame_count, video_outbuf_size; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  | /* Add a video output stream. */ | 
					
						
							| 
									
										
										
										
											2009-08-02 17:42:40 +00:00
										 |  |  | static AVStream *add_video_stream(AVFormatContext *oc, enum CodecID codec_id) | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     AVCodecContext *c; | 
					
						
							|  |  |  |     AVStream *st; | 
					
						
							| 
									
										
										
										
											2011-12-02 22:49:00 +01:00
										 |  |  |     AVCodec *codec; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-28 20:12:45 +01:00
										 |  |  |     /* find the video encoder */ | 
					
						
							|  |  |  |     codec = avcodec_find_encoder(codec_id); | 
					
						
							|  |  |  |     if (!codec) { | 
					
						
							|  |  |  |         fprintf(stderr, "codec not found\n"); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-28 20:12:45 +01:00
										 |  |  |     st = avformat_new_stream(oc, codec); | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     if (!st) { | 
					
						
							|  |  |  |         fprintf(stderr, "Could not alloc stream\n"); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     c = st->codec; | 
					
						
							| 
									
										
										
										
											2011-12-02 22:49:00 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* find the video encoder */ | 
					
						
							|  |  |  |     codec = avcodec_find_encoder(codec_id); | 
					
						
							|  |  |  |     if (!codec) { | 
					
						
							|  |  |  |         fprintf(stderr, "codec not found\n"); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     avcodec_get_context_defaults3(c, codec); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     c->codec_id = codec_id; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     /* Put sample parameters. */ | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     c->bit_rate = 400000; | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     /* Resolution must be a multiple of two. */ | 
					
						
							|  |  |  |     c->width    = 352; | 
					
						
							|  |  |  |     c->height   = 288; | 
					
						
							|  |  |  |     /* timebase: This is the fundamental unit of time (in seconds) in terms
 | 
					
						
							|  |  |  |      * of which frame timestamps are represented. For fixed-fps content, | 
					
						
							|  |  |  |      * timebase should be 1/framerate and timestamp increments should be | 
					
						
							|  |  |  |      * identical to 1. */ | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     c->time_base.den = STREAM_FRAME_RATE; | 
					
						
							| 
									
										
										
										
											2005-04-30 21:43:59 +00:00
										 |  |  |     c->time_base.num = 1; | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     c->gop_size      = 12; /* emit one intra frame every twelve frames at most */ | 
					
						
							|  |  |  |     c->pix_fmt       = STREAM_PIX_FMT; | 
					
						
							| 
									
										
										
										
											2004-01-06 21:16:59 +00:00
										 |  |  |     if (c->codec_id == CODEC_ID_MPEG2VIDEO) { | 
					
						
							| 
									
										
										
										
											2003-09-10 23:09:30 +00:00
										 |  |  |         /* just for testing, we also add B frames */ | 
					
						
							|  |  |  |         c->max_b_frames = 2; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     if (c->codec_id == CODEC_ID_MPEG1VIDEO) { | 
					
						
							| 
									
										
										
										
											2007-06-12 09:29:25 +00:00
										 |  |  |         /* Needed to avoid using macroblocks in which some coeffs overflow.
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |          * This does not happen with normal video, it just happens here as | 
					
						
							|  |  |  |          * the motion of the chroma plane does not match the luma plane. */ | 
					
						
							|  |  |  |         c->mb_decision = 2; | 
					
						
							| 
									
										
										
										
											2004-01-06 21:16:59 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     /* Some formats want stream headers to be separate. */ | 
					
						
							| 
									
										
										
										
											2011-07-27 02:04:53 +02:00
										 |  |  |     if (oc->oformat->flags & AVFMT_GLOBALHEADER) | 
					
						
							| 
									
										
										
										
											2004-01-06 21:03:41 +00:00
										 |  |  |         c->flags |= CODEC_FLAG_GLOBAL_HEADER; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     return st; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-02 17:42:40 +00:00
										 |  |  | static AVFrame *alloc_picture(enum PixelFormat pix_fmt, int width, int height) | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     AVFrame *picture; | 
					
						
							|  |  |  |     uint8_t *picture_buf; | 
					
						
							|  |  |  |     int size; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     picture = avcodec_alloc_frame(); | 
					
						
							|  |  |  |     if (!picture) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     size        = avpicture_get_size(pix_fmt, width, height); | 
					
						
							| 
									
										
										
										
											2006-08-29 12:09:00 +00:00
										 |  |  |     picture_buf = av_malloc(size); | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     if (!picture_buf) { | 
					
						
							|  |  |  |         av_free(picture); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     avpicture_fill((AVPicture *)picture, picture_buf, | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |                    pix_fmt, width, height); | 
					
						
							|  |  |  |     return picture; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-30 23:33:19 +00:00
										 |  |  | static void open_video(AVFormatContext *oc, AVStream *st) | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     AVCodecContext *c; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     c = st->codec; | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* open the codec */ | 
					
						
							| 
									
										
										
										
											2012-01-28 20:12:45 +01:00
										 |  |  |     if (avcodec_open2(c, NULL, NULL) < 0) { | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         fprintf(stderr, "could not open codec\n"); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     video_outbuf = NULL; | 
					
						
							|  |  |  |     if (!(oc->oformat->flags & AVFMT_RAWPICTURE)) { | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |         /* Allocate output buffer. */ | 
					
						
							|  |  |  |         /* XXX: API change will be done. */ | 
					
						
							|  |  |  |         /* Buffers passed into lav* can be allocated any way you prefer,
 | 
					
						
							|  |  |  |          * as long as they're aligned enough for the architecture, and | 
					
						
							|  |  |  |          * they're freed appropriately (such as using av_free for buffers | 
					
						
							|  |  |  |          * allocated with av_malloc). */ | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |         video_outbuf_size = 200000; | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |         video_outbuf      = av_malloc(video_outbuf_size); | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     /* Allocate the encoded raw picture. */ | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     picture = alloc_picture(c->pix_fmt, c->width, c->height); | 
					
						
							|  |  |  |     if (!picture) { | 
					
						
							|  |  |  |         fprintf(stderr, "Could not allocate picture\n"); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     /* If the output format is not YUV420P, then a temporary YUV420P
 | 
					
						
							|  |  |  |      * picture is needed too. It is then converted to the required | 
					
						
							|  |  |  |      * output format. */ | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     tmp_picture = NULL; | 
					
						
							|  |  |  |     if (c->pix_fmt != PIX_FMT_YUV420P) { | 
					
						
							|  |  |  |         tmp_picture = alloc_picture(PIX_FMT_YUV420P, c->width, c->height); | 
					
						
							|  |  |  |         if (!tmp_picture) { | 
					
						
							|  |  |  |             fprintf(stderr, "Could not allocate temporary picture\n"); | 
					
						
							|  |  |  |             exit(1); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  | /* Prepare a dummy image. */ | 
					
						
							|  |  |  | static void fill_yuv_image(AVFrame *pict, int frame_index, | 
					
						
							|  |  |  |                            int width, int height) | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     int x, y, i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     i = frame_index; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Y */ | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     for (y = 0; y < height; y++) | 
					
						
							|  |  |  |         for (x = 0; x < width; x++) | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |             pict->data[0][y * pict->linesize[0] + x] = x + y + i * 3; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     /* Cb and Cr */ | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     for (y = 0; y < height / 2; y++) { | 
					
						
							|  |  |  |         for (x = 0; x < width / 2; x++) { | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |             pict->data[1][y * pict->linesize[1] + x] = 128 + y + i * 2; | 
					
						
							|  |  |  |             pict->data[2][y * pict->linesize[2] + x] = 64 + x + i * 5; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-30 23:33:19 +00:00
										 |  |  | static void write_video_frame(AVFormatContext *oc, AVStream *st) | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int out_size, ret; | 
					
						
							|  |  |  |     AVCodecContext *c; | 
					
						
							| 
									
										
										
										
											2006-08-03 16:55:36 +00:00
										 |  |  |     static struct SwsContext *img_convert_ctx; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     c = st->codec; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-10 23:09:30 +00:00
										 |  |  |     if (frame_count >= STREAM_NB_FRAMES) { | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |         /* No more frames to compress. The codec has a latency of a few
 | 
					
						
							|  |  |  |          * frames if using B-frames, so we get the last frames by | 
					
						
							|  |  |  |          * passing the same picture again. */ | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2003-09-10 23:09:30 +00:00
										 |  |  |         if (c->pix_fmt != PIX_FMT_YUV420P) { | 
					
						
							|  |  |  |             /* as we only generate a YUV420P picture, we must convert it
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |              * to the codec pixel format if needed */ | 
					
						
							| 
									
										
										
										
											2006-08-03 16:55:36 +00:00
										 |  |  |             if (img_convert_ctx == NULL) { | 
					
						
							|  |  |  |                 img_convert_ctx = sws_getContext(c->width, c->height, | 
					
						
							|  |  |  |                                                  PIX_FMT_YUV420P, | 
					
						
							|  |  |  |                                                  c->width, c->height, | 
					
						
							|  |  |  |                                                  c->pix_fmt, | 
					
						
							|  |  |  |                                                  sws_flags, NULL, NULL, NULL); | 
					
						
							|  |  |  |                 if (img_convert_ctx == NULL) { | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |                     fprintf(stderr, | 
					
						
							|  |  |  |                             "Cannot initialize the conversion context\n"); | 
					
						
							| 
									
										
										
										
											2006-08-03 16:55:36 +00:00
										 |  |  |                     exit(1); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2003-09-10 23:09:30 +00:00
										 |  |  |             fill_yuv_image(tmp_picture, frame_count, c->width, c->height); | 
					
						
							| 
									
										
										
										
											2006-08-03 16:55:36 +00:00
										 |  |  |             sws_scale(img_convert_ctx, tmp_picture->data, tmp_picture->linesize, | 
					
						
							|  |  |  |                       0, c->height, picture->data, picture->linesize); | 
					
						
							| 
									
										
										
										
											2003-09-10 23:09:30 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             fill_yuv_image(picture, frame_count, c->width, c->height); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (oc->oformat->flags & AVFMT_RAWPICTURE) { | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |         /* Raw video case - the API will change slightly in the near
 | 
					
						
							|  |  |  |          * future for that. */ | 
					
						
							| 
									
										
										
										
											2004-05-29 02:06:32 +00:00
										 |  |  |         AVPacket pkt; | 
					
						
							|  |  |  |         av_init_packet(&pkt); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |         pkt.flags        |= AV_PKT_FLAG_KEY; | 
					
						
							|  |  |  |         pkt.stream_index  = st->index; | 
					
						
							|  |  |  |         pkt.data          = (uint8_t *)picture; | 
					
						
							|  |  |  |         pkt.size          = sizeof(AVPicture); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-18 11:46:14 +00:00
										 |  |  |         ret = av_interleaved_write_frame(oc, &pkt); | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         /* encode the image */ | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |         out_size = avcodec_encode_video(c, video_outbuf, | 
					
						
							|  |  |  |                                         video_outbuf_size, picture); | 
					
						
							|  |  |  |         /* If size is zero, it means the image was buffered. */ | 
					
						
							| 
									
										
										
										
											2005-07-23 15:43:07 +00:00
										 |  |  |         if (out_size > 0) { | 
					
						
							| 
									
										
										
										
											2004-05-29 02:06:32 +00:00
										 |  |  |             AVPacket pkt; | 
					
						
							|  |  |  |             av_init_packet(&pkt); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-23 10:56:56 +00:00
										 |  |  |             if (c->coded_frame->pts != AV_NOPTS_VALUE) | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |                 pkt.pts = av_rescale_q(c->coded_frame->pts, | 
					
						
							|  |  |  |                                        c->time_base, st->time_base); | 
					
						
							|  |  |  |             if (c->coded_frame->key_frame) | 
					
						
							| 
									
										
										
										
											2010-03-31 12:29:58 +00:00
										 |  |  |                 pkt.flags |= AV_PKT_FLAG_KEY; | 
					
						
							| 
									
										
										
										
											2012-03-30 22:10:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-27 02:04:53 +02:00
										 |  |  |             pkt.stream_index = st->index; | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |             pkt.data         = video_outbuf; | 
					
						
							|  |  |  |             pkt.size         = out_size; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |             /* Write the compressed frame to the media file. */ | 
					
						
							| 
									
										
										
										
											2009-02-18 11:46:14 +00:00
										 |  |  |             ret = av_interleaved_write_frame(oc, &pkt); | 
					
						
							| 
									
										
										
										
											2003-09-10 23:09:30 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             ret = 0; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         fprintf(stderr, "Error while writing video frame\n"); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     frame_count++; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-30 23:33:19 +00:00
										 |  |  | static void close_video(AVFormatContext *oc, AVStream *st) | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     avcodec_close(st->codec); | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     av_free(picture->data[0]); | 
					
						
							|  |  |  |     av_free(picture); | 
					
						
							|  |  |  |     if (tmp_picture) { | 
					
						
							|  |  |  |         av_free(tmp_picture->data[0]); | 
					
						
							|  |  |  |         av_free(tmp_picture); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     av_free(video_outbuf); | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**************************************************************/ | 
					
						
							|  |  |  | /* media file output */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int main(int argc, char **argv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const char *filename; | 
					
						
							|  |  |  |     AVOutputFormat *fmt; | 
					
						
							|  |  |  |     AVFormatContext *oc; | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     AVStream *audio_st, *video_st; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     double audio_pts, video_pts; | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     /* Initialize libavcodec, and register all codecs and formats. */ | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     av_register_all(); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     if (argc != 2) { | 
					
						
							|  |  |  |         printf("usage: %s output_file\n" | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |                "API example program to output a media file with libavformat.\n" | 
					
						
							|  |  |  |                "The output format is automatically guessed according to the file extension.\n" | 
					
						
							|  |  |  |                "Raw images can also be output by using '%%d' in the filename\n" | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |                "\n", argv[0]); | 
					
						
							| 
									
										
										
										
											2011-09-21 18:46:56 +02:00
										 |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     filename = argv[1]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-30 20:44:09 +02:00
										 |  |  |     /* allocate the output media context */ | 
					
						
							| 
									
										
										
										
											2011-05-19 22:09:34 +02:00
										 |  |  |     avformat_alloc_output_context2(&oc, NULL, NULL, filename); | 
					
						
							| 
									
										
										
										
											2011-04-30 20:44:09 +02:00
										 |  |  |     if (!oc) { | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         printf("Could not deduce output format from file extension: using MPEG.\n"); | 
					
						
							| 
									
										
										
										
											2011-05-19 22:09:34 +02:00
										 |  |  |         avformat_alloc_output_context2(&oc, NULL, "mpeg", filename); | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (!oc) { | 
					
						
							| 
									
										
										
										
											2011-09-21 18:46:56 +02:00
										 |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-07-27 02:04:53 +02:00
										 |  |  |     fmt = oc->oformat; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     /* Add the audio and video streams using the default format codecs
 | 
					
						
							|  |  |  |      * and initialize the codecs. */ | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     video_st = NULL; | 
					
						
							|  |  |  |     audio_st = NULL; | 
					
						
							|  |  |  |     if (fmt->video_codec != CODEC_ID_NONE) { | 
					
						
							|  |  |  |         video_st = add_video_stream(oc, fmt->video_codec); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (fmt->audio_codec != CODEC_ID_NONE) { | 
					
						
							|  |  |  |         audio_st = add_audio_stream(oc, fmt->audio_codec); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     /* Now that all the parameters are set, we can open the audio and
 | 
					
						
							|  |  |  |      * video codecs and allocate the necessary encode buffers. */ | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     if (video_st) | 
					
						
							|  |  |  |         open_video(oc, video_st); | 
					
						
							|  |  |  |     if (audio_st) | 
					
						
							|  |  |  |         open_audio(oc, audio_st); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-29 15:28:00 -07:00
										 |  |  |     av_dump_format(oc, 0, filename, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |     /* open the output file, if needed */ | 
					
						
							|  |  |  |     if (!(fmt->flags & AVFMT_NOFILE)) { | 
					
						
							| 
									
										
										
										
											2011-04-15 16:42:09 +02:00
										 |  |  |         if (avio_open(&oc->pb, filename, AVIO_FLAG_WRITE) < 0) { | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |             fprintf(stderr, "Could not open '%s'\n", filename); | 
					
						
							| 
									
										
										
										
											2011-09-21 18:46:56 +02:00
										 |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     /* Write the stream header, if any. */ | 
					
						
							| 
									
										
										
										
											2012-01-28 08:28:44 +01:00
										 |  |  |     avformat_write_header(oc, NULL); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-02 23:31:20 +01:00
										 |  |  |     picture->pts = 0; | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     for (;;) { | 
					
						
							|  |  |  |         /* Compute current audio and video time. */ | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         if (audio_st) | 
					
						
							| 
									
										
										
										
											2004-05-22 12:21:58 +00:00
										 |  |  |             audio_pts = (double)audio_st->pts.val * audio_st->time_base.num / audio_st->time_base.den; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         else | 
					
						
							|  |  |  |             audio_pts = 0.0; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         if (video_st) | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |             video_pts = (double)video_st->pts.val * video_st->time_base.num / | 
					
						
							|  |  |  |                         video_st->time_base.den; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         else | 
					
						
							|  |  |  |             video_pts = 0.0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |         if ((!audio_st || audio_pts >= STREAM_DURATION) && | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |             (!video_st || video_pts >= STREAM_DURATION)) | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         /* write interleaved audio and video frames */ | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |         if (!video_st || (video_st && audio_st && audio_pts < video_pts)) { | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |             write_audio_frame(oc, audio_st); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             write_video_frame(oc, video_st); | 
					
						
							| 
									
										
										
										
											2011-12-02 23:31:20 +01:00
										 |  |  |             picture->pts++; | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     /* Write the trailer, if any. The trailer must be written before you
 | 
					
						
							|  |  |  |      * close the CodecContexts open when you wrote the header; otherwise | 
					
						
							|  |  |  |      * av_write_trailer() may try to use memory that was freed on | 
					
						
							|  |  |  |      * av_codec_close(). */ | 
					
						
							| 
									
										
										
										
											2009-02-18 06:49:32 +00:00
										 |  |  |     av_write_trailer(oc); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     /* Close each codec. */ | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |     if (video_st) | 
					
						
							|  |  |  |         close_video(oc, video_st); | 
					
						
							|  |  |  |     if (audio_st) | 
					
						
							|  |  |  |         close_audio(oc, audio_st); | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     /* Free the streams. */ | 
					
						
							|  |  |  |     for (i = 0; i < oc->nb_streams; i++) { | 
					
						
							| 
									
										
										
										
											2006-02-06 12:45:52 +00:00
										 |  |  |         av_freep(&oc->streams[i]->codec); | 
					
						
							| 
									
										
										
										
											2003-07-22 14:41:49 +00:00
										 |  |  |         av_freep(&oc->streams[i]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-30 02:27:05 +02:00
										 |  |  |     if (!(fmt->flags & AVFMT_NOFILE)) | 
					
						
							|  |  |  |         /* Close the output file. */ | 
					
						
							| 
									
										
										
										
											2011-02-21 22:45:20 +01:00
										 |  |  |         avio_close(oc->pb); | 
					
						
							| 
									
										
										
										
											2003-07-22 12:46:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* free the stream */ | 
					
						
							|  |  |  |     av_free(oc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } |