3 * Copyright (c) 2000-2003 Fabrice Bellard
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #define HAVE_AV_CONFIG_H
22 #include "framehook.h"
24 #include "os_support.h"
29 #include <sys/ioctl.h>
32 #include <sys/resource.h>
36 #include <sys/types.h>
37 #include <sys/select.h>
45 #if !defined(INFINITY) && defined(HUGE_VAL)
46 #define INFINITY HUGE_VAL
49 /* select an input stream for an output stream */
50 typedef struct AVStreamMap {
55 extern const OptionDef options[];
57 static void show_help(void);
58 static void show_license(void);
62 static AVFormatContext *input_files[MAX_FILES];
63 static int nb_input_files = 0;
65 static AVFormatContext *output_files[MAX_FILES];
66 static int nb_output_files = 0;
68 static AVStreamMap stream_maps[MAX_FILES];
69 static int nb_stream_maps;
71 static AVInputFormat *file_iformat;
72 static AVOutputFormat *file_oformat;
73 static AVImageFormat *image_format;
74 static int frame_width = 160;
75 static int frame_height = 128;
76 static float frame_aspect_ratio = 0;
77 static enum PixelFormat frame_pix_fmt = PIX_FMT_YUV420P;
78 static int frame_topBand = 0;
79 static int frame_bottomBand = 0;
80 static int frame_leftBand = 0;
81 static int frame_rightBand = 0;
82 static int frame_rate = 25;
83 static int frame_rate_base = 1;
84 static int video_bit_rate = 200*1000;
85 static int video_bit_rate_tolerance = 4000*1000;
86 static int video_qscale = 0;
87 static int video_qmin = 2;
88 static int video_qmax = 31;
89 static int video_mb_qmin = 2;
90 static int video_mb_qmax = 31;
91 static int video_qdiff = 3;
92 static float video_qblur = 0.5;
93 static float video_qcomp = 0.5;
94 #if 0 //experimental, (can be removed)
95 static float video_rc_qsquish=1.0;
96 static float video_rc_qmod_amp=0;
97 static int video_rc_qmod_freq=0;
99 static char *video_rc_override_string=NULL;
100 static char *video_rc_eq="tex^qComp";
101 static int video_rc_buffer_size=0;
102 static float video_rc_buffer_aggressivity=1.0;
103 static int video_rc_max_rate=0;
104 static int video_rc_min_rate=0;
105 static float video_rc_initial_cplx=0;
106 static float video_b_qfactor = 1.25;
107 static float video_b_qoffset = 1.25;
108 static float video_i_qfactor = -0.8;
109 static float video_i_qoffset = 0.0;
110 static int me_method = ME_EPZS;
111 static int video_disable = 0;
112 static int video_codec_id = CODEC_ID_NONE;
113 static int same_quality = 0;
114 static int b_frames = 0;
115 static int mb_decision = FF_MB_DECISION_SIMPLE;
116 static int use_4mv = 0;
117 static int use_aic = 0;
118 static int use_umv = 0;
119 static int do_deinterlace = 0;
120 static int workaround_bugs = FF_BUG_AUTODETECT;
121 static int error_resilience = 2;
122 static int error_concealment = 3;
123 static int dct_algo = 0;
124 static int idct_algo = 0;
125 static int use_part = 0;
126 static int packet_size = 0;
127 static int strict = 0;
128 static int debug = 0;
129 extern int loop_input; /* currently a hack */
131 static int gop_size = 12;
132 static int intra_only = 0;
133 static int audio_sample_rate = 44100;
134 static int audio_bit_rate = 64000;
135 static int audio_disable = 0;
136 static int audio_channels = 1;
137 static int audio_codec_id = CODEC_ID_NONE;
139 static int64_t recording_time = 0;
140 static int file_overwrite = 0;
141 static char *str_title = NULL;
142 static char *str_author = NULL;
143 static char *str_copyright = NULL;
144 static char *str_comment = NULL;
145 static int do_benchmark = 0;
146 static int do_hex_dump = 0;
147 static int do_psnr = 0;
148 static int do_vstats = 0;
149 static int do_pass = 0;
150 static int bitexact = 0;
151 static char *pass_logfilename = NULL;
152 static int audio_stream_copy = 0;
153 static int video_stream_copy = 0;
155 static int rate_emu = 0;
157 static char *video_grab_format = "video4linux";
158 static char *video_device = NULL;
159 static int video_channel = 0;
160 static char *video_standard = "ntsc";
162 static char *audio_grab_format = "audio_device";
163 static char *audio_device = NULL;
165 static int using_stdin = 0;
167 #define DEFAULT_PASS_LOGFILENAME "ffmpeg2pass"
169 typedef struct AVOutputStream {
170 int file_index; /* file index */
171 int index; /* stream index in the output file */
172 int source_index; /* AVInputStream index */
173 AVStream *st; /* stream in the output file */
174 int encoding_needed; /* true if encoding needed for this stream */
176 /* input pts and corresponding output pts
179 double sync_ipts_offset;
182 int video_resample; /* video_resample and video_crop are mutually exclusive */
183 AVPicture pict_tmp; /* temporary image for resampling */
184 ImgReSampleContext *img_resample_ctx; /* for image resampling */
186 int video_crop; /* video_resample and video_crop are mutually exclusive */
187 int topBand; /* cropping area sizes */
192 ReSampleContext *resample; /* for audio resampling */
193 FifoBuffer fifo; /* for compression: one audio fifo per codec */
197 typedef struct AVInputStream {
201 int discard; /* true if stream data should be discarded */
202 int decoding_needed; /* true if the packets must be decoded in 'raw_fifo' */
203 int64_t sample_index; /* current sample */
204 int frame_decoded; /* true if a video or audio frame has been decoded */
206 int64_t start; /* time when read started */
207 unsigned long frame; /* current frame */
208 AVFrac next_pts; /* synthetic pts for cases where pkt.pts == 0 */
209 int64_t pts; /* current pts */
212 typedef struct AVInputFile {
213 int eof_reached; /* true if eof reached */
214 int ist_index; /* index of first stream in ist_table */
215 int buffer_size; /* current total buffer size */
216 int buffer_size_max; /* buffer size at which we consider we can stop
218 int nb_streams; /* nb streams we are aware of */
223 /* init terminal so that we can grab keys */
224 static struct termios oldtty;
226 static void term_exit(void)
228 tcsetattr (0, TCSANOW, &oldtty);
231 static volatile sig_atomic_t received_sigterm = 0;
234 sigterm_handler(int sig)
236 received_sigterm = sig;
240 static void term_init(void)
247 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
248 |INLCR|IGNCR|ICRNL|IXON);
249 tty.c_oflag |= OPOST;
250 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
251 tty.c_cflag &= ~(CSIZE|PARENB);
256 tcsetattr (0, TCSANOW, &tty);
258 signal(SIGINT , sigterm_handler); /* Interrupt (ANSI). */
259 signal(SIGQUIT, sigterm_handler); /* Quit (POSIX). */
260 signal(SIGTERM, sigterm_handler); /* Termination (ANSI). */
262 register a function to be called at normal program termination
265 #ifdef CONFIG_BEOS_NETSERVER
266 fcntl(0, F_SETFL, fcntl(0, F_GETFL) | O_NONBLOCK);
270 /* read a key without blocking */
271 static int read_key(void)
275 #ifndef CONFIG_BEOS_NETSERVER
283 n = select(1, &rfds, NULL, NULL, &tv);
297 /* no interactive support */
298 static void term_exit(void)
302 static void term_init(void)
306 static int read_key(void)
313 static int read_ffserver_streams(AVFormatContext *s, const char *filename)
318 err = av_open_input_file(&ic, filename, NULL, FFM_PACKET_SIZE, NULL);
321 /* copy stream format */
322 s->nb_streams = ic->nb_streams;
323 for(i=0;i<ic->nb_streams;i++) {
326 st = av_mallocz(sizeof(AVStream));
327 memcpy(st, ic->streams[i], sizeof(AVStream));
331 av_close_input_file(ic);
335 #define MAX_AUDIO_PACKET_SIZE (128 * 1024)
337 static void do_audio_out(AVFormatContext *s,
340 unsigned char *buf, int size)
343 static uint8_t *audio_buf = NULL;
344 static uint8_t *audio_out = NULL;
345 const int audio_out_size= 4*MAX_AUDIO_PACKET_SIZE;
347 int size_out, frame_bytes, ret;
350 /* SC: dynamic allocation of buffers */
352 audio_buf = av_malloc(2*MAX_AUDIO_PACKET_SIZE);
354 audio_out = av_malloc(audio_out_size);
355 if (!audio_buf || !audio_out)
356 return; /* Should signal an error ! */
359 enc = &ost->st->codec;
361 if (ost->audio_resample) {
363 size_out = audio_resample(ost->resample,
364 (short *)buftmp, (short *)buf,
365 size / (ist->st->codec.channels * 2));
366 size_out = size_out * enc->channels * 2;
372 /* now encode as many frames as possible */
373 if (enc->frame_size > 1) {
374 /* output resampled raw samples */
375 fifo_write(&ost->fifo, buftmp, size_out,
378 frame_bytes = enc->frame_size * 2 * enc->channels;
380 while (fifo_read(&ost->fifo, audio_buf, frame_bytes,
381 &ost->fifo.rptr) == 0) {
382 ret = avcodec_encode_audio(enc, audio_out, audio_out_size,
384 av_write_frame(s, ost->index, audio_out, ret);
387 /* output a pcm frame */
388 /* XXX: change encoding codec API to avoid this ? */
389 switch(enc->codec->id) {
390 case CODEC_ID_PCM_S16LE:
391 case CODEC_ID_PCM_S16BE:
392 case CODEC_ID_PCM_U16LE:
393 case CODEC_ID_PCM_U16BE:
396 size_out = size_out >> 1;
399 ret = avcodec_encode_audio(enc, audio_out, size_out,
401 av_write_frame(s, ost->index, audio_out, ret);
405 static void pre_process_video_frame(AVInputStream *ist, AVPicture *picture, void **bufp)
409 AVPicture picture_tmp;
412 dec = &ist->st->codec;
414 /* deinterlace : must be done before any resize */
415 if (do_deinterlace) {
418 /* create temporary picture */
419 size = avpicture_get_size(dec->pix_fmt, dec->width, dec->height);
420 buf = av_malloc(size);
424 picture2 = &picture_tmp;
425 avpicture_fill(picture2, buf, dec->pix_fmt, dec->width, dec->height);
427 if (avpicture_deinterlace(picture2, picture,
428 dec->pix_fmt, dec->width, dec->height) < 0) {
429 /* if error, do not deinterlace */
438 frame_hook_process(picture2, dec->pix_fmt, dec->width, dec->height);
440 if (picture != picture2)
441 *picture = *picture2;
445 /* we begin to correct av delay at this threshold */
446 #define AV_DELAY_MAX 0.100
448 static void do_video_out(AVFormatContext *s,
451 AVPicture *in_picture,
452 int *frame_size, AVOutputStream *audio_sync)
454 int nb_frames, i, ret;
455 AVPicture *final_picture, *formatted_picture;
456 AVPicture picture_format_temp, picture_crop_temp;
457 static uint8_t *video_buffer;
458 uint8_t *buf = NULL, *buf1 = NULL;
459 AVCodecContext *enc, *dec;
461 #define VIDEO_BUFFER_SIZE (1024*1024)
463 enc = &ost->st->codec;
464 dec = &ist->st->codec;
466 /* by default, we output a single frame */
471 /* NOTE: the A/V sync is always done by considering the audio is
472 the master clock. It is suffisant for transcoding or playing,
473 but not for the general case */
475 /* compute the A-V delay and duplicate/remove frames if needed */
476 double adelta, vdelta, av_delay;
478 adelta = audio_sync->sync_ipts - ((double)audio_sync->sync_opts *
479 s->pts_num / s->pts_den);
481 vdelta = ost->sync_ipts - ((double)ost->sync_opts *
482 s->pts_num / s->pts_den);
484 av_delay = adelta - vdelta;
485 // printf("delay=%f\n", av_delay);
486 if (av_delay < -AV_DELAY_MAX)
488 else if (av_delay > AV_DELAY_MAX)
493 vdelta = (double)(ost->st->pts.val) * s->pts_num / s->pts_den - (ost->sync_ipts - ost->sync_ipts_offset);
494 if (vdelta < 100 && vdelta > -100 && ost->sync_ipts_offset) {
495 if (vdelta < -AV_DELAY_MAX)
497 else if (vdelta > AV_DELAY_MAX)
500 ost->sync_ipts_offset -= vdelta;
501 if (!ost->sync_ipts_offset)
502 ost->sync_ipts_offset = 0.000001; /* one microsecond */
506 #if defined(AVSYNC_DEBUG)
507 static char *action[] = { "drop frame", "copy frame", "dup frame" };
509 fprintf(stderr, "Input APTS %12.6f, output APTS %12.6f, ",
510 (double) audio_sync->sync_ipts,
511 (double) audio_sync->st->pts.val * s->pts_num / s->pts_den);
512 fprintf(stderr, "Input VPTS %12.6f, output VPTS %12.6f: %s\n",
513 (double) ost->sync_ipts,
514 (double) ost->st->pts.val * s->pts_num / s->pts_den,
522 video_buffer = av_malloc(VIDEO_BUFFER_SIZE);
526 /* convert pixel format if needed */
527 if (enc->pix_fmt != dec->pix_fmt) {
530 /* create temporary picture */
531 size = avpicture_get_size(enc->pix_fmt, dec->width, dec->height);
532 buf = av_malloc(size);
535 formatted_picture = &picture_format_temp;
536 avpicture_fill(formatted_picture, buf, enc->pix_fmt, dec->width, dec->height);
538 if (img_convert(formatted_picture, enc->pix_fmt,
539 in_picture, dec->pix_fmt,
540 dec->width, dec->height) < 0) {
541 fprintf(stderr, "pixel format conversion not handled\n");
545 formatted_picture = in_picture;
548 /* XXX: resampling could be done before raw format convertion in
549 some cases to go faster */
550 /* XXX: only works for YUV420P */
551 if (ost->video_resample) {
552 final_picture = &ost->pict_tmp;
553 img_resample(ost->img_resample_ctx, final_picture, formatted_picture);
554 } else if (ost->video_crop) {
555 picture_crop_temp.data[0] = formatted_picture->data[0] +
556 (ost->topBand * formatted_picture->linesize[0]) + ost->leftBand;
558 picture_crop_temp.data[1] = formatted_picture->data[1] +
559 ((ost->topBand >> 1) * formatted_picture->linesize[1]) +
560 (ost->leftBand >> 1);
562 picture_crop_temp.data[2] = formatted_picture->data[2] +
563 ((ost->topBand >> 1) * formatted_picture->linesize[2]) +
564 (ost->leftBand >> 1);
566 picture_crop_temp.linesize[0] = formatted_picture->linesize[0];
567 picture_crop_temp.linesize[1] = formatted_picture->linesize[1];
568 picture_crop_temp.linesize[2] = formatted_picture->linesize[2];
569 final_picture = &picture_crop_temp;
571 final_picture = formatted_picture;
573 /* duplicates frame if needed */
574 /* XXX: pb because no interleaving */
575 for(i=0;i<nb_frames;i++) {
576 if (s->oformat->flags & AVFMT_RAWPICTURE) {
577 /* raw pictures are written as AVPicture structure to
578 avoid any copies. We support temorarily the older
580 av_write_frame(s, ost->index,
581 (uint8_t *)final_picture, sizeof(AVPicture));
585 memset(&big_picture, 0, sizeof(AVFrame));
586 *(AVPicture*)&big_picture= *final_picture;
588 /* handles sameq here. This is not correct because it may
589 not be a global option */
591 big_picture.quality = ist->st->quality;
593 big_picture.quality = ost->st->quality;
595 ret = avcodec_encode_video(enc,
596 video_buffer, VIDEO_BUFFER_SIZE,
598 //enc->frame_number = enc->real_pict_num;
599 av_write_frame(s, ost->index, video_buffer, ret);
601 //fprintf(stderr,"\nFrame: %3d %3d size: %5d type: %d",
602 // enc->frame_number-1, enc->real_pict_num, ret,
604 /* if two pass, output log */
605 if (ost->logfile && enc->stats_out) {
606 fprintf(ost->logfile, "%s", enc->stats_out);
616 static double psnr(double d){
617 if(d==0) return INFINITY;
618 return -10.0*log(d)/log(10.0);
621 static void do_video_stats(AVFormatContext *os, AVOutputStream *ost,
624 static FILE *fvstats=NULL;
625 static int64_t total_size = 0;
632 double ti1, bitrate, avg_bitrate;
636 today = localtime(&today2);
637 sprintf(filename, "vstats_%02d%02d%02d.log", today->tm_hour,
640 fvstats = fopen(filename,"w");
648 enc = &ost->st->codec;
649 total_size += frame_size;
650 if (enc->codec_type == CODEC_TYPE_VIDEO) {
651 frame_number = ost->frame_number;
652 fprintf(fvstats, "frame= %5d q= %2.1f ", frame_number, enc->coded_frame->quality);
653 if (enc->flags&CODEC_FLAG_PSNR)
654 fprintf(fvstats, "PSNR= %6.2f ", psnr(enc->coded_frame->error[0]/(enc->width*enc->height*255.0*255.0)));
656 fprintf(fvstats,"f_size= %6d ", frame_size);
657 /* compute pts value */
658 ti1 = (double)ost->st->pts.val * os->pts_num / os->pts_den;
662 bitrate = (double)(frame_size * 8) * enc->frame_rate / enc->frame_rate_base / 1000.0;
663 avg_bitrate = (double)(total_size * 8) / ti1 / 1000.0;
664 fprintf(fvstats, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
665 (double)total_size / 1024, ti1, bitrate, avg_bitrate);
666 fprintf(fvstats,"type= %c\n", av_get_pict_type_char(enc->coded_frame->pict_type));
670 static void print_report(AVFormatContext **output_files,
671 AVOutputStream **ost_table, int nb_ostreams,
676 AVFormatContext *oc, *os;
679 int frame_number, vid, i;
680 double bitrate, ti1, pts;
681 static int64_t last_time = -1;
683 if (!is_last_report) {
685 /* display the report every 0.5 seconds */
686 cur_time = av_gettime();
687 if (last_time == -1) {
688 last_time = cur_time;
691 if ((cur_time - last_time) < 500000)
693 last_time = cur_time;
697 oc = output_files[0];
699 total_size = url_ftell(&oc->pb);
704 for(i=0;i<nb_ostreams;i++) {
706 os = output_files[ost->file_index];
707 enc = &ost->st->codec;
708 if (vid && enc->codec_type == CODEC_TYPE_VIDEO) {
709 sprintf(buf + strlen(buf), "q=%2.1f ",
710 enc->coded_frame->quality);
712 if (!vid && enc->codec_type == CODEC_TYPE_VIDEO) {
713 frame_number = ost->frame_number;
714 sprintf(buf + strlen(buf), "frame=%5d q=%2.1f ",
715 frame_number, enc->coded_frame ? enc->coded_frame->quality : 0);
716 if (enc->flags&CODEC_FLAG_PSNR)
717 sprintf(buf + strlen(buf), "PSNR= %6.2f ", psnr(enc->coded_frame->error[0]/(enc->width*enc->height*255.0*255.0)));
720 /* compute min output value */
721 pts = (double)ost->st->pts.val * os->pts_num / os->pts_den;
722 if ((pts < ti1) && (pts > 0))
727 bitrate = (double)(total_size * 8) / ti1 / 1000.0;
729 sprintf(buf + strlen(buf),
730 "size=%8.0fkB time=%0.1f bitrate=%6.1fkbits/s",
731 (double)total_size / 1024, ti1, bitrate);
733 fprintf(stderr, "%s ", buf);
735 if (is_last_report) {
736 fprintf(stderr, "\n");
738 fprintf(stderr, "\r");
744 * The following code is the main loop of the file converter
746 static int av_encode(AVFormatContext **output_files,
748 AVFormatContext **input_files,
750 AVStreamMap *stream_maps, int nb_stream_maps)
752 int ret, i, j, k, n, nb_istreams = 0, nb_ostreams = 0;
753 AVFormatContext *is, *os;
754 AVCodecContext *codec, *icodec;
755 AVOutputStream *ost, **ost_table = NULL;
756 AVInputStream *ist, **ist_table = NULL;
757 AVInputFile *file_table;
758 AVFormatContext *stream_no_data;
761 file_table= (AVInputFile*) av_mallocz(nb_input_files * sizeof(AVInputFile));
765 /* input stream init */
767 for(i=0;i<nb_input_files;i++) {
769 file_table[i].ist_index = j;
770 file_table[i].nb_streams = is->nb_streams;
775 ist_table = av_mallocz(nb_istreams * sizeof(AVInputStream *));
779 for(i=0;i<nb_istreams;i++) {
780 ist = av_mallocz(sizeof(AVInputStream));
786 for(i=0;i<nb_input_files;i++) {
788 for(k=0;k<is->nb_streams;k++) {
789 ist = ist_table[j++];
790 ist->st = is->streams[k];
793 ist->discard = 1; /* the stream is discarded by default
796 if (ist->st->codec.rate_emu) {
797 ist->start = av_gettime();
803 /* output stream init */
805 for(i=0;i<nb_output_files;i++) {
806 os = output_files[i];
807 nb_ostreams += os->nb_streams;
809 if (nb_stream_maps > 0 && nb_stream_maps != nb_ostreams) {
810 fprintf(stderr, "Number of stream maps must match number of output streams\n");
814 /* Sanity check the mapping args -- do the input files & streams exist? */
815 for(i=0;i<nb_stream_maps;i++) {
816 int fi = stream_maps[i].file_index;
817 int si = stream_maps[i].stream_index;
819 if (fi < 0 || fi > nb_input_files - 1 ||
820 si < 0 || si > file_table[fi].nb_streams - 1) {
821 fprintf(stderr,"Could not find input stream #%d.%d\n", fi, si);
826 ost_table = av_mallocz(sizeof(AVOutputStream *) * nb_ostreams);
829 for(i=0;i<nb_ostreams;i++) {
830 ost = av_mallocz(sizeof(AVOutputStream));
837 for(k=0;k<nb_output_files;k++) {
838 os = output_files[k];
839 for(i=0;i<os->nb_streams;i++) {
841 ost = ost_table[n++];
844 ost->st = os->streams[i];
845 if (nb_stream_maps > 0) {
846 ost->source_index = file_table[stream_maps[n-1].file_index].ist_index +
847 stream_maps[n-1].stream_index;
849 /* Sanity check that the stream types match */
850 if (ist_table[ost->source_index]->st->codec.codec_type != ost->st->codec.codec_type) {
851 fprintf(stderr, "Codec type mismatch for mapping #%d.%d -> #%d.%d\n",
852 stream_maps[n-1].file_index, stream_maps[n-1].stream_index,
853 ost->file_index, ost->index);
858 /* get corresponding input stream index : we select the first one with the right type */
860 for(j=0;j<nb_istreams;j++) {
863 ist->st->codec.codec_type == ost->st->codec.codec_type) {
864 ost->source_index = j;
870 /* try again and reuse existing stream */
871 for(j=0;j<nb_istreams;j++) {
873 if (ist->st->codec.codec_type == ost->st->codec.codec_type) {
874 ost->source_index = j;
879 fprintf(stderr, "Could not find input stream matching output stream #%d.%d\n",
880 ost->file_index, ost->index);
885 ist = ist_table[ost->source_index];
890 /* for each output stream, we compute the right encoding parameters */
891 for(i=0;i<nb_ostreams;i++) {
893 ist = ist_table[ost->source_index];
895 codec = &ost->st->codec;
896 icodec = &ist->st->codec;
898 if (ost->st->stream_copy) {
899 /* if stream_copy is selected, no need to decode or encode */
900 codec->codec_id = icodec->codec_id;
901 codec->codec_type = icodec->codec_type;
902 codec->codec_tag = icodec->codec_tag;
903 codec->bit_rate = icodec->bit_rate;
904 switch(codec->codec_type) {
905 case CODEC_TYPE_AUDIO:
906 codec->sample_rate = icodec->sample_rate;
907 codec->channels = icodec->channels;
909 case CODEC_TYPE_VIDEO:
910 codec->frame_rate = icodec->frame_rate;
911 codec->frame_rate_base = icodec->frame_rate_base;
912 codec->width = icodec->width;
913 codec->height = icodec->height;
919 switch(codec->codec_type) {
920 case CODEC_TYPE_AUDIO:
921 if (fifo_init(&ost->fifo, 2 * MAX_AUDIO_PACKET_SIZE))
924 if (codec->channels == icodec->channels &&
925 codec->sample_rate == icodec->sample_rate) {
926 ost->audio_resample = 0;
928 if (codec->channels != icodec->channels &&
929 icodec->codec_id == CODEC_ID_AC3) {
930 /* Special case for 5:1 AC3 input */
931 /* and mono or stereo output */
932 /* Request specific number of channels */
933 icodec->channels = codec->channels;
934 if (codec->sample_rate == icodec->sample_rate)
935 ost->audio_resample = 0;
937 ost->audio_resample = 1;
938 ost->resample = audio_resample_init(codec->channels, icodec->channels,
940 icodec->sample_rate);
943 printf("Can't resample. Aborting.\n");
947 /* Request specific number of channels */
948 icodec->channels = codec->channels;
950 ost->audio_resample = 1;
951 ost->resample = audio_resample_init(codec->channels, icodec->channels,
953 icodec->sample_rate);
956 printf("Can't resample. Aborting.\n");
961 ist->decoding_needed = 1;
962 ost->encoding_needed = 1;
964 case CODEC_TYPE_VIDEO:
965 if (codec->width == icodec->width &&
966 codec->height == icodec->height &&
967 frame_topBand == 0 &&
968 frame_bottomBand == 0 &&
969 frame_leftBand == 0 &&
970 frame_rightBand == 0)
972 ost->video_resample = 0;
974 } else if ((codec->width == icodec->width -
975 (frame_leftBand + frame_rightBand)) &&
976 (codec->height == icodec->height -
977 (frame_topBand + frame_bottomBand)))
979 ost->video_resample = 0;
981 ost->topBand = frame_topBand;
982 ost->leftBand = frame_leftBand;
985 ost->video_resample = 1;
986 ost->video_crop = 0; // cropping is handled as part of resample
987 buf = av_malloc((codec->width * codec->height * 3) / 2);
990 ost->pict_tmp.data[0] = buf;
991 ost->pict_tmp.data[1] = ost->pict_tmp.data[0] + (codec->width * codec->height);
992 ost->pict_tmp.data[2] = ost->pict_tmp.data[1] + (codec->width * codec->height) / 4;
993 ost->pict_tmp.linesize[0] = codec->width;
994 ost->pict_tmp.linesize[1] = codec->width / 2;
995 ost->pict_tmp.linesize[2] = codec->width / 2;
997 ost->img_resample_ctx = img_resample_full_init(
998 ost->st->codec.width, ost->st->codec.height,
999 ist->st->codec.width, ist->st->codec.height,
1000 frame_topBand, frame_bottomBand,
1001 frame_leftBand, frame_rightBand);
1003 ost->encoding_needed = 1;
1004 ist->decoding_needed = 1;
1010 if (ost->encoding_needed &&
1011 (codec->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2))) {
1012 char logfilename[1024];
1017 snprintf(logfilename, sizeof(logfilename), "%s-%d.log",
1019 pass_logfilename : DEFAULT_PASS_LOGFILENAME, i);
1020 if (codec->flags & CODEC_FLAG_PASS1) {
1021 f = fopen(logfilename, "w");
1023 perror(logfilename);
1028 /* read the log file */
1029 f = fopen(logfilename, "r");
1031 perror(logfilename);
1034 fseek(f, 0, SEEK_END);
1036 fseek(f, 0, SEEK_SET);
1037 logbuffer = av_malloc(size + 1);
1039 fprintf(stderr, "Could not allocate log buffer\n");
1042 fread(logbuffer, 1, size, f);
1044 logbuffer[size] = '\0';
1045 codec->stats_in = logbuffer;
1051 /* dump the file output parameters - cannot be done before in case
1053 for(i=0;i<nb_output_files;i++) {
1054 dump_format(output_files[i], i, output_files[i]->filename, 1);
1057 /* dump the stream mapping */
1058 fprintf(stderr, "Stream mapping:\n");
1059 for(i=0;i<nb_ostreams;i++) {
1061 fprintf(stderr, " Stream #%d.%d -> #%d.%d\n",
1062 ist_table[ost->source_index]->file_index,
1063 ist_table[ost->source_index]->index,
1068 /* open each encoder */
1069 for(i=0;i<nb_ostreams;i++) {
1071 if (ost->encoding_needed) {
1073 codec = avcodec_find_encoder(ost->st->codec.codec_id);
1075 fprintf(stderr, "Unsupported codec for output stream #%d.%d\n",
1076 ost->file_index, ost->index);
1079 if (avcodec_open(&ost->st->codec, codec) < 0) {
1080 fprintf(stderr, "Error while opening codec for stream #%d.%d - maybe incorrect parameters such as bit_rate, rate, width or height\n",
1081 ost->file_index, ost->index);
1087 /* open each decoder */
1088 for(i=0;i<nb_istreams;i++) {
1090 if (ist->decoding_needed) {
1092 codec = avcodec_find_decoder(ist->st->codec.codec_id);
1094 fprintf(stderr, "Unsupported codec (id=%d) for input stream #%d.%d\n",
1095 ist->st->codec.codec_id, ist->file_index, ist->index);
1098 if (avcodec_open(&ist->st->codec, codec) < 0) {
1099 fprintf(stderr, "Error while opening codec for input stream #%d.%d\n",
1100 ist->file_index, ist->index);
1103 //if (ist->st->codec.codec_type == CODEC_TYPE_VIDEO)
1104 // ist->st->codec.flags |= CODEC_FLAG_REPEAT_FIELD;
1105 ist->frame_decoded = 1;
1110 for(i=0;i<nb_istreams;i++) {
1112 is = input_files[ist->file_index];
1114 switch (ist->st->codec.codec_type) {
1115 case CODEC_TYPE_AUDIO:
1116 av_frac_init(&ist->next_pts,
1117 0, 0, is->pts_num * ist->st->codec.sample_rate);
1119 case CODEC_TYPE_VIDEO:
1120 av_frac_init(&ist->next_pts,
1121 0, 0, is->pts_num * ist->st->codec.frame_rate);
1128 /* compute buffer size max (should use a complete heuristic) */
1129 for(i=0;i<nb_input_files;i++) {
1130 file_table[i].buffer_size_max = 2048;
1133 /* open files and write file headers */
1134 for(i=0;i<nb_output_files;i++) {
1135 os = output_files[i];
1136 if (av_write_header(os) < 0) {
1137 fprintf(stderr, "Could not write header for output file #%d (incorrect codec paramters ?)\n", i);
1143 #ifndef CONFIG_WIN32
1145 fprintf(stderr, "Press [q] to stop encoding\n");
1152 #ifndef CONFIG_WIN32
1153 for(; received_sigterm == 0;) {
1157 int file_index, ist_index;
1162 int data_size, got_picture;
1164 short samples[AVCODEC_MAX_AUDIO_FRAME_SIZE / 2];
1165 void *buffer_to_free;
1169 /* if 'q' pressed, exits */
1171 /* read_key() returns 0 on EOF */
1177 /* select the stream that we must read now by looking at the
1178 smallest output pts */
1181 for(i=0;i<nb_ostreams;i++) {
1184 os = output_files[ost->file_index];
1185 ist = ist_table[ost->source_index];
1186 pts = (double)ost->st->pts.val * os->pts_num / os->pts_den;
1187 if (!file_table[ist->file_index].eof_reached &&
1190 file_index = ist->file_index;
1193 /* if none, if is finished */
1194 if (file_index < 0) {
1198 /* finish if recording time exhausted */
1199 if (recording_time > 0 && pts_min >= (recording_time / 1000000.0))
1202 /* read a packet from it and output it in the fifo */
1203 is = input_files[file_index];
1204 if (av_read_packet(is, &pkt) < 0) {
1205 file_table[file_index].eof_reached = 1;
1209 stream_no_data = is;
1214 printf("stream #%d, size=%d:\n", pkt.stream_index, pkt.size);
1215 av_hex_dump(pkt.data, pkt.size);
1217 /* the following test is needed in case new streams appear
1218 dynamically in stream : we ignore them */
1219 if (pkt.stream_index >= file_table[file_index].nb_streams)
1220 goto discard_packet;
1221 ist_index = file_table[file_index].ist_index + pkt.stream_index;
1222 ist = ist_table[ist_index];
1224 goto discard_packet;
1226 // printf("read #%d.%d size=%d\n", ist->file_index, ist->index, pkt.size);
1231 /* decode the packet if needed */
1232 data_buf = NULL; /* fail safe */
1234 if (ist->decoding_needed) {
1235 /* NOTE1: we only take into account the PTS if a new
1236 frame has begun (MPEG semantics) */
1237 /* NOTE2: even if the fraction is not initialized,
1238 av_frac_set can be used to set the integer part */
1239 if (ist->frame_decoded) {
1240 /* If pts is unavailable -- we have to use synthetic one */
1241 if( pkt.pts != AV_NOPTS_VALUE )
1243 ist->pts = ist->next_pts.val = pkt.pts;
1247 ist->pts = ist->next_pts.val;
1249 ist->frame_decoded = 0;
1252 switch(ist->st->codec.codec_type) {
1253 case CODEC_TYPE_AUDIO:
1254 /* XXX: could avoid copy if PCM 16 bits with same
1255 endianness as CPU */
1256 ret = avcodec_decode_audio(&ist->st->codec, samples, &data_size,
1260 /* Some bug in mpeg audio decoder gives */
1261 /* data_size < 0, it seems they are overflows */
1262 if (data_size <= 0) {
1263 /* no audio frame */
1268 data_buf = (uint8_t *)samples;
1269 av_frac_add(&ist->next_pts,
1270 is->pts_den * data_size / (2 * ist->st->codec.channels));
1272 case CODEC_TYPE_VIDEO:
1274 AVFrame big_picture;
1276 data_size = (ist->st->codec.width * ist->st->codec.height * 3) / 2;
1277 ret = avcodec_decode_video(&ist->st->codec,
1278 &big_picture, &got_picture, ptr, len);
1279 picture= *(AVPicture*)&big_picture;
1280 ist->st->quality= big_picture.quality;
1283 fprintf(stderr, "Error while decoding stream #%d.%d\n",
1284 ist->file_index, ist->index);
1285 av_free_packet(&pkt);
1289 /* no picture yet */
1294 av_frac_add(&ist->next_pts,
1295 is->pts_den * ist->st->codec.frame_rate_base);
1310 if (ist->st->codec.codec_type == CODEC_TYPE_VIDEO) {
1311 pre_process_video_frame(ist, &picture, &buffer_to_free);
1314 ist->frame_decoded = 1;
1316 /* frame rate emulation */
1317 if (ist->st->codec.rate_emu) {
1318 int64_t pts = av_rescale((int64_t) ist->frame * ist->st->codec.frame_rate_base, 1000000, ist->st->codec.frame_rate);
1319 int64_t now = av_gettime() - ist->start;
1327 /* mpeg PTS deordering : if it is a P or I frame, the PTS
1328 is the one of the next displayed one */
1329 /* XXX: add mpeg4 too ? */
1330 if (ist->st->codec.codec_id == CODEC_ID_MPEG1VIDEO) {
1331 if (ist->st->codec.pict_type != B_TYPE) {
1333 tmp = ist->last_ip_pts;
1334 ist->last_ip_pts = ist->frac_pts.val;
1335 ist->frac_pts.val = tmp;
1339 /* transcode raw format, encode packets and output them */
1341 for(i=0;i<nb_ostreams;i++) {
1345 if (ost->source_index == ist_index) {
1346 os = output_files[ost->file_index];
1349 printf("%d: got pts=%f %f\n", i, pkt.pts / 90000.0,
1350 (ist->pts - ost->st->pts.val) / 90000.0);
1352 /* set the input output pts pairs */
1353 ost->sync_ipts = (double)ist->pts * is->pts_num /
1355 /* XXX: take into account the various fifos,
1356 in particular for audio */
1357 ost->sync_opts = ost->st->pts.val;
1358 //printf("ipts=%lld sync_ipts=%f sync_opts=%lld pts.val=%lld pkt.pts=%lld\n", ist->pts, ost->sync_ipts, ost->sync_opts, ost->st->pts.val, pkt.pts);
1360 if (ost->encoding_needed) {
1361 switch(ost->st->codec.codec_type) {
1362 case CODEC_TYPE_AUDIO:
1363 do_audio_out(os, ost, ist, data_buf, data_size);
1365 case CODEC_TYPE_VIDEO:
1366 /* find an audio stream for synchro */
1369 AVOutputStream *audio_sync, *ost1;
1371 for(i=0;i<nb_ostreams;i++) {
1372 ost1 = ost_table[i];
1373 if (ost1->file_index == ost->file_index &&
1374 ost1->st->codec.codec_type == CODEC_TYPE_AUDIO) {
1380 do_video_out(os, ost, ist, &picture, &frame_size, audio_sync);
1381 if (do_vstats && frame_size)
1382 do_video_stats(os, ost, frame_size);
1391 /* no reencoding needed : output the packet directly */
1392 /* force the input stream PTS */
1394 memset(&avframe, 0, sizeof(AVFrame));
1395 ost->st->codec.coded_frame= &avframe;
1396 avframe.key_frame = pkt.flags & PKT_FLAG_KEY;
1398 av_write_frame(os, ost->index, data_buf, data_size);
1399 ost->st->codec.frame_number++;
1400 ost->frame_number++;
1404 av_free(buffer_to_free);
1407 av_free_packet(&pkt);
1409 /* dump report by using the output first video and audio streams */
1410 print_report(output_files, ost_table, nb_ostreams, 0);
1414 /* dump report by using the first video and audio streams */
1415 print_report(output_files, ost_table, nb_ostreams, 1);
1417 /* close each encoder */
1418 for(i=0;i<nb_ostreams;i++) {
1420 if (ost->encoding_needed) {
1421 av_freep(&ost->st->codec.stats_in);
1422 avcodec_close(&ost->st->codec);
1426 /* close each decoder */
1427 for(i=0;i<nb_istreams;i++) {
1429 if (ist->decoding_needed) {
1430 avcodec_close(&ist->st->codec);
1435 /* write the trailer if needed and close file */
1436 for(i=0;i<nb_output_files;i++) {
1437 os = output_files[i];
1438 av_write_trailer(os);
1444 av_free(file_table);
1447 for(i=0;i<nb_istreams;i++) {
1454 for(i=0;i<nb_ostreams;i++) {
1458 fclose(ost->logfile);
1459 ost->logfile = NULL;
1461 fifo_free(&ost->fifo); /* works even if fifo is not
1462 initialized but set to zero */
1463 av_free(ost->pict_tmp.data[0]);
1464 if (ost->video_resample)
1465 img_resample_close(ost->img_resample_ctx);
1466 if (ost->audio_resample)
1467 audio_resample_close(ost->resample);
1480 int file_read(const char *filename)
1483 unsigned char buffer[1024];
1486 if (url_open(&h, filename, O_RDONLY) < 0) {
1487 printf("could not open '%s'\n", filename);
1491 len = url_read(h, buffer, sizeof(buffer));
1494 for(i=0;i<len;i++) putchar(buffer[i]);
1501 static void opt_image_format(const char *arg)
1505 for(f = first_image_format; f != NULL; f = f->next) {
1506 if (!strcmp(arg, f->name))
1510 fprintf(stderr, "Unknown image format: '%s'\n", arg);
1516 static void opt_format(const char *arg)
1518 /* compatibility stuff for pgmyuv */
1519 if (!strcmp(arg, "pgmyuv")) {
1520 opt_image_format(arg);
1524 file_iformat = av_find_input_format(arg);
1525 file_oformat = guess_format(arg, NULL, NULL);
1526 if (!file_iformat && !file_oformat) {
1527 fprintf(stderr, "Unknown input or output format: %s\n", arg);
1532 static void opt_video_bitrate(const char *arg)
1534 video_bit_rate = atoi(arg) * 1000;
1537 static void opt_video_bitrate_tolerance(const char *arg)
1539 video_bit_rate_tolerance = atoi(arg) * 1000;
1542 static void opt_video_bitrate_max(const char *arg)
1544 video_rc_max_rate = atoi(arg) * 1000;
1547 static void opt_video_bitrate_min(const char *arg)
1549 video_rc_min_rate = atoi(arg) * 1000;
1552 static void opt_video_buffer_size(const char *arg)
1554 video_rc_buffer_size = atoi(arg) * 1000;
1557 static void opt_video_rc_eq(char *arg)
1562 static void opt_video_rc_override_string(char *arg)
1564 video_rc_override_string = arg;
1568 static void opt_workaround_bugs(const char *arg)
1570 workaround_bugs = atoi(arg);
1573 static void opt_dct_algo(const char *arg)
1575 dct_algo = atoi(arg);
1578 static void opt_idct_algo(const char *arg)
1580 idct_algo = atoi(arg);
1584 static void opt_error_resilience(const char *arg)
1586 error_resilience = atoi(arg);
1589 static void opt_error_concealment(const char *arg)
1591 error_concealment = atoi(arg);
1594 static void opt_debug(const char *arg)
1599 static void opt_frame_rate(const char *arg)
1601 if (parse_frame_rate(&frame_rate, &frame_rate_base, arg) < 0) {
1602 fprintf(stderr, "Incorrect frame rate\n");
1607 static void opt_frame_crop_top(const char *arg)
1609 frame_topBand = atoi(arg);
1610 if (frame_topBand < 0) {
1611 fprintf(stderr, "Incorrect top crop size\n");
1614 if ((frame_topBand % 2) != 0) {
1615 fprintf(stderr, "Top crop size must be a multiple of 2\n");
1618 if ((frame_topBand) >= frame_height){
1619 fprintf(stderr, "Vertical crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n");
1622 frame_height -= frame_topBand;
1625 static void opt_frame_crop_bottom(const char *arg)
1627 frame_bottomBand = atoi(arg);
1628 if (frame_bottomBand < 0) {
1629 fprintf(stderr, "Incorrect bottom crop size\n");
1632 if ((frame_bottomBand % 2) != 0) {
1633 fprintf(stderr, "Bottom crop size must be a multiple of 2\n");
1636 if ((frame_bottomBand) >= frame_height){
1637 fprintf(stderr, "Vertical crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n");
1640 frame_height -= frame_bottomBand;
1643 static void opt_frame_crop_left(const char *arg)
1645 frame_leftBand = atoi(arg);
1646 if (frame_leftBand < 0) {
1647 fprintf(stderr, "Incorrect left crop size\n");
1650 if ((frame_leftBand % 2) != 0) {
1651 fprintf(stderr, "Left crop size must be a multiple of 2\n");
1654 if ((frame_leftBand) >= frame_width){
1655 fprintf(stderr, "Horizontal crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n");
1658 frame_width -= frame_leftBand;
1661 static void opt_frame_crop_right(const char *arg)
1663 frame_rightBand = atoi(arg);
1664 if (frame_rightBand < 0) {
1665 fprintf(stderr, "Incorrect right crop size\n");
1668 if ((frame_rightBand % 2) != 0) {
1669 fprintf(stderr, "Right crop size must be a multiple of 2\n");
1672 if ((frame_rightBand) >= frame_width){
1673 fprintf(stderr, "Horizontal crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n");
1676 frame_width -= frame_rightBand;
1679 static void opt_frame_size(const char *arg)
1681 if (parse_image_size(&frame_width, &frame_height, arg) < 0) {
1682 fprintf(stderr, "Incorrect frame size\n");
1685 if ((frame_width % 2) != 0 || (frame_height % 2) != 0) {
1686 fprintf(stderr, "Frame size must be a multiple of 2\n");
1691 static void opt_frame_pix_fmt(const char *arg)
1693 frame_pix_fmt = avcodec_get_pix_fmt(arg);
1696 static void opt_frame_aspect_ratio(const char *arg)
1702 p = strchr(arg, ':');
1704 x = strtol(arg, (char **)&arg, 10);
1706 y = strtol(arg+1, (char **)&arg, 10);
1708 ar = (double)x / (double)y;
1710 ar = strtod(arg, (char **)&arg);
1713 fprintf(stderr, "Incorrect aspect ratio specification.\n");
1716 frame_aspect_ratio = ar;
1719 static void opt_gop_size(const char *arg)
1721 gop_size = atoi(arg);
1724 static void opt_b_frames(const char *arg)
1726 b_frames = atoi(arg);
1727 if (b_frames > FF_MAX_B_FRAMES) {
1728 fprintf(stderr, "\nCannot have more than %d B frames, increase FF_MAX_B_FRAMES.\n", FF_MAX_B_FRAMES);
1730 } else if (b_frames < 1) {
1731 fprintf(stderr, "\nNumber of B frames must be higher than 0\n");
1736 static void opt_mb_decision(const char *arg)
1738 mb_decision = atoi(arg);
1741 static void opt_qscale(const char *arg)
1743 video_qscale = atoi(arg);
1744 if (video_qscale < 0 ||
1745 video_qscale > 31) {
1746 fprintf(stderr, "qscale must be >= 1 and <= 31\n");
1751 static void opt_qmin(const char *arg)
1753 video_qmin = atoi(arg);
1754 if (video_qmin < 0 ||
1756 fprintf(stderr, "qmin must be >= 1 and <= 31\n");
1761 static void opt_qmax(const char *arg)
1763 video_qmax = atoi(arg);
1764 if (video_qmax < 0 ||
1766 fprintf(stderr, "qmax must be >= 1 and <= 31\n");
1771 static void opt_mb_qmin(const char *arg)
1773 video_mb_qmin = atoi(arg);
1774 if (video_mb_qmin < 0 ||
1775 video_mb_qmin > 31) {
1776 fprintf(stderr, "qmin must be >= 1 and <= 31\n");
1781 static void opt_mb_qmax(const char *arg)
1783 video_mb_qmax = atoi(arg);
1784 if (video_mb_qmax < 0 ||
1785 video_mb_qmax > 31) {
1786 fprintf(stderr, "qmax must be >= 1 and <= 31\n");
1791 static void opt_qdiff(const char *arg)
1793 video_qdiff = atoi(arg);
1794 if (video_qdiff < 0 ||
1796 fprintf(stderr, "qdiff must be >= 1 and <= 31\n");
1801 static void opt_qblur(const char *arg)
1803 video_qblur = atof(arg);
1806 static void opt_qcomp(const char *arg)
1808 video_qcomp = atof(arg);
1811 static void opt_rc_initial_cplx(const char *arg)
1813 video_rc_initial_cplx = atof(arg);
1815 static void opt_b_qfactor(const char *arg)
1817 video_b_qfactor = atof(arg);
1819 static void opt_i_qfactor(const char *arg)
1821 video_i_qfactor = atof(arg);
1823 static void opt_b_qoffset(const char *arg)
1825 video_b_qoffset = atof(arg);
1827 static void opt_i_qoffset(const char *arg)
1829 video_i_qoffset = atof(arg);
1832 static void opt_packet_size(const char *arg)
1834 packet_size= atoi(arg);
1837 static void opt_strict(const char *arg)
1842 static void opt_audio_bitrate(const char *arg)
1844 audio_bit_rate = atoi(arg) * 1000;
1847 static void opt_audio_rate(const char *arg)
1849 audio_sample_rate = atoi(arg);
1852 static void opt_audio_channels(const char *arg)
1854 audio_channels = atoi(arg);
1857 static void opt_video_device(const char *arg)
1859 video_device = av_strdup(arg);
1862 static void opt_video_channel(const char *arg)
1864 video_channel = strtol(arg, NULL, 0);
1867 static void opt_video_standard(const char *arg)
1869 video_standard = av_strdup(arg);
1872 static void opt_audio_device(const char *arg)
1874 audio_device = av_strdup(arg);
1877 static void opt_dv1394(const char *arg)
1879 video_grab_format = "dv1394";
1880 audio_grab_format = NULL;
1883 static void opt_audio_codec(const char *arg)
1887 if (!strcmp(arg, "copy")) {
1888 audio_stream_copy = 1;
1892 if (!strcmp(p->name, arg) && p->type == CODEC_TYPE_AUDIO)
1897 fprintf(stderr, "Unknown audio codec '%s'\n", arg);
1900 audio_codec_id = p->id;
1905 static void add_frame_hooker(const char *arg)
1910 char *args = av_strdup(arg);
1912 argv[0] = strtok(args, " ");
1913 while (argc < 62 && (argv[++argc] = strtok(NULL, " "))) {
1916 i = frame_hook_add(argc, argv);
1919 fprintf(stderr, "Failed to add video hook function: %s\n", arg);
1924 const char *motion_str[] = {
1934 static void opt_motion_estimation(const char *arg)
1940 fprintf(stderr, "Unknown motion estimation method '%s'\n", arg);
1943 if (!strcmp(*p, arg))
1947 me_method = (p - motion_str) + 1;
1950 static void opt_video_codec(const char *arg)
1954 if (!strcmp(arg, "copy")) {
1955 video_stream_copy = 1;
1959 if (!strcmp(p->name, arg) && p->type == CODEC_TYPE_VIDEO)
1964 fprintf(stderr, "Unknown video codec '%s'\n", arg);
1967 video_codec_id = p->id;
1972 static void opt_map(const char *arg)
1978 m = &stream_maps[nb_stream_maps++];
1980 m->file_index = strtol(arg, (char **)&p, 0);
1984 m->stream_index = strtol(p, (char **)&p, 0);
1987 static void opt_recording_time(const char *arg)
1989 recording_time = parse_date(arg, 1);
1992 static void opt_input_file(const char *filename)
1994 AVFormatContext *ic;
1995 AVFormatParameters params, *ap = ¶ms;
1996 int err, i, ret, rfps, rfps_base;
1998 if (!strcmp(filename, "-"))
2001 using_stdin |= !strcmp(filename, "pipe:" ) ||
2002 !strcmp( filename, "/dev/stdin" );
2004 /* get default parameters from command line */
2005 memset(ap, 0, sizeof(*ap));
2006 ap->sample_rate = audio_sample_rate;
2007 ap->channels = audio_channels;
2008 ap->frame_rate = frame_rate;
2009 ap->frame_rate_base = frame_rate_base;
2010 ap->width = frame_width;
2011 ap->height = frame_height;
2012 ap->image_format = image_format;
2013 ap->pix_fmt = frame_pix_fmt;
2015 /* open the input file with generic libav function */
2016 err = av_open_input_file(&ic, filename, file_iformat, 0, ap);
2018 print_error(filename, err);
2022 /* If not enough info to get the stream parameters, we decode the
2023 first frames to get it. (used in mpeg case for example) */
2024 ret = av_find_stream_info(ic);
2026 fprintf(stderr, "%s: could not find codec parameters\n", filename);
2030 /* update the current parameters so that they match the one of the input stream */
2031 for(i=0;i<ic->nb_streams;i++) {
2032 AVCodecContext *enc = &ic->streams[i]->codec;
2033 switch(enc->codec_type) {
2034 case CODEC_TYPE_AUDIO:
2035 //fprintf(stderr, "\nInput Audio channels: %d", enc->channels);
2036 audio_channels = enc->channels;
2037 audio_sample_rate = enc->sample_rate;
2039 case CODEC_TYPE_VIDEO:
2040 frame_height = enc->height;
2041 frame_width = enc->width;
2042 frame_aspect_ratio = enc->aspect_ratio;
2043 frame_pix_fmt = enc->pix_fmt;
2044 rfps = ic->streams[i]->r_frame_rate;
2045 rfps_base = ic->streams[i]->r_frame_rate_base;
2046 enc->workaround_bugs = workaround_bugs;
2047 enc->error_resilience = error_resilience;
2048 enc->error_concealment = error_concealment;
2049 enc->idct_algo= idct_algo;
2051 /* if(enc->codec->capabilities & CODEC_CAP_TRUNCATED)
2052 enc->flags|= CODEC_FLAG_TRUNCATED; */
2053 if(/*enc->codec_id==CODEC_ID_MPEG4 || */enc->codec_id==CODEC_ID_MPEG1VIDEO || enc->codec_id==CODEC_ID_H264)
2054 enc->flags|= CODEC_FLAG_TRUNCATED;
2057 enc->flags|= CODEC_FLAG_BITEXACT;
2059 assert(enc->frame_rate_base == rfps_base); // should be true for now
2060 if (enc->frame_rate != rfps) {
2061 fprintf(stderr,"\nSeems that stream %d comes from film source: %2.2f->%2.2f\n",
2062 i, (float)enc->frame_rate / enc->frame_rate_base,
2063 (float)rfps / rfps_base);
2065 /* update the current frame rate to match the stream frame rate */
2067 frame_rate_base = rfps_base;
2069 enc->rate_emu = rate_emu;
2076 input_files[nb_input_files] = ic;
2077 /* dump the file content */
2078 dump_format(ic, nb_input_files, filename, 0);
2080 file_iformat = NULL;
2081 file_oformat = NULL;
2082 image_format = NULL;
2087 static void check_audio_video_inputs(int *has_video_ptr, int *has_audio_ptr)
2089 int has_video, has_audio, i, j;
2090 AVFormatContext *ic;
2094 for(j=0;j<nb_input_files;j++) {
2095 ic = input_files[j];
2096 for(i=0;i<ic->nb_streams;i++) {
2097 AVCodecContext *enc = &ic->streams[i]->codec;
2098 switch(enc->codec_type) {
2099 case CODEC_TYPE_AUDIO:
2102 case CODEC_TYPE_VIDEO:
2110 *has_video_ptr = has_video;
2111 *has_audio_ptr = has_audio;
2114 static void opt_output_file(const char *filename)
2117 AVFormatContext *oc;
2118 int use_video, use_audio, nb_streams, input_has_video, input_has_audio;
2120 AVFormatParameters params, *ap = ¶ms;
2122 if (!strcmp(filename, "-"))
2125 oc = av_mallocz(sizeof(AVFormatContext));
2127 if (!file_oformat) {
2128 file_oformat = guess_format(NULL, filename, NULL);
2129 if (!file_oformat) {
2130 fprintf(stderr, "Unable for find a suitable output format for '%s'\n",
2136 oc->oformat = file_oformat;
2138 if (!strcmp(file_oformat->name, "ffm") &&
2139 strstart(filename, "http:", NULL)) {
2140 /* special case for files sent to ffserver: we get the stream
2141 parameters from ffserver */
2142 if (read_ffserver_streams(oc, filename) < 0) {
2143 fprintf(stderr, "Could not read stream parameters from '%s'\n", filename);
2147 use_video = file_oformat->video_codec != CODEC_ID_NONE;
2148 use_audio = file_oformat->audio_codec != CODEC_ID_NONE;
2150 /* disable if no corresponding type found and at least one
2152 if (nb_input_files > 0) {
2153 check_audio_video_inputs(&input_has_video, &input_has_audio);
2154 if (!input_has_video)
2156 if (!input_has_audio)
2160 /* manual disable */
2161 if (audio_disable) {
2164 if (video_disable) {
2170 AVCodecContext *video_enc;
2172 st = av_mallocz(sizeof(AVStream));
2174 fprintf(stderr, "Could not alloc stream\n");
2177 avcodec_get_context_defaults(&st->codec);
2179 video_enc = &st->codec;
2180 if (video_stream_copy) {
2181 st->stream_copy = 1;
2182 video_enc->codec_type = CODEC_TYPE_VIDEO;
2187 codec_id = file_oformat->video_codec;
2188 if (video_codec_id != CODEC_ID_NONE)
2189 codec_id = video_codec_id;
2191 video_enc->codec_id = codec_id;
2193 video_enc->bit_rate = video_bit_rate;
2194 video_enc->bit_rate_tolerance = video_bit_rate_tolerance;
2195 video_enc->frame_rate = frame_rate;
2196 video_enc->frame_rate_base = frame_rate_base;
2198 video_enc->width = frame_width;
2199 video_enc->height = frame_height;
2200 video_enc->aspect_ratio = frame_aspect_ratio;
2201 video_enc->pix_fmt = frame_pix_fmt;
2204 video_enc->gop_size = gop_size;
2206 video_enc->gop_size = 0;
2207 if (video_qscale || same_quality) {
2208 video_enc->flags |= CODEC_FLAG_QSCALE;
2209 st->quality = video_qscale;
2213 video_enc->flags |= CODEC_FLAG_BITEXACT;
2215 video_enc->mb_decision = mb_decision;
2218 video_enc->flags |= CODEC_FLAG_H263P_UMV;
2221 video_enc->flags |= CODEC_FLAG_H263P_AIC;
2224 video_enc->mb_decision = FF_MB_DECISION_BITS; //FIXME remove
2225 video_enc->flags |= CODEC_FLAG_4MV;
2229 video_enc->flags |= CODEC_FLAG_PART;
2233 video_enc->max_b_frames = b_frames;
2234 video_enc->b_frame_strategy = 0;
2235 video_enc->b_quant_factor = 2.0;
2238 video_enc->qmin = video_qmin;
2239 video_enc->qmax = video_qmax;
2240 video_enc->mb_qmin = video_mb_qmin;
2241 video_enc->mb_qmax = video_mb_qmax;
2242 video_enc->max_qdiff = video_qdiff;
2243 video_enc->qblur = video_qblur;
2244 video_enc->qcompress = video_qcomp;
2245 video_enc->rc_eq = video_rc_eq;
2246 video_enc->debug= debug;
2248 p= video_rc_override_string;
2251 int e=sscanf(p, "%d,%d,%d", &start, &end, &q);
2253 fprintf(stderr, "error parsing rc_override\n");
2256 video_enc->rc_override=
2257 av_realloc(video_enc->rc_override,
2258 sizeof(RcOverride)*(i+1));
2259 video_enc->rc_override[i].start_frame= start;
2260 video_enc->rc_override[i].end_frame = end;
2262 video_enc->rc_override[i].qscale= q;
2263 video_enc->rc_override[i].quality_factor= 1.0;
2266 video_enc->rc_override[i].qscale= 0;
2267 video_enc->rc_override[i].quality_factor= -q/100.0;
2272 video_enc->rc_override_count=i;
2274 video_enc->rc_max_rate = video_rc_max_rate;
2275 video_enc->rc_min_rate = video_rc_min_rate;
2276 video_enc->rc_buffer_size = video_rc_buffer_size;
2277 video_enc->rc_buffer_aggressivity= video_rc_buffer_aggressivity;
2278 video_enc->rc_initial_cplx= video_rc_initial_cplx;
2279 video_enc->i_quant_factor = video_i_qfactor;
2280 video_enc->b_quant_factor = video_b_qfactor;
2281 video_enc->i_quant_offset = video_i_qoffset;
2282 video_enc->b_quant_offset = video_b_qoffset;
2283 video_enc->dct_algo = dct_algo;
2284 video_enc->idct_algo = idct_algo;
2285 video_enc->strict_std_compliance = strict;
2287 video_enc->rtp_mode= 1;
2288 video_enc->rtp_payload_size= packet_size;
2292 video_enc->flags|= CODEC_FLAG_PSNR;
2294 video_enc->me_method = me_method;
2299 video_enc->flags |= CODEC_FLAG_PASS1;
2301 video_enc->flags |= CODEC_FLAG_PASS2;
2305 oc->streams[nb_streams] = st;
2310 AVCodecContext *audio_enc;
2312 st = av_mallocz(sizeof(AVStream));
2314 fprintf(stderr, "Could not alloc stream\n");
2317 avcodec_get_context_defaults(&st->codec);
2319 audio_enc = &st->codec;
2320 audio_enc->codec_type = CODEC_TYPE_AUDIO;
2321 if (audio_stream_copy) {
2322 st->stream_copy = 1;
2324 codec_id = file_oformat->audio_codec;
2325 if (audio_codec_id != CODEC_ID_NONE)
2326 codec_id = audio_codec_id;
2327 audio_enc->codec_id = codec_id;
2329 audio_enc->bit_rate = audio_bit_rate;
2330 audio_enc->sample_rate = audio_sample_rate;
2331 /* For audio codecs other than AC3 we limit */
2332 /* the number of coded channels to stereo */
2333 if (audio_channels > 2 && codec_id != CODEC_ID_AC3) {
2334 audio_enc->channels = 2;
2336 audio_enc->channels = audio_channels;
2338 oc->streams[nb_streams] = st;
2342 oc->nb_streams = nb_streams;
2345 fprintf(stderr, "No audio or video streams available\n");
2350 pstrcpy(oc->title, sizeof(oc->title), str_title);
2352 pstrcpy(oc->author, sizeof(oc->author), str_author);
2354 pstrcpy(oc->copyright, sizeof(oc->copyright), str_copyright);
2356 pstrcpy(oc->comment, sizeof(oc->comment), str_comment);
2359 output_files[nb_output_files++] = oc;
2361 strcpy(oc->filename, filename);
2363 /* check filename in case of an image number is expected */
2364 if (oc->oformat->flags & AVFMT_NEEDNUMBER) {
2365 if (filename_number_test(oc->filename) < 0) {
2366 print_error(oc->filename, AVERROR_NUMEXPECTED);
2371 if (!(oc->oformat->flags & AVFMT_NOFILE)) {
2372 /* test if it already exists to avoid loosing precious files */
2373 if (!file_overwrite &&
2374 (strchr(filename, ':') == NULL ||
2375 strstart(filename, "file:", NULL))) {
2376 if (url_exist(filename)) {
2379 if ( !using_stdin ) {
2380 fprintf(stderr,"File '%s' already exists. Overwrite ? [y/N] ", filename);
2383 if (toupper(c) != 'Y') {
2384 fprintf(stderr, "Not overwriting - exiting\n");
2389 fprintf(stderr,"File '%s' already exists. Exiting.\n", filename);
2396 if (url_fopen(&oc->pb, filename, URL_WRONLY) < 0) {
2397 fprintf(stderr, "Could not open '%s'\n", filename);
2402 memset(ap, 0, sizeof(*ap));
2403 ap->image_format = image_format;
2404 if (av_set_parameters(oc, ap) < 0) {
2405 fprintf(stderr, "%s: Invalid encoding parameters\n",
2410 /* reset some options */
2411 file_oformat = NULL;
2412 file_iformat = NULL;
2413 image_format = NULL;
2416 audio_codec_id = CODEC_ID_NONE;
2417 video_codec_id = CODEC_ID_NONE;
2418 audio_stream_copy = 0;
2419 video_stream_copy = 0;
2422 /* prepare dummy protocols for grab */
2423 static void prepare_grab(void)
2425 int has_video, has_audio, i, j;
2426 AVFormatContext *oc;
2427 AVFormatContext *ic;
2428 AVFormatParameters vp1, *vp = &vp1;
2429 AVFormatParameters ap1, *ap = &ap1;
2431 /* see if audio/video inputs are needed */
2434 memset(ap, 0, sizeof(*ap));
2435 memset(vp, 0, sizeof(*vp));
2436 for(j=0;j<nb_output_files;j++) {
2437 oc = output_files[j];
2438 for(i=0;i<oc->nb_streams;i++) {
2439 AVCodecContext *enc = &oc->streams[i]->codec;
2440 switch(enc->codec_type) {
2441 case CODEC_TYPE_AUDIO:
2442 if (enc->sample_rate > ap->sample_rate)
2443 ap->sample_rate = enc->sample_rate;
2444 if (enc->channels > ap->channels)
2445 ap->channels = enc->channels;
2448 case CODEC_TYPE_VIDEO:
2449 if (enc->width > vp->width)
2450 vp->width = enc->width;
2451 if (enc->height > vp->height)
2452 vp->height = enc->height;
2454 assert(enc->frame_rate_base == DEFAULT_FRAME_RATE_BASE);
2455 if (enc->frame_rate > vp->frame_rate){
2456 vp->frame_rate = enc->frame_rate;
2457 vp->frame_rate_base = enc->frame_rate_base;
2467 if (has_video == 0 && has_audio == 0) {
2468 fprintf(stderr, "Output file must have at least one audio or video stream\n");
2473 AVInputFormat *fmt1;
2474 fmt1 = av_find_input_format(video_grab_format);
2475 vp->device = video_device;
2476 vp->channel = video_channel;
2477 vp->standard = video_standard;
2478 if (av_open_input_file(&ic, "", fmt1, 0, vp) < 0) {
2479 fprintf(stderr, "Could not find video grab device\n");
2482 /* by now video grab has one stream */
2483 ic->streams[0]->r_frame_rate = vp->frame_rate;
2484 ic->streams[0]->r_frame_rate_base = vp->frame_rate_base;
2485 input_files[nb_input_files] = ic;
2486 dump_format(ic, nb_input_files, "", 0);
2489 if (has_audio && audio_grab_format) {
2490 AVInputFormat *fmt1;
2491 fmt1 = av_find_input_format(audio_grab_format);
2492 ap->device = audio_device;
2493 if (av_open_input_file(&ic, "", fmt1, 0, ap) < 0) {
2494 fprintf(stderr, "Could not find audio grab device\n");
2497 input_files[nb_input_files] = ic;
2498 dump_format(ic, nb_input_files, "", 0);
2503 /* same option as mencoder */
2504 static void opt_pass(const char *pass_str)
2507 pass = atoi(pass_str);
2508 if (pass != 1 && pass != 2) {
2509 fprintf(stderr, "pass number can be only 1 or 2\n");
2515 #if defined(CONFIG_WIN32) || defined(CONFIG_OS2)
2516 static int64_t getutime(void)
2518 return av_gettime();
2521 static int64_t getutime(void)
2523 struct rusage rusage;
2525 getrusage(RUSAGE_SELF, &rusage);
2526 return (rusage.ru_utime.tv_sec * 1000000LL) + rusage.ru_utime.tv_usec;
2530 extern int ffm_nopts;
2532 static void opt_bitexact(void)
2535 /* disable generate of real time pts in ffm (need to be supressed anyway) */
2539 static void show_formats(void)
2541 AVInputFormat *ifmt;
2542 AVOutputFormat *ofmt;
2543 AVImageFormat *image_fmt;
2548 printf("Output audio/video file formats:");
2549 for(ofmt = first_oformat; ofmt != NULL; ofmt = ofmt->next) {
2550 printf(" %s", ofmt->name);
2554 printf("Input audio/video file formats:");
2555 for(ifmt = first_iformat; ifmt != NULL; ifmt = ifmt->next) {
2556 printf(" %s", ifmt->name);
2560 printf("Output image formats:");
2561 for(image_fmt = first_image_format; image_fmt != NULL;
2562 image_fmt = image_fmt->next) {
2563 if (image_fmt->img_write)
2564 printf(" %s", image_fmt->name);
2568 printf("Input image formats:");
2569 for(image_fmt = first_image_format; image_fmt != NULL;
2570 image_fmt = image_fmt->next) {
2571 if (image_fmt->img_read)
2572 printf(" %s", image_fmt->name);
2576 printf("Codecs:\n");
2577 printf(" Encoders:");
2578 for(p = first_avcodec; p != NULL; p = p->next) {
2580 printf(" %s", p->name);
2584 printf(" Decoders:");
2585 for(p = first_avcodec; p != NULL; p = p->next) {
2587 printf(" %s", p->name);
2591 printf("Supported file protocols:");
2592 for(up = first_protocol; up != NULL; up = up->next)
2593 printf(" %s:", up->name);
2596 printf("Frame size, frame rate abbreviations: ntsc pal qntsc qpal sntsc spal film ntsc-film sqcif qcif cif 4cif\n");
2597 printf("Motion estimation methods:");
2601 if ((pp - motion_str + 1) == ME_ZERO)
2602 printf("(fastest)");
2603 else if ((pp - motion_str + 1) == ME_FULL)
2604 printf("(slowest)");
2605 else if ((pp - motion_str + 1) == ME_EPZS)
2606 printf("(default)");
2613 const OptionDef options[] = {
2615 { "L", 0, {(void*)show_license}, "show license" },
2616 { "h", 0, {(void*)show_help}, "show help" },
2617 { "formats", 0, {(void*)show_formats}, "show available formats, codecs, protocols, ..." },
2618 { "f", HAS_ARG, {(void*)opt_format}, "force format", "fmt" },
2619 { "img", HAS_ARG, {(void*)opt_image_format}, "force image format", "img_fmt" },
2620 { "i", HAS_ARG, {(void*)opt_input_file}, "input file name", "filename" },
2621 { "y", OPT_BOOL, {(void*)&file_overwrite}, "overwrite output files" },
2622 { "map", HAS_ARG | OPT_EXPERT, {(void*)opt_map}, "set input stream mapping", "file:stream" },
2623 { "t", HAS_ARG, {(void*)opt_recording_time}, "set the recording time", "duration" },
2624 { "title", HAS_ARG | OPT_STRING, {(void*)&str_title}, "set the title", "string" },
2625 { "author", HAS_ARG | OPT_STRING, {(void*)&str_author}, "set the author", "string" },
2626 { "copyright", HAS_ARG | OPT_STRING, {(void*)&str_copyright}, "set the copyright", "string" },
2627 { "comment", HAS_ARG | OPT_STRING, {(void*)&str_comment}, "set the comment", "string" },
2628 { "debug", HAS_ARG | OPT_EXPERT, {(void*)opt_debug}, "print specific debug info", "" },
2629 { "benchmark", OPT_BOOL | OPT_EXPERT, {(void*)&do_benchmark},
2630 "add timings for benchmarking" },
2631 { "hex", OPT_BOOL | OPT_EXPERT, {(void*)&do_hex_dump},
2632 "dump each input packet" },
2633 { "bitexact", OPT_EXPERT, {(void*)opt_bitexact}, "only use bit exact algorithms (for codec testing)" },
2634 { "re", OPT_BOOL | OPT_EXPERT, {(void*)&rate_emu}, "read input at native frame rate", "" },
2635 { "loop", OPT_BOOL | OPT_EXPERT, {(void*)&loop_input}, "loop (current only works with images)" },
2638 { "b", HAS_ARG | OPT_VIDEO, {(void*)opt_video_bitrate}, "set video bitrate (in kbit/s)", "bitrate" },
2639 { "r", HAS_ARG | OPT_VIDEO, {(void*)opt_frame_rate}, "set frame rate (Hz value, fraction or abbreviation)", "rate" },
2640 { "s", HAS_ARG | OPT_VIDEO, {(void*)opt_frame_size}, "set frame size (WxH or abbreviation)", "size" },
2641 { "aspect", HAS_ARG | OPT_VIDEO, {(void*)opt_frame_aspect_ratio}, "set aspect ratio (4:3, 16:9 or 1.3333, 1.7777)", "aspect" },
2642 { "pix_fmt", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_frame_pix_fmt}, "set pixel format", "format" },
2643 { "croptop", HAS_ARG | OPT_VIDEO, {(void*)opt_frame_crop_top}, "set top crop band size (in pixels)", "size" },
2644 { "cropbottom", HAS_ARG | OPT_VIDEO, {(void*)opt_frame_crop_bottom}, "set bottom crop band size (in pixels)", "size" },
2645 { "cropleft", HAS_ARG | OPT_VIDEO, {(void*)opt_frame_crop_left}, "set left crop band size (in pixels)", "size" },
2646 { "cropright", HAS_ARG | OPT_VIDEO, {(void*)opt_frame_crop_right}, "set right crop band size (in pixels)", "size" },
2647 { "g", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_gop_size}, "set the group of picture size", "gop_size" },
2648 { "intra", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&intra_only}, "use only intra frames"},
2649 { "vn", OPT_BOOL | OPT_VIDEO, {(void*)&video_disable}, "disable video" },
2650 { "qscale", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_qscale}, "use fixed video quantiser scale (VBR)", "q" },
2651 { "qmin", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_qmin}, "min video quantiser scale (VBR)", "q" },
2652 { "qmax", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_qmax}, "max video quantiser scale (VBR)", "q" },
2653 { "mbqmin", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_mb_qmin}, "min macroblock quantiser scale (VBR)", "q" },
2654 { "mbqmax", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_mb_qmax}, "max macroblock quantiser scale (VBR)", "q" },
2655 { "qdiff", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_qdiff}, "max difference between the quantiser scale (VBR)", "q" },
2656 { "qblur", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_qblur}, "video quantiser scale blur (VBR)", "blur" },
2657 { "qcomp", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_qcomp}, "video quantiser scale compression (VBR)", "compression" },
2658 { "rc_init_cplx", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_rc_initial_cplx}, "initial complexity for 1-pass encoding", "complexity" },
2659 { "b_qfactor", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_b_qfactor}, "qp factor between p and b frames", "factor" },
2660 { "i_qfactor", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_i_qfactor}, "qp factor between p and i frames", "factor" },
2661 { "b_qoffset", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_b_qoffset}, "qp offset between p and b frames", "offset" },
2662 { "i_qoffset", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_i_qoffset}, "qp offset between p and i frames", "offset" },
2663 // { "b_strategy", HAS_ARG | OPT_EXPERT, {(void*)opt_b_strategy}, "dynamic b frame selection strategy", "strategy" },
2664 { "rc_eq", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_video_rc_eq}, "set rate control equation", "equation" },
2665 { "rc_override", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_video_rc_override_string}, "rate control override for specific intervals", "override" },
2666 { "bt", HAS_ARG | OPT_VIDEO, {(void*)opt_video_bitrate_tolerance}, "set video bitrate tolerance (in kbit/s)", "tolerance" },
2667 { "maxrate", HAS_ARG | OPT_VIDEO, {(void*)opt_video_bitrate_max}, "set max video bitrate tolerance (in kbit/s)", "bitrate" },
2668 { "minrate", HAS_ARG | OPT_VIDEO, {(void*)opt_video_bitrate_min}, "set min video bitrate tolerance (in kbit/s)", "bitrate" },
2669 { "bufsize", HAS_ARG | OPT_VIDEO, {(void*)opt_video_buffer_size}, "set ratecontrol buffere size (in kbit)", "size" },
2670 { "vcodec", HAS_ARG | OPT_VIDEO, {(void*)opt_video_codec}, "force video codec ('copy' to copy stream)", "codec" },
2671 { "me", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_motion_estimation}, "set motion estimation method",
2673 { "dct_algo", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_dct_algo}, "set dct algo", "algo" },
2674 { "idct_algo", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_idct_algo}, "set idct algo", "algo" },
2675 { "er", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_error_resilience}, "set error resilience", "n" },
2676 { "ec", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_error_concealment}, "set error concealment", "bit_mask" },
2677 { "bf", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_b_frames}, "use 'frames' B frames (only MPEG-4)", "frames" },
2678 { "hq", OPT_BOOL, {(void*)&mb_decision}, "activate high quality settings" },
2679 { "mbd", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_mb_decision}, "macroblock decision", "mode" },
2680 { "4mv", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_4mv}, "use four motion vector by macroblock (only MPEG-4)" },
2681 { "part", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_part}, "use data partitioning (only MPEG-4)" },
2682 { "bug", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_workaround_bugs}, "workaround not auto detected encoder bugs", "param" },
2683 { "ps", HAS_ARG | OPT_EXPERT, {(void*)opt_packet_size}, "set packet size in bits", "size" },
2684 { "strict", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_strict}, "how strictly to follow the standarts", "strictness" },
2685 { "sameq", OPT_BOOL | OPT_VIDEO, {(void*)&same_quality},
2686 "use same video quality as source (implies VBR)" },
2687 { "pass", HAS_ARG | OPT_VIDEO, {(void*)&opt_pass}, "select the pass number (1 or 2)", "n" },
2688 { "passlogfile", HAS_ARG | OPT_STRING | OPT_VIDEO, {(void*)&pass_logfilename}, "select two pass log file name", "file" },
2689 { "deinterlace", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&do_deinterlace},
2690 "deinterlace pictures" },
2691 { "psnr", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&do_psnr}, "calculate PSNR of compressed frames" },
2692 { "vstats", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&do_vstats}, "dump video coding statistics to file" },
2693 { "vhook", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)add_frame_hooker}, "insert video processing module", "module" },
2694 { "aic", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_aic}, "enable Advanced intra coding (h263+)" },
2695 { "umv", OPT_BOOL | OPT_EXPERT | OPT_VIDEO, {(void*)&use_umv}, "enable Unlimited Motion Vector (h263+)" },
2698 { "ab", HAS_ARG | OPT_AUDIO, {(void*)opt_audio_bitrate}, "set audio bitrate (in kbit/s)", "bitrate", },
2699 { "ar", HAS_ARG | OPT_AUDIO, {(void*)opt_audio_rate}, "set audio sampling rate (in Hz)", "rate" },
2700 { "ac", HAS_ARG | OPT_AUDIO, {(void*)opt_audio_channels}, "set number of audio channels", "channels" },
2701 { "an", OPT_BOOL | OPT_AUDIO, {(void*)&audio_disable}, "disable audio" },
2702 { "acodec", HAS_ARG | OPT_AUDIO, {(void*)opt_audio_codec}, "force audio codec ('copy' to copy stream)", "codec" },
2705 { "vd", HAS_ARG | OPT_EXPERT | OPT_VIDEO | OPT_GRAB, {(void*)opt_video_device}, "set video grab device", "device" },
2706 { "vc", HAS_ARG | OPT_EXPERT | OPT_VIDEO | OPT_GRAB, {(void*)opt_video_channel}, "set video grab channel (DV1394 only)", "channel" },
2707 { "tvstd", HAS_ARG | OPT_EXPERT | OPT_VIDEO | OPT_GRAB, {(void*)opt_video_standard}, "set television standard (NTSC, PAL (SECAM))", "standard" },
2708 { "dv1394", OPT_EXPERT | OPT_GRAB, {(void*)opt_dv1394}, "set DV1394 grab", "" },
2709 { "ad", HAS_ARG | OPT_EXPERT | OPT_AUDIO | OPT_GRAB, {(void*)opt_audio_device}, "set audio device", "device" },
2713 static void show_banner(void)
2715 printf("ffmpeg version " FFMPEG_VERSION ", Copyright (c) 2000-2003 Fabrice Bellard\n");
2718 static void show_license(void)
2722 "This library is free software; you can redistribute it and/or\n"
2723 "modify it under the terms of the GNU Lesser General Public\n"
2724 "License as published by the Free Software Foundation; either\n"
2725 "version 2 of the License, or (at your option) any later version.\n"
2727 "This library is distributed in the hope that it will be useful,\n"
2728 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
2729 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n"
2730 "Lesser General Public License for more details.\n"
2732 "You should have received a copy of the GNU Lesser General Public\n"
2733 "License along with this library; if not, write to the Free Software\n"
2734 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
2739 static void show_help(void)
2742 printf("usage: ffmpeg [[options] -i input_file]... {[options] outfile}...\n"
2743 "Hyper fast Audio and Video encoder\n");
2745 show_help_options(options, "Main options:\n",
2746 OPT_EXPERT | OPT_AUDIO | OPT_VIDEO, 0);
2747 show_help_options(options, "\nVideo options:\n",
2748 OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_GRAB,
2750 show_help_options(options, "\nAdvanced Video options:\n",
2751 OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_GRAB,
2752 OPT_VIDEO | OPT_EXPERT);
2753 show_help_options(options, "\nAudio options:\n",
2754 OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_GRAB,
2756 show_help_options(options, "\nAdvanced Audio options:\n",
2757 OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_GRAB,
2758 OPT_AUDIO | OPT_EXPERT);
2759 show_help_options(options, "\nAudio/Video grab options:\n",
2762 show_help_options(options, "\nAdvanced options:\n",
2763 OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_GRAB,
2768 void parse_arg_file(const char *filename)
2770 opt_output_file(filename);
2773 int main(int argc, char **argv)
2784 parse_options(argc, argv, options);
2786 /* file converter / grab */
2787 if (nb_output_files <= 0) {
2788 fprintf(stderr, "Must supply at least one output file\n");
2792 if (nb_input_files == 0) {
2797 av_encode(output_files, nb_output_files, input_files, nb_input_files,
2798 stream_maps, nb_stream_maps);
2799 ti = getutime() - ti;
2801 printf("bench: utime=%0.3fs\n", ti / 1000000.0);
2805 for(i=0;i<nb_output_files;i++) {
2806 /* maybe av_close_output_file ??? */
2807 AVFormatContext *s = output_files[i];
2809 if (!(s->oformat->flags & AVFMT_NOFILE))
2811 for(j=0;j<s->nb_streams;j++)
2812 av_free(s->streams[j]);
2815 for(i=0;i<nb_input_files;i++)
2816 av_close_input_file(input_files[i]);
2821 #ifdef POWERPC_PERFORMANCE_REPORT
2822 extern void powerpc_display_perf_report(void);
2823 powerpc_display_perf_report();
2824 #endif /* POWERPC_PERFORMANCE_REPORT */
2826 #ifndef CONFIG_WIN32
2827 if (received_sigterm) {
2829 "Received signal %d: terminating.\n",
2830 (int) received_sigterm);
2834 exit(0); /* not all OS-es handle main() return value */