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"
28 #include <sys/ioctl.h>
31 #include <sys/resource.h>
35 #include <sys/types.h>
36 #include <sys/select.h>
39 #undef time //needed because HAVE_AV_CONFIG_H is defined on top
47 #if !defined(INFINITY) && defined(HUGE_VAL)
48 #define INFINITY HUGE_VAL
51 /* select an input stream for an output stream */
52 typedef struct AVStreamMap
{
57 /** select an input file for an output file */
58 typedef struct AVMetaDataMap
{
63 extern const OptionDef options
[];
65 static void show_help(void);
66 static void show_license(void);
70 static AVFormatContext
*input_files
[MAX_FILES
];
71 static int64_t input_files_ts_offset
[MAX_FILES
];
72 static int nb_input_files
= 0;
74 static AVFormatContext
*output_files
[MAX_FILES
];
75 static int nb_output_files
= 0;
77 static AVStreamMap stream_maps
[MAX_FILES
];
78 static int nb_stream_maps
;
80 static AVMetaDataMap meta_data_maps
[MAX_FILES
];
81 static int nb_meta_data_maps
;
83 static AVInputFormat
*file_iformat
;
84 static AVOutputFormat
*file_oformat
;
85 static AVImageFormat
*image_format
;
86 static int frame_width
= 160;
87 static int frame_height
= 128;
88 static float frame_aspect_ratio
= 0;
89 static enum PixelFormat frame_pix_fmt
= PIX_FMT_YUV420P
;
90 static int frame_padtop
= 0;
91 static int frame_padbottom
= 0;
92 static int frame_padleft
= 0;
93 static int frame_padright
= 0;
94 static int padcolor
[3] = {16,128,128}; /* default to black */
95 static int frame_topBand
= 0;
96 static int frame_bottomBand
= 0;
97 static int frame_leftBand
= 0;
98 static int frame_rightBand
= 0;
99 static int max_frames
[3] = {INT_MAX
, INT_MAX
, INT_MAX
};
100 static int frame_rate
= 25;
101 static int frame_rate_base
= 1;
102 static int video_bit_rate
= 200*1000;
103 static int video_bit_rate_tolerance
= 4000*1000;
104 static float video_qscale
= 0;
105 static int video_qmin
= 2;
106 static int video_qmax
= 31;
107 static int video_lmin
= 2*FF_QP2LAMBDA
;
108 static int video_lmax
= 31*FF_QP2LAMBDA
;
109 static int video_mb_qmin
= 2;
110 static int video_mb_qmax
= 31;
111 static int video_qdiff
= 3;
112 static float video_qblur
= 0.5;
113 static float video_qcomp
= 0.5;
114 static uint16_t *intra_matrix
= NULL
;
115 static uint16_t *inter_matrix
= NULL
;
116 #if 0 //experimental, (can be removed)
117 static float video_rc_qsquish
=1.0;
118 static float video_rc_qmod_amp
=0;
119 static int video_rc_qmod_freq
=0;
121 static char *video_rc_override_string
=NULL
;
122 static char *video_rc_eq
="tex^qComp";
123 static int video_rc_buffer_size
=0;
124 static float video_rc_buffer_aggressivity
=1.0;
125 static int video_rc_max_rate
=0;
126 static int video_rc_min_rate
=0;
127 static float video_rc_initial_cplx
=0;
128 static float video_b_qfactor
= 1.25;
129 static float video_b_qoffset
= 1.25;
130 static float video_i_qfactor
= -0.8;
131 static float video_i_qoffset
= 0.0;
132 static int video_intra_quant_bias
= FF_DEFAULT_QUANT_BIAS
;
133 static int video_inter_quant_bias
= FF_DEFAULT_QUANT_BIAS
;
134 static int me_method
= ME_EPZS
;
135 static int video_disable
= 0;
136 static int video_codec_id
= CODEC_ID_NONE
;
137 static int video_codec_tag
= 0;
138 static int same_quality
= 0;
139 static int b_frames
= 0;
140 static int mb_decision
= FF_MB_DECISION_SIMPLE
;
141 static int ildct_cmp
= FF_CMP_VSAD
;
142 static int mb_cmp
= FF_CMP_SAD
;
143 static int sub_cmp
= FF_CMP_SAD
;
144 static int cmp
= FF_CMP_SAD
;
145 static int pre_cmp
= FF_CMP_SAD
;
146 static int pre_me
= 0;
147 static float lumi_mask
= 0;
148 static float dark_mask
= 0;
149 static float scplx_mask
= 0;
150 static float tcplx_mask
= 0;
151 static float p_mask
= 0;
152 static int use_4mv
= 0;
153 static int use_obmc
= 0;
154 static int use_loop
= 0;
155 static int use_aic
= 0;
156 static int use_aiv
= 0;
157 static int use_umv
= 0;
158 static int use_ss
= 0;
159 static int use_alt_scan
= 0;
160 static int use_trell
= 0;
161 static int use_scan_offset
= 0;
162 static int use_qpel
= 0;
163 static int use_qprd
= 0;
164 static int use_cbprd
= 0;
166 static int closed_gop
= 0;
167 static int strict_gop
= 0;
168 static int do_deinterlace
= 0;
169 static int do_interlace_dct
= 0;
170 static int do_interlace_me
= 0;
171 static int workaround_bugs
= FF_BUG_AUTODETECT
;
172 static int error_resilience
= 2;
173 static int error_concealment
= 3;
174 static int dct_algo
= 0;
175 static int idct_algo
= 0;
176 static int use_part
= 0;
177 static int packet_size
= 0;
178 static int error_rate
= 0;
179 static int strict
= 0;
180 static int top_field_first
= -1;
181 static int noise_reduction
= 0;
182 static int sc_threshold
= 0;
183 static int debug
= 0;
184 static int debug_mv
= 0;
185 static int me_threshold
= 0;
186 static int mb_threshold
= 0;
187 static int intra_dc_precision
= 8;
188 static int coder
= 0;
189 static int context
= 0;
190 static int predictor
= 0;
191 static int video_profile
= FF_PROFILE_UNKNOWN
;
192 static int video_level
= FF_LEVEL_UNKNOWN
;
193 static int nsse_weight
= 8;
194 static int subpel_quality
= 8;
195 static int lowres
= 0;
196 static int frame_skip_threshold
= 0;
197 static int frame_skip_factor
= 0;
198 static int frame_skip_exp
= 0;
199 static int frame_skip_cmp
= FF_CMP_DCTMAX
;
200 extern int loop_input
; /* currently a hack */
202 static int gop_size
= 12;
203 static int intra_only
= 0;
204 static int audio_sample_rate
= 44100;
205 static int audio_bit_rate
= 64000;
206 static int audio_disable
= 0;
207 static int audio_channels
= 1;
208 static int audio_codec_id
= CODEC_ID_NONE
;
209 static int audio_codec_tag
= 0;
211 static int mux_rate
= 0;
212 static int mux_packet_size
= 0;
213 static float mux_preload
= 0.5;
214 static float mux_max_delay
= 0.7;
216 static int64_t recording_time
= 0;
217 static int64_t start_time
= 0;
218 static int64_t rec_timestamp
= 0;
219 static int64_t input_ts_offset
= 0;
220 static int file_overwrite
= 0;
221 static char *str_title
= NULL
;
222 static char *str_author
= NULL
;
223 static char *str_copyright
= NULL
;
224 static char *str_comment
= NULL
;
225 static int do_benchmark
= 0;
226 static int do_hex_dump
= 0;
227 static int do_pkt_dump
= 0;
228 static int do_psnr
= 0;
229 static int do_vstats
= 0;
230 static int do_pass
= 0;
231 static int bitexact
= 0;
232 static char *pass_logfilename
= NULL
;
233 static int audio_stream_copy
= 0;
234 static int video_stream_copy
= 0;
235 static int video_sync_method
= 1;
236 static int audio_sync_method
= 0;
237 static int copy_ts
= 0;
239 static int rate_emu
= 0;
241 static char *video_grab_format
= "video4linux";
242 static char *video_device
= NULL
;
243 static char *grab_device
= NULL
;
244 static int video_channel
= 0;
245 static char *video_standard
= "ntsc";
247 static char *audio_grab_format
= "audio_device";
248 static char *audio_device
= NULL
;
250 static int using_stdin
= 0;
251 static int using_vhook
= 0;
252 static int verbose
= 1;
253 static int thread_count
= 1;
254 static int q_pressed
= 0;
255 static int me_range
= 0;
256 static int64_t video_size
= 0;
257 static int64_t audio_size
= 0;
258 static int64_t extra_size
= 0;
259 static int nb_frames_dup
= 0;
260 static int nb_frames_drop
= 0;
261 static int input_sync
;
263 static int pgmyuv_compatibility_hack
=0;
266 #define DEFAULT_PASS_LOGFILENAME "ffmpeg2pass"
268 typedef struct AVOutputStream
{
269 int file_index
; /* file index */
270 int index
; /* stream index in the output file */
271 int source_index
; /* AVInputStream index */
272 AVStream
*st
; /* stream in the output file */
273 int encoding_needed
; /* true if encoding needed for this stream */
275 /* input pts and corresponding output pts
277 double sync_ipts
; /* dts from the AVPacket of the demuxer in second units */
278 int64_t sync_opts
; /* output frame counter, could be changed to some true timestamp */ //FIXME look at frame_number
280 int video_resample
; /* video_resample and video_crop are mutually exclusive */
281 AVFrame pict_tmp
; /* temporary image for resampling */
282 ImgReSampleContext
*img_resample_ctx
; /* for image resampling */
284 int video_crop
; /* video_resample and video_crop are mutually exclusive */
285 int topBand
; /* cropping area sizes */
288 int video_pad
; /* video_resample and video_pad are mutually exclusive */
289 int padtop
; /* padding area sizes */
296 ReSampleContext
*resample
; /* for audio resampling */
297 FifoBuffer fifo
; /* for compression: one audio fifo per codec */
301 typedef struct AVInputStream
{
305 int discard
; /* true if stream data should be discarded */
306 int decoding_needed
; /* true if the packets must be decoded in 'raw_fifo' */
307 int64_t sample_index
; /* current sample */
309 int64_t start
; /* time when read started */
310 unsigned long frame
; /* current frame */
311 int64_t next_pts
; /* synthetic pts for cases where pkt.pts
313 int64_t pts
; /* current pts */
314 int is_start
; /* is 1 at the start and after a discontinuity */
317 typedef struct AVInputFile
{
318 int eof_reached
; /* true if eof reached */
319 int ist_index
; /* index of first stream in ist_table */
320 int buffer_size
; /* current total buffer size */
321 int buffer_size_max
; /* buffer size at which we consider we can stop
323 int nb_streams
; /* nb streams we are aware of */
328 /* init terminal so that we can grab keys */
329 static struct termios oldtty
;
331 static void term_exit(void)
333 tcsetattr (0, TCSANOW
, &oldtty
);
336 static volatile sig_atomic_t received_sigterm
= 0;
339 sigterm_handler(int sig
)
341 received_sigterm
= sig
;
345 static void term_init(void)
352 tty
.c_iflag
&= ~(IGNBRK
|BRKINT
|PARMRK
|ISTRIP
353 |INLCR
|IGNCR
|ICRNL
|IXON
);
354 tty
.c_oflag
|= OPOST
;
355 tty
.c_lflag
&= ~(ECHO
|ECHONL
|ICANON
|IEXTEN
);
356 tty
.c_cflag
&= ~(CSIZE
|PARENB
);
361 tcsetattr (0, TCSANOW
, &tty
);
363 signal(SIGINT
, sigterm_handler
); /* Interrupt (ANSI). */
364 signal(SIGQUIT
, sigterm_handler
); /* Quit (POSIX). */
365 signal(SIGTERM
, sigterm_handler
); /* Termination (ANSI). */
367 register a function to be called at normal program termination
370 #ifdef CONFIG_BEOS_NETSERVER
371 fcntl(0, F_SETFL
, fcntl(0, F_GETFL
) | O_NONBLOCK
);
375 /* read a key without blocking */
376 static int read_key(void)
380 #ifndef CONFIG_BEOS_NETSERVER
388 n
= select(1, &rfds
, NULL
, NULL
, &tv
);
400 static int decode_interrupt_cb(void)
402 return q_pressed
|| (q_pressed
= read_key() == 'q');
407 static volatile int received_sigterm
= 0;
409 /* no interactive support */
410 static void term_exit(void)
414 static void term_init(void)
418 static int read_key(void)
425 static int read_ffserver_streams(AVFormatContext
*s
, const char *filename
)
430 err
= av_open_input_file(&ic
, filename
, NULL
, FFM_PACKET_SIZE
, NULL
);
433 /* copy stream format */
434 s
->nb_streams
= ic
->nb_streams
;
435 for(i
=0;i
<ic
->nb_streams
;i
++) {
438 st
= av_mallocz(sizeof(AVStream
));
439 memcpy(st
, ic
->streams
[i
], sizeof(AVStream
));
443 av_close_input_file(ic
);
447 #define MAX_AUDIO_PACKET_SIZE (128 * 1024)
449 static void do_audio_out(AVFormatContext
*s
,
452 unsigned char *buf
, int size
)
455 static uint8_t *audio_buf
= NULL
;
456 static uint8_t *audio_out
= NULL
;
457 const int audio_out_size
= 4*MAX_AUDIO_PACKET_SIZE
;
459 int size_out
, frame_bytes
, ret
;
460 AVCodecContext
*enc
= &ost
->st
->codec
;
462 /* SC: dynamic allocation of buffers */
464 audio_buf
= av_malloc(2*MAX_AUDIO_PACKET_SIZE
);
466 audio_out
= av_malloc(audio_out_size
);
467 if (!audio_buf
|| !audio_out
)
468 return; /* Should signal an error ! */
470 if(audio_sync_method
){
471 double delta
= ost
->sync_ipts
* enc
->sample_rate
- ost
->sync_opts
472 - fifo_size(&ost
->fifo
, ost
->fifo
.rptr
)/(ost
->st
->codec
.channels
* 2);
473 double idelta
= delta
*ist
->st
->codec
.sample_rate
/ enc
->sample_rate
;
474 int byte_delta
= ((int)idelta
)*2*ist
->st
->codec
.channels
;
476 //FIXME resample delay
477 if(fabs(delta
) > 50){
480 byte_delta
= FFMAX(byte_delta
, -size
);
484 fprintf(stderr
, "discarding %d audio samples\n", (int)-delta
);
489 static uint8_t *input_tmp
= NULL
;
490 input_tmp
= av_realloc(input_tmp
, byte_delta
+ size
);
492 if(byte_delta
+ size
<= MAX_AUDIO_PACKET_SIZE
)
495 byte_delta
= MAX_AUDIO_PACKET_SIZE
- size
;
497 memset(input_tmp
, 0, byte_delta
);
498 memcpy(input_tmp
+ byte_delta
, buf
, size
);
502 fprintf(stderr
, "adding %d audio samples of silence\n", (int)delta
);
504 }else if(audio_sync_method
>1){
505 int comp
= clip(delta
, -audio_sync_method
, audio_sync_method
);
506 assert(ost
->audio_resample
);
508 fprintf(stderr
, "compensating audio timestamp drift:%f compensation:%d in:%d\n", delta
, comp
, enc
->sample_rate
);
509 // fprintf(stderr, "drift:%f len:%d opts:%lld ipts:%lld fifo:%d\n", delta, -1, ost->sync_opts, (int64_t)(ost->sync_ipts * enc->sample_rate), fifo_size(&ost->fifo, ost->fifo.rptr)/(ost->st->codec.channels * 2));
510 av_resample_compensate(*(struct AVResampleContext
**)ost
->resample
, comp
, enc
->sample_rate
);
514 ost
->sync_opts
= lrintf(ost
->sync_ipts
* enc
->sample_rate
)
515 - fifo_size(&ost
->fifo
, ost
->fifo
.rptr
)/(ost
->st
->codec
.channels
* 2); //FIXME wrong
517 if (ost
->audio_resample
) {
519 size_out
= audio_resample(ost
->resample
,
520 (short *)buftmp
, (short *)buf
,
521 size
/ (ist
->st
->codec
.channels
* 2));
522 size_out
= size_out
* enc
->channels
* 2;
528 /* now encode as many frames as possible */
529 if (enc
->frame_size
> 1) {
530 /* output resampled raw samples */
531 fifo_write(&ost
->fifo
, buftmp
, size_out
,
534 frame_bytes
= enc
->frame_size
* 2 * enc
->channels
;
536 while (fifo_read(&ost
->fifo
, audio_buf
, frame_bytes
,
537 &ost
->fifo
.rptr
) == 0) {
539 av_init_packet(&pkt
);
541 ret
= avcodec_encode_audio(enc
, audio_out
, audio_out_size
,
544 pkt
.stream_index
= ost
->index
;
548 pkt
.pts
= enc
->coded_frame
->pts
;
549 pkt
.flags
|= PKT_FLAG_KEY
;
550 av_interleaved_write_frame(s
, &pkt
);
552 ost
->sync_opts
+= enc
->frame_size
;
556 av_init_packet(&pkt
);
558 ost
->sync_opts
+= size_out
/ (2 * enc
->channels
);
560 /* output a pcm frame */
561 /* XXX: change encoding codec API to avoid this ? */
562 switch(enc
->codec
->id
) {
563 case CODEC_ID_PCM_S16LE
:
564 case CODEC_ID_PCM_S16BE
:
565 case CODEC_ID_PCM_U16LE
:
566 case CODEC_ID_PCM_U16BE
:
569 size_out
= size_out
>> 1;
572 ret
= avcodec_encode_audio(enc
, audio_out
, size_out
,
575 pkt
.stream_index
= ost
->index
;
579 pkt
.pts
= enc
->coded_frame
->pts
;
580 pkt
.flags
|= PKT_FLAG_KEY
;
581 av_interleaved_write_frame(s
, &pkt
);
585 static void pre_process_video_frame(AVInputStream
*ist
, AVPicture
*picture
, void **bufp
)
589 AVPicture picture_tmp
;
592 dec
= &ist
->st
->codec
;
594 /* deinterlace : must be done before any resize */
595 if (do_deinterlace
|| using_vhook
) {
598 /* create temporary picture */
599 size
= avpicture_get_size(dec
->pix_fmt
, dec
->width
, dec
->height
);
600 buf
= av_malloc(size
);
604 picture2
= &picture_tmp
;
605 avpicture_fill(picture2
, buf
, dec
->pix_fmt
, dec
->width
, dec
->height
);
608 if(avpicture_deinterlace(picture2
, picture
,
609 dec
->pix_fmt
, dec
->width
, dec
->height
) < 0) {
610 /* if error, do not deinterlace */
616 if (img_convert(picture2
, dec
->pix_fmt
, picture
,
617 dec
->pix_fmt
, dec
->width
, dec
->height
) < 0) {
618 /* if error, do not copy */
628 frame_hook_process(picture2
, dec
->pix_fmt
, dec
->width
, dec
->height
);
630 if (picture
!= picture2
)
631 *picture
= *picture2
;
635 /* we begin to correct av delay at this threshold */
636 #define AV_DELAY_MAX 0.100
639 /* Expects img to be yuv420 */
640 static void fill_pad_region(AVPicture
* img
, int height
, int width
,
641 int padtop
, int padbottom
, int padleft
, int padright
, int *color
) {
646 for (i
= 0; i
< 3; i
++) {
647 shift
= (i
== 0) ?
0 : 1;
649 if (padtop
|| padleft
) {
650 memset(img
->data
[i
], color
[i
], (((img
->linesize
[i
] * padtop
) +
654 if (padleft
|| padright
) {
655 optr
= img
->data
[i
] + (img
->linesize
[i
] * (padtop
>> shift
)) +
656 (img
->linesize
[i
] - (padright
>> shift
));
658 for (y
= 0; y
< ((height
- (padtop
+ padbottom
)) >> shift
); y
++) {
659 memset(optr
, color
[i
], (padleft
+ padright
) >> shift
);
660 optr
+= img
->linesize
[i
];
665 optr
= img
->data
[i
] + (img
->linesize
[i
] * ((height
- padbottom
) >> shift
));
666 memset(optr
, color
[i
], ((img
->linesize
[i
] * padbottom
) >> shift
));
671 static int bit_buffer_size
= 1024*256;
672 static uint8_t *bit_buffer
= NULL
;
674 static void do_video_out(AVFormatContext
*s
,
680 int nb_frames
, i
, ret
;
681 AVFrame
*final_picture
, *formatted_picture
;
682 AVFrame picture_format_temp
, picture_crop_temp
;
683 uint8_t *buf
= NULL
, *buf1
= NULL
;
684 AVCodecContext
*enc
, *dec
;
685 enum PixelFormat target_pixfmt
;
687 avcodec_get_frame_defaults(&picture_format_temp
);
688 avcodec_get_frame_defaults(&picture_crop_temp
);
690 enc
= &ost
->st
->codec
;
691 dec
= &ist
->st
->codec
;
693 /* by default, we output a single frame */
698 if(video_sync_method
){
700 vdelta
= ost
->sync_ipts
* enc
->frame_rate
/ enc
->frame_rate_base
- ost
->sync_opts
;
701 //FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c
704 else if (vdelta
> 1.1)
705 nb_frames
= lrintf(vdelta
);
706 //fprintf(stderr, "vdelta:%f, ost->sync_opts:%lld, ost->sync_ipts:%f nb_frames:%d\n", vdelta, ost->sync_opts, ost->sync_ipts, nb_frames);
710 fprintf(stderr
, "*** drop!\n");
711 }else if (nb_frames
> 1) {
712 nb_frames_dup
+= nb_frames
;
714 fprintf(stderr
, "*** %d dup!\n", nb_frames
-1);
717 ost
->sync_opts
= lrintf(ost
->sync_ipts
* enc
->frame_rate
/ enc
->frame_rate_base
);
719 nb_frames
= FFMIN(nb_frames
, max_frames
[CODEC_TYPE_VIDEO
] - ost
->frame_number
);
723 /* convert pixel format if needed */
724 target_pixfmt
= ost
->video_resample
|| ost
->video_pad
725 ? PIX_FMT_YUV420P
: enc
->pix_fmt
;
726 if (dec
->pix_fmt
!= target_pixfmt
) {
729 /* create temporary picture */
730 size
= avpicture_get_size(target_pixfmt
, dec
->width
, dec
->height
);
731 buf
= av_malloc(size
);
734 formatted_picture
= &picture_format_temp
;
735 avpicture_fill((AVPicture
*)formatted_picture
, buf
, target_pixfmt
, dec
->width
, dec
->height
);
737 if (img_convert((AVPicture
*)formatted_picture
, target_pixfmt
,
738 (AVPicture
*)in_picture
, dec
->pix_fmt
,
739 dec
->width
, dec
->height
) < 0) {
742 fprintf(stderr
, "pixel format conversion not handled\n");
747 formatted_picture
= in_picture
;
750 /* XXX: resampling could be done before raw format conversion in
751 some cases to go faster */
752 /* XXX: only works for YUV420P */
753 if (ost
->video_resample
) {
754 final_picture
= &ost
->pict_tmp
;
755 img_resample(ost
->img_resample_ctx
, (AVPicture
*)final_picture
, (AVPicture
*)formatted_picture
);
757 if (ost
->padtop
|| ost
->padbottom
|| ost
->padleft
|| ost
->padright
) {
758 fill_pad_region((AVPicture
*)final_picture
, enc
->height
, enc
->width
,
759 ost
->padtop
, ost
->padbottom
, ost
->padleft
, ost
->padright
,
763 if (enc
->pix_fmt
!= PIX_FMT_YUV420P
) {
767 /* create temporary picture */
768 size
= avpicture_get_size(enc
->pix_fmt
, enc
->width
, enc
->height
);
769 buf
= av_malloc(size
);
772 final_picture
= &picture_format_temp
;
773 avpicture_fill((AVPicture
*)final_picture
, buf
, enc
->pix_fmt
, enc
->width
, enc
->height
);
775 if (img_convert((AVPicture
*)final_picture
, enc
->pix_fmt
,
776 (AVPicture
*)&ost
->pict_tmp
, PIX_FMT_YUV420P
,
777 enc
->width
, enc
->height
) < 0) {
780 fprintf(stderr
, "pixel format conversion not handled\n");
785 } else if (ost
->video_crop
) {
786 picture_crop_temp
.data
[0] = formatted_picture
->data
[0] +
787 (ost
->topBand
* formatted_picture
->linesize
[0]) + ost
->leftBand
;
789 picture_crop_temp
.data
[1] = formatted_picture
->data
[1] +
790 ((ost
->topBand
>> 1) * formatted_picture
->linesize
[1]) +
791 (ost
->leftBand
>> 1);
793 picture_crop_temp
.data
[2] = formatted_picture
->data
[2] +
794 ((ost
->topBand
>> 1) * formatted_picture
->linesize
[2]) +
795 (ost
->leftBand
>> 1);
797 picture_crop_temp
.linesize
[0] = formatted_picture
->linesize
[0];
798 picture_crop_temp
.linesize
[1] = formatted_picture
->linesize
[1];
799 picture_crop_temp
.linesize
[2] = formatted_picture
->linesize
[2];
800 final_picture
= &picture_crop_temp
;
801 } else if (ost
->video_pad
) {
802 final_picture
= &ost
->pict_tmp
;
804 for (i
= 0; i
< 3; i
++) {
805 uint8_t *optr
, *iptr
;
806 int shift
= (i
== 0) ?
0 : 1;
809 /* set offset to start writing image into */
810 optr
= final_picture
->data
[i
] + (((final_picture
->linesize
[i
] *
811 ost
->padtop
) + ost
->padleft
) >> shift
);
812 iptr
= formatted_picture
->data
[i
];
814 yheight
= (enc
->height
- ost
->padtop
- ost
->padbottom
) >> shift
;
815 for (y
= 0; y
< yheight
; y
++) {
816 /* copy unpadded image row into padded image row */
817 memcpy(optr
, iptr
, formatted_picture
->linesize
[i
]);
818 optr
+= final_picture
->linesize
[i
];
819 iptr
+= formatted_picture
->linesize
[i
];
823 fill_pad_region((AVPicture
*)final_picture
, enc
->height
, enc
->width
,
824 ost
->padtop
, ost
->padbottom
, ost
->padleft
, ost
->padright
,
827 if (enc
->pix_fmt
!= PIX_FMT_YUV420P
) {
831 /* create temporary picture */
832 size
= avpicture_get_size(enc
->pix_fmt
, enc
->width
, enc
->height
);
833 buf
= av_malloc(size
);
836 final_picture
= &picture_format_temp
;
837 avpicture_fill((AVPicture
*)final_picture
, buf
, enc
->pix_fmt
, enc
->width
, enc
->height
);
839 if (img_convert((AVPicture
*)final_picture
, enc
->pix_fmt
,
840 (AVPicture
*)&ost
->pict_tmp
, PIX_FMT_YUV420P
,
841 enc
->width
, enc
->height
) < 0) {
844 fprintf(stderr
, "pixel format conversion not handled\n");
850 final_picture
= formatted_picture
;
852 /* duplicates frame if needed */
853 for(i
=0;i
<nb_frames
;i
++) {
855 av_init_packet(&pkt
);
856 pkt
.stream_index
= ost
->index
;
858 if (s
->oformat
->flags
& AVFMT_RAWPICTURE
) {
859 /* raw pictures are written as AVPicture structure to
860 avoid any copies. We support temorarily the older
862 AVFrame
* old_frame
= enc
->coded_frame
;
863 enc
->coded_frame
= dec
->coded_frame
; //FIXME/XXX remove this hack
864 pkt
.data
= (uint8_t *)final_picture
;
865 pkt
.size
= sizeof(AVPicture
);
867 pkt
.pts
= dec
->coded_frame
->pts
;
868 if(dec
->coded_frame
&& dec
->coded_frame
->key_frame
)
869 pkt
.flags
|= PKT_FLAG_KEY
;
871 av_interleaved_write_frame(s
, &pkt
);
872 enc
->coded_frame
= old_frame
;
876 big_picture
= *final_picture
;
877 /* better than nothing: use input picture interlaced
879 big_picture
.interlaced_frame
= in_picture
->interlaced_frame
;
880 if(do_interlace_me
|| do_interlace_dct
){
881 if(top_field_first
== -1)
882 big_picture
.top_field_first
= in_picture
->top_field_first
;
884 big_picture
.top_field_first
= top_field_first
;
887 /* handles sameq here. This is not correct because it may
888 not be a global option */
890 big_picture
.quality
= ist
->st
->quality
;
892 big_picture
.quality
= ost
->st
->quality
;
894 big_picture
.pict_type
= 0;
895 // big_picture.pts = AV_NOPTS_VALUE;
896 big_picture
.pts
= av_rescale(ost
->sync_opts
, AV_TIME_BASE
*(int64_t)enc
->frame_rate_base
, enc
->frame_rate
);
897 //av_log(NULL, AV_LOG_DEBUG, "%lld -> encoder\n", ost->sync_opts);
898 ret
= avcodec_encode_video(enc
,
899 bit_buffer
, bit_buffer_size
,
901 //enc->frame_number = enc->real_pict_num;
903 pkt
.data
= bit_buffer
;
906 pkt
.pts
= enc
->coded_frame
->pts
;
907 /*av_log(NULL, AV_LOG_DEBUG, "encoder -> %lld/%lld\n",
908 pkt.pts != AV_NOPTS_VALUE ? av_rescale(pkt.pts, enc->frame_rate, AV_TIME_BASE*(int64_t)enc->frame_rate_base) : -1,
909 pkt.dts != AV_NOPTS_VALUE ? av_rescale(pkt.dts, enc->frame_rate, AV_TIME_BASE*(int64_t)enc->frame_rate_base) : -1);*/
911 if(enc
->coded_frame
&& enc
->coded_frame
->key_frame
)
912 pkt
.flags
|= PKT_FLAG_KEY
;
913 av_interleaved_write_frame(s
, &pkt
);
915 //fprintf(stderr,"\nFrame: %3d %3d size: %5d type: %d",
916 // enc->frame_number-1, enc->real_pict_num, ret,
918 /* if two pass, output log */
919 if (ost
->logfile
&& enc
->stats_out
) {
920 fprintf(ost
->logfile
, "%s", enc
->stats_out
);
932 static double psnr(double d
){
933 if(d
==0) return INFINITY
;
934 return -10.0*log(d
)/log(10.0);
937 static void do_video_stats(AVFormatContext
*os
, AVOutputStream
*ost
,
940 static FILE *fvstats
=NULL
;
947 double ti1
, bitrate
, avg_bitrate
;
951 today
= localtime(&today2
);
952 sprintf(filename
, "vstats_%02d%02d%02d.log", today
->tm_hour
,
955 fvstats
= fopen(filename
,"w");
963 enc
= &ost
->st
->codec
;
964 if (enc
->codec_type
== CODEC_TYPE_VIDEO
) {
965 frame_number
= ost
->frame_number
;
966 fprintf(fvstats
, "frame= %5d q= %2.1f ", frame_number
, enc
->coded_frame
->quality
/(float)FF_QP2LAMBDA
);
967 if (enc
->flags
&CODEC_FLAG_PSNR
)
968 fprintf(fvstats
, "PSNR= %6.2f ", psnr(enc
->coded_frame
->error
[0]/(enc
->width
*enc
->height
*255.0*255.0)));
970 fprintf(fvstats
,"f_size= %6d ", frame_size
);
971 /* compute pts value */
972 ti1
= (double)ost
->sync_opts
*enc
->frame_rate_base
/ enc
->frame_rate
;
976 bitrate
= (double)(frame_size
* 8) * enc
->frame_rate
/ enc
->frame_rate_base
/ 1000.0;
977 avg_bitrate
= (double)(video_size
* 8) / ti1
/ 1000.0;
978 fprintf(fvstats
, "s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s ",
979 (double)video_size
/ 1024, ti1
, bitrate
, avg_bitrate
);
980 fprintf(fvstats
,"type= %c\n", av_get_pict_type_char(enc
->coded_frame
->pict_type
));
984 static void print_report(AVFormatContext
**output_files
,
985 AVOutputStream
**ost_table
, int nb_ostreams
,
990 AVFormatContext
*oc
, *os
;
993 int frame_number
, vid
, i
;
994 double bitrate
, ti1
, pts
;
995 static int64_t last_time
= -1;
997 if (!is_last_report
) {
999 /* display the report every 0.5 seconds */
1000 cur_time
= av_gettime();
1001 if (last_time
== -1) {
1002 last_time
= cur_time
;
1005 if ((cur_time
- last_time
) < 500000)
1007 last_time
= cur_time
;
1011 oc
= output_files
[0];
1013 total_size
= url_ftell(&oc
->pb
);
1018 for(i
=0;i
<nb_ostreams
;i
++) {
1020 os
= output_files
[ost
->file_index
];
1021 enc
= &ost
->st
->codec
;
1022 if (vid
&& enc
->codec_type
== CODEC_TYPE_VIDEO
) {
1023 sprintf(buf
+ strlen(buf
), "q=%2.1f ",
1024 enc
->coded_frame
->quality
/(float)FF_QP2LAMBDA
);
1026 if (!vid
&& enc
->codec_type
== CODEC_TYPE_VIDEO
) {
1027 frame_number
= ost
->frame_number
;
1028 sprintf(buf
+ strlen(buf
), "frame=%5d q=%2.1f ",
1029 frame_number
, enc
->coded_frame ? enc
->coded_frame
->quality
/(float)FF_QP2LAMBDA
: 0);
1031 sprintf(buf
+ strlen(buf
), "L");
1032 if (enc
->flags
&CODEC_FLAG_PSNR
){
1034 double error
, error_sum
=0;
1035 double scale
, scale_sum
=0;
1036 char type
[3]= {'Y','U','V'};
1037 sprintf(buf
+ strlen(buf
), "PSNR=");
1040 error
= enc
->error
[j
];
1041 scale
= enc
->width
*enc
->height
*255.0*255.0*frame_number
;
1043 error
= enc
->coded_frame
->error
[j
];
1044 scale
= enc
->width
*enc
->height
*255.0*255.0;
1049 sprintf(buf
+ strlen(buf
), "%c:%2.2f ", type
[j
], psnr(error
/scale
));
1051 sprintf(buf
+ strlen(buf
), "*:%2.2f ", psnr(error_sum
/scale_sum
));
1055 /* compute min output value */
1056 pts
= (double)ost
->st
->pts
.val
* ost
->st
->time_base
.num
/ ost
->st
->time_base
.den
;
1057 if ((pts
< ti1
) && (pts
> 0))
1063 if (verbose
|| is_last_report
) {
1064 bitrate
= (double)(total_size
* 8) / ti1
/ 1000.0;
1066 sprintf(buf
+ strlen(buf
),
1067 "size=%8.0fkB time=%0.1f bitrate=%6.1fkbits/s",
1068 (double)total_size
/ 1024, ti1
, bitrate
);
1071 sprintf(buf
+ strlen(buf
), " dup=%d drop=%d",
1072 nb_frames_dup
, nb_frames_drop
);
1075 fprintf(stderr
, "%s \r", buf
);
1080 if (is_last_report
&& verbose
>= 0){
1081 int64_t raw
= audio_size
+ video_size
+ extra_size
;
1082 fprintf(stderr
, "\n");
1083 fprintf(stderr
, "video:%1.0fkB audio:%1.0fkB global headers:%1.0fkB muxing overhead %f%%\n",
1087 100.0*(total_size
- raw
)/raw
1092 /* pkt = NULL means EOF (needed to flush decoder buffers) */
1093 static int output_packet(AVInputStream
*ist
, int ist_index
,
1094 AVOutputStream
**ost_table
, int nb_ostreams
,
1095 const AVPacket
*pkt
)
1097 AVFormatContext
*os
;
1098 AVOutputStream
*ost
;
1102 int data_size
, got_picture
;
1104 void *buffer_to_free
;
1105 static int samples_size
= 0;
1106 static short *samples
= NULL
;
1109 ist
->pts
= ist
->next_pts
; // needed for last packet if vsync=0
1110 } else if (pkt
->dts
!= AV_NOPTS_VALUE
) { //FIXME seems redundant, as libavformat does this too
1111 ist
->next_pts
= ist
->pts
= pkt
->dts
;
1113 assert(ist
->pts
== ist
->next_pts
);
1127 /* decode the packet if needed */
1128 data_buf
= NULL
; /* fail safe */
1130 if (ist
->decoding_needed
) {
1131 switch(ist
->st
->codec
.codec_type
) {
1132 case CODEC_TYPE_AUDIO
:{
1134 samples
= av_fast_realloc(samples
, &samples_size
, FFMAX(pkt
->size
, AVCODEC_MAX_AUDIO_FRAME_SIZE
));
1135 /* XXX: could avoid copy if PCM 16 bits with same
1136 endianness as CPU */
1137 ret
= avcodec_decode_audio(&ist
->st
->codec
, samples
, &data_size
,
1143 /* Some bug in mpeg audio decoder gives */
1144 /* data_size < 0, it seems they are overflows */
1145 if (data_size
<= 0) {
1146 /* no audio frame */
1149 data_buf
= (uint8_t *)samples
;
1150 ist
->next_pts
+= ((int64_t)AV_TIME_BASE
/2 * data_size
) /
1151 (ist
->st
->codec
.sample_rate
* ist
->st
->codec
.channels
);
1153 case CODEC_TYPE_VIDEO
:
1154 data_size
= (ist
->st
->codec
.width
* ist
->st
->codec
.height
* 3) / 2;
1155 /* XXX: allocate picture correctly */
1156 avcodec_get_frame_defaults(&picture
);
1158 ret
= avcodec_decode_video(&ist
->st
->codec
,
1159 &picture
, &got_picture
, ptr
, len
);
1160 ist
->st
->quality
= picture
.quality
;
1164 /* no picture yet */
1165 goto discard_packet
;
1167 if (ist
->st
->codec
.frame_rate_base
!= 0) {
1168 ist
->next_pts
+= ((int64_t)AV_TIME_BASE
*
1169 ist
->st
->codec
.frame_rate_base
) /
1170 ist
->st
->codec
.frame_rate
;
1178 switch(ist
->st
->codec
.codec_type
) {
1179 case CODEC_TYPE_AUDIO
:
1180 ist
->next_pts
+= ((int64_t)AV_TIME_BASE
* ist
->st
->codec
.frame_size
) /
1181 (ist
->st
->codec
.sample_rate
* ist
->st
->codec
.channels
);
1183 case CODEC_TYPE_VIDEO
:
1184 if (ist
->st
->codec
.frame_rate_base
!= 0) {
1185 ist
->next_pts
+= ((int64_t)AV_TIME_BASE
*
1186 ist
->st
->codec
.frame_rate_base
) /
1187 ist
->st
->codec
.frame_rate
;
1197 buffer_to_free
= NULL
;
1198 if (ist
->st
->codec
.codec_type
== CODEC_TYPE_VIDEO
) {
1199 pre_process_video_frame(ist
, (AVPicture
*)&picture
,
1203 /* frame rate emulation */
1204 if (ist
->st
->codec
.rate_emu
) {
1205 int64_t pts
= av_rescale((int64_t) ist
->frame
* ist
->st
->codec
.frame_rate_base
, 1000000, ist
->st
->codec
.frame_rate
);
1206 int64_t now
= av_gettime() - ist
->start
;
1214 /* mpeg PTS deordering : if it is a P or I frame, the PTS
1215 is the one of the next displayed one */
1216 /* XXX: add mpeg4 too ? */
1217 if (ist
->st
->codec
.codec_id
== CODEC_ID_MPEG1VIDEO
) {
1218 if (ist
->st
->codec
.pict_type
!= B_TYPE
) {
1220 tmp
= ist
->last_ip_pts
;
1221 ist
->last_ip_pts
= ist
->frac_pts
.val
;
1222 ist
->frac_pts
.val
= tmp
;
1226 /* if output time reached then transcode raw format,
1227 encode packets and output them */
1228 if (start_time
== 0 || ist
->pts
>= start_time
)
1229 for(i
=0;i
<nb_ostreams
;i
++) {
1233 if (ost
->source_index
== ist_index
) {
1234 os
= output_files
[ost
->file_index
];
1237 printf("%d: got pts=%0.3f %0.3f\n", i
,
1238 (double)pkt
->pts
/ AV_TIME_BASE
,
1239 ((double)ist
->pts
/ AV_TIME_BASE
) -
1240 ((double)ost
->st
->pts
.val
* ost
->st
->time_base
.num
/ ost
->st
->time_base
.den
));
1242 /* set the input output pts pairs */
1243 ost
->sync_ipts
= (double)(ist
->pts
+ input_files_ts_offset
[ist
->file_index
])/ AV_TIME_BASE
;
1245 if (ost
->encoding_needed
) {
1246 switch(ost
->st
->codec
.codec_type
) {
1247 case CODEC_TYPE_AUDIO
:
1248 do_audio_out(os
, ost
, ist
, data_buf
, data_size
);
1250 case CODEC_TYPE_VIDEO
:
1251 do_video_out(os
, ost
, ist
, &picture
, &frame_size
);
1252 video_size
+= frame_size
;
1253 if (do_vstats
&& frame_size
)
1254 do_video_stats(os
, ost
, frame_size
);
1260 AVFrame avframe
; //FIXME/XXX remove this
1262 av_init_packet(&opkt
);
1264 /* no reencoding needed : output the packet directly */
1265 /* force the input stream PTS */
1267 avcodec_get_frame_defaults(&avframe
);
1268 ost
->st
->codec
.coded_frame
= &avframe
;
1269 avframe
.key_frame
= pkt
->flags
& PKT_FLAG_KEY
;
1271 if(ost
->st
->codec
.codec_type
== CODEC_TYPE_AUDIO
)
1272 audio_size
+= data_size
;
1273 else if (ost
->st
->codec
.codec_type
== CODEC_TYPE_VIDEO
) {
1274 video_size
+= data_size
;
1278 opkt
.stream_index
= ost
->index
;
1279 opkt
.data
= data_buf
;
1280 opkt
.size
= data_size
;
1281 if(pkt
->pts
!= AV_NOPTS_VALUE
)
1282 opkt
.pts
= pkt
->pts
+ input_files_ts_offset
[ist
->file_index
];
1284 opkt
.pts
= AV_NOPTS_VALUE
;
1285 opkt
.dts
= pkt
->dts
+ input_files_ts_offset
[ist
->file_index
];
1286 opkt
.flags
= pkt
->flags
;
1288 av_interleaved_write_frame(os
, &opkt
);
1289 ost
->st
->codec
.frame_number
++;
1290 ost
->frame_number
++;
1294 av_free(buffer_to_free
);
1300 for(i
=0;i
<nb_ostreams
;i
++) {
1302 if (ost
->source_index
== ist_index
) {
1303 AVCodecContext
*enc
= &ost
->st
->codec
;
1304 os
= output_files
[ost
->file_index
];
1306 if(ost
->st
->codec
.codec_type
== CODEC_TYPE_AUDIO
&& enc
->frame_size
<=1)
1308 if(ost
->st
->codec
.codec_type
== CODEC_TYPE_VIDEO
&& (os
->oformat
->flags
& AVFMT_RAWPICTURE
))
1311 if (ost
->encoding_needed
) {
1314 av_init_packet(&pkt
);
1315 pkt
.stream_index
= ost
->index
;
1317 switch(ost
->st
->codec
.codec_type
) {
1318 case CODEC_TYPE_AUDIO
:
1319 ret
= avcodec_encode_audio(enc
, bit_buffer
, bit_buffer_size
, NULL
);
1321 pkt
.flags
|= PKT_FLAG_KEY
;
1323 case CODEC_TYPE_VIDEO
:
1324 ret
= avcodec_encode_video(enc
, bit_buffer
, bit_buffer_size
, NULL
);
1326 if(enc
->coded_frame
&& enc
->coded_frame
->key_frame
)
1327 pkt
.flags
|= PKT_FLAG_KEY
;
1328 if (ost
->logfile
&& enc
->stats_out
) {
1329 fprintf(ost
->logfile
, "%s", enc
->stats_out
);
1338 pkt
.data
= bit_buffer
;
1340 if(enc
->coded_frame
)
1341 pkt
.pts
= enc
->coded_frame
->pts
;
1342 av_interleaved_write_frame(os
, &pkt
);
1356 * The following code is the main loop of the file converter
1358 static int av_encode(AVFormatContext
**output_files
,
1359 int nb_output_files
,
1360 AVFormatContext
**input_files
,
1362 AVStreamMap
*stream_maps
, int nb_stream_maps
)
1364 int ret
, i
, j
, k
, n
, nb_istreams
= 0, nb_ostreams
= 0;
1365 AVFormatContext
*is
, *os
;
1366 AVCodecContext
*codec
, *icodec
;
1367 AVOutputStream
*ost
, **ost_table
= NULL
;
1368 AVInputStream
*ist
, **ist_table
= NULL
;
1369 AVInputFile
*file_table
;
1370 AVFormatContext
*stream_no_data
;
1373 file_table
= (AVInputFile
*) av_mallocz(nb_input_files
* sizeof(AVInputFile
));
1377 /* input stream init */
1379 for(i
=0;i
<nb_input_files
;i
++) {
1380 is
= input_files
[i
];
1381 file_table
[i
].ist_index
= j
;
1382 file_table
[i
].nb_streams
= is
->nb_streams
;
1383 j
+= is
->nb_streams
;
1387 ist_table
= av_mallocz(nb_istreams
* sizeof(AVInputStream
*));
1391 for(i
=0;i
<nb_istreams
;i
++) {
1392 ist
= av_mallocz(sizeof(AVInputStream
));
1398 for(i
=0;i
<nb_input_files
;i
++) {
1399 is
= input_files
[i
];
1400 for(k
=0;k
<is
->nb_streams
;k
++) {
1401 ist
= ist_table
[j
++];
1402 ist
->st
= is
->streams
[k
];
1403 ist
->file_index
= i
;
1405 ist
->discard
= 1; /* the stream is discarded by default
1408 if (ist
->st
->codec
.rate_emu
) {
1409 ist
->start
= av_gettime();
1415 /* output stream init */
1417 for(i
=0;i
<nb_output_files
;i
++) {
1418 os
= output_files
[i
];
1419 nb_ostreams
+= os
->nb_streams
;
1421 if (nb_stream_maps
> 0 && nb_stream_maps
!= nb_ostreams
) {
1422 fprintf(stderr
, "Number of stream maps must match number of output streams\n");
1426 /* Sanity check the mapping args -- do the input files & streams exist? */
1427 for(i
=0;i
<nb_stream_maps
;i
++) {
1428 int fi
= stream_maps
[i
].file_index
;
1429 int si
= stream_maps
[i
].stream_index
;
1431 if (fi
< 0 || fi
> nb_input_files
- 1 ||
1432 si
< 0 || si
> file_table
[fi
].nb_streams
- 1) {
1433 fprintf(stderr
,"Could not find input stream #%d.%d\n", fi
, si
);
1438 ost_table
= av_mallocz(sizeof(AVOutputStream
*) * nb_ostreams
);
1441 for(i
=0;i
<nb_ostreams
;i
++) {
1442 ost
= av_mallocz(sizeof(AVOutputStream
));
1449 for(k
=0;k
<nb_output_files
;k
++) {
1450 os
= output_files
[k
];
1451 for(i
=0;i
<os
->nb_streams
;i
++) {
1453 ost
= ost_table
[n
++];
1454 ost
->file_index
= k
;
1456 ost
->st
= os
->streams
[i
];
1457 if (nb_stream_maps
> 0) {
1458 ost
->source_index
= file_table
[stream_maps
[n
-1].file_index
].ist_index
+
1459 stream_maps
[n
-1].stream_index
;
1461 /* Sanity check that the stream types match */
1462 if (ist_table
[ost
->source_index
]->st
->codec
.codec_type
!= ost
->st
->codec
.codec_type
) {
1463 fprintf(stderr
, "Codec type mismatch for mapping #%d.%d -> #%d.%d\n",
1464 stream_maps
[n
-1].file_index
, stream_maps
[n
-1].stream_index
,
1465 ost
->file_index
, ost
->index
);
1470 /* get corresponding input stream index : we select the first one with the right type */
1472 for(j
=0;j
<nb_istreams
;j
++) {
1475 ist
->st
->codec
.codec_type
== ost
->st
->codec
.codec_type
) {
1476 ost
->source_index
= j
;
1483 /* try again and reuse existing stream */
1484 for(j
=0;j
<nb_istreams
;j
++) {
1486 if (ist
->st
->codec
.codec_type
== ost
->st
->codec
.codec_type
) {
1487 ost
->source_index
= j
;
1492 fprintf(stderr
, "Could not find input stream matching output stream #%d.%d\n",
1493 ost
->file_index
, ost
->index
);
1498 ist
= ist_table
[ost
->source_index
];
1503 /* for each output stream, we compute the right encoding parameters */
1504 for(i
=0;i
<nb_ostreams
;i
++) {
1506 ist
= ist_table
[ost
->source_index
];
1508 codec
= &ost
->st
->codec
;
1509 icodec
= &ist
->st
->codec
;
1511 if (ost
->st
->stream_copy
) {
1512 /* if stream_copy is selected, no need to decode or encode */
1513 codec
->codec_id
= icodec
->codec_id
;
1514 codec
->codec_type
= icodec
->codec_type
;
1515 if(!codec
->codec_tag
) codec
->codec_tag
= icodec
->codec_tag
;
1516 codec
->bit_rate
= icodec
->bit_rate
;
1517 switch(codec
->codec_type
) {
1518 case CODEC_TYPE_AUDIO
:
1519 codec
->sample_rate
= icodec
->sample_rate
;
1520 codec
->channels
= icodec
->channels
;
1521 codec
->frame_size
= icodec
->frame_size
;
1523 case CODEC_TYPE_VIDEO
:
1524 codec
->frame_rate
= icodec
->frame_rate
;
1525 codec
->frame_rate_base
= icodec
->frame_rate_base
;
1526 codec
->width
= icodec
->width
;
1527 codec
->height
= icodec
->height
;
1533 switch(codec
->codec_type
) {
1534 case CODEC_TYPE_AUDIO
:
1535 if (fifo_init(&ost
->fifo
, 2 * MAX_AUDIO_PACKET_SIZE
))
1538 if (codec
->channels
== icodec
->channels
&&
1539 codec
->sample_rate
== icodec
->sample_rate
) {
1540 ost
->audio_resample
= 0;
1542 if (codec
->channels
!= icodec
->channels
&&
1543 (icodec
->codec_id
== CODEC_ID_AC3
||
1544 icodec
->codec_id
== CODEC_ID_DTS
)) {
1545 /* Special case for 5:1 AC3 and DTS input */
1546 /* and mono or stereo output */
1547 /* Request specific number of channels */
1548 icodec
->channels
= codec
->channels
;
1549 if (codec
->sample_rate
== icodec
->sample_rate
)
1550 ost
->audio_resample
= 0;
1552 ost
->audio_resample
= 1;
1555 ost
->audio_resample
= 1;
1558 if(audio_sync_method
>1)
1559 ost
->audio_resample
= 1;
1561 if(ost
->audio_resample
){
1562 ost
->resample
= audio_resample_init(codec
->channels
, icodec
->channels
,
1563 codec
->sample_rate
, icodec
->sample_rate
);
1565 printf("Can't resample. Aborting.\n");
1569 ist
->decoding_needed
= 1;
1570 ost
->encoding_needed
= 1;
1572 case CODEC_TYPE_VIDEO
:
1573 if (codec
->width
== icodec
->width
&&
1574 codec
->height
== icodec
->height
&&
1575 frame_topBand
== 0 &&
1576 frame_bottomBand
== 0 &&
1577 frame_leftBand
== 0 &&
1578 frame_rightBand
== 0 &&
1579 frame_padtop
== 0 &&
1580 frame_padbottom
== 0 &&
1581 frame_padleft
== 0 &&
1582 frame_padright
== 0)
1584 ost
->video_resample
= 0;
1585 ost
->video_crop
= 0;
1587 } else if ((codec
->width
== icodec
->width
-
1588 (frame_leftBand
+ frame_rightBand
)) &&
1589 (codec
->height
== icodec
->height
-
1590 (frame_topBand
+ frame_bottomBand
)))
1592 ost
->video_resample
= 0;
1593 ost
->video_crop
= 1;
1594 ost
->topBand
= frame_topBand
;
1595 ost
->leftBand
= frame_leftBand
;
1596 } else if ((codec
->width
== icodec
->width
+
1597 (frame_padleft
+ frame_padright
)) &&
1598 (codec
->height
== icodec
->height
+
1599 (frame_padtop
+ frame_padbottom
))) {
1600 ost
->video_resample
= 0;
1601 ost
->video_crop
= 0;
1603 ost
->padtop
= frame_padtop
;
1604 ost
->padleft
= frame_padleft
;
1605 ost
->padbottom
= frame_padbottom
;
1606 ost
->padright
= frame_padright
;
1607 avcodec_get_frame_defaults(&ost
->pict_tmp
);
1608 if( avpicture_alloc( (AVPicture
*)&ost
->pict_tmp
, PIX_FMT_YUV420P
,
1609 codec
->width
, codec
->height
) )
1612 ost
->video_resample
= 1;
1613 ost
->video_crop
= 0; // cropping is handled as part of resample
1614 avcodec_get_frame_defaults(&ost
->pict_tmp
);
1615 if( avpicture_alloc( (AVPicture
*)&ost
->pict_tmp
, PIX_FMT_YUV420P
,
1616 codec
->width
, codec
->height
) )
1619 ost
->img_resample_ctx
= img_resample_full_init(
1620 ost
->st
->codec
.width
, ost
->st
->codec
.height
,
1621 ist
->st
->codec
.width
, ist
->st
->codec
.height
,
1622 frame_topBand
, frame_bottomBand
,
1623 frame_leftBand
, frame_rightBand
,
1624 frame_padtop
, frame_padbottom
,
1625 frame_padleft
, frame_padright
);
1627 ost
->padtop
= frame_padtop
;
1628 ost
->padleft
= frame_padleft
;
1629 ost
->padbottom
= frame_padbottom
;
1630 ost
->padright
= frame_padright
;
1633 ost
->encoding_needed
= 1;
1634 ist
->decoding_needed
= 1;
1640 if (ost
->encoding_needed
&&
1641 (codec
->flags
& (CODEC_FLAG_PASS1
| CODEC_FLAG_PASS2
))) {
1642 char logfilename
[1024];
1647 snprintf(logfilename
, sizeof(logfilename
), "%s-%d.log",
1649 pass_logfilename
: DEFAULT_PASS_LOGFILENAME
, i
);
1650 if (codec
->flags
& CODEC_FLAG_PASS1
) {
1651 f
= fopen(logfilename
, "w");
1653 perror(logfilename
);
1658 /* read the log file */
1659 f
= fopen(logfilename
, "r");
1661 perror(logfilename
);
1664 fseek(f
, 0, SEEK_END
);
1666 fseek(f
, 0, SEEK_SET
);
1667 logbuffer
= av_malloc(size
+ 1);
1669 fprintf(stderr
, "Could not allocate log buffer\n");
1672 size
= fread(logbuffer
, 1, size
, f
);
1674 logbuffer
[size
] = '\0';
1675 codec
->stats_in
= logbuffer
;
1679 if(codec
->codec_type
== CODEC_TYPE_VIDEO
){
1680 int size
= codec
->width
* codec
->height
;
1681 bit_buffer_size
= FFMAX(bit_buffer_size
, 4*size
);
1686 bit_buffer
= av_malloc(bit_buffer_size
);
1690 /* dump the file output parameters - cannot be done before in case
1692 for(i
=0;i
<nb_output_files
;i
++) {
1693 dump_format(output_files
[i
], i
, output_files
[i
]->filename
, 1);
1696 /* dump the stream mapping */
1698 fprintf(stderr
, "Stream mapping:\n");
1699 for(i
=0;i
<nb_ostreams
;i
++) {
1701 fprintf(stderr
, " Stream #%d.%d -> #%d.%d\n",
1702 ist_table
[ost
->source_index
]->file_index
,
1703 ist_table
[ost
->source_index
]->index
,
1709 /* open each encoder */
1710 for(i
=0;i
<nb_ostreams
;i
++) {
1712 if (ost
->encoding_needed
) {
1714 codec
= avcodec_find_encoder(ost
->st
->codec
.codec_id
);
1716 fprintf(stderr
, "Unsupported codec for output stream #%d.%d\n",
1717 ost
->file_index
, ost
->index
);
1720 if (avcodec_open(&ost
->st
->codec
, codec
) < 0) {
1721 fprintf(stderr
, "Error while opening codec for stream #%d.%d - maybe incorrect parameters such as bit_rate, rate, width or height\n",
1722 ost
->file_index
, ost
->index
);
1725 extra_size
+= ost
->st
->codec
.extradata_size
;
1729 /* open each decoder */
1730 for(i
=0;i
<nb_istreams
;i
++) {
1732 if (ist
->decoding_needed
) {
1734 codec
= avcodec_find_decoder(ist
->st
->codec
.codec_id
);
1736 fprintf(stderr
, "Unsupported codec (id=%d) for input stream #%d.%d\n",
1737 ist
->st
->codec
.codec_id
, ist
->file_index
, ist
->index
);
1740 if (avcodec_open(&ist
->st
->codec
, codec
) < 0) {
1741 fprintf(stderr
, "Error while opening codec for input stream #%d.%d\n",
1742 ist
->file_index
, ist
->index
);
1745 //if (ist->st->codec.codec_type == CODEC_TYPE_VIDEO)
1746 // ist->st->codec.flags |= CODEC_FLAG_REPEAT_FIELD;
1751 for(i
=0;i
<nb_istreams
;i
++) {
1753 is
= input_files
[ist
->file_index
];
1755 ist
->next_pts
= ist
->st
->start_time
;
1756 if(ist
->next_pts
== AV_NOPTS_VALUE
)
1761 /* compute buffer size max (should use a complete heuristic) */
1762 for(i
=0;i
<nb_input_files
;i
++) {
1763 file_table
[i
].buffer_size_max
= 2048;
1766 /* set meta data information from input file if required */
1767 for (i
=0;i
<nb_meta_data_maps
;i
++) {
1768 AVFormatContext
*out_file
;
1769 AVFormatContext
*in_file
;
1771 int out_file_index
= meta_data_maps
[i
].out_file
;
1772 int in_file_index
= meta_data_maps
[i
].in_file
;
1773 if ( out_file_index
< 0 || out_file_index
>= nb_output_files
) {
1774 fprintf(stderr
, "Invalid output file index %d map_meta_data(%d,%d)\n", out_file_index
, out_file_index
, in_file_index
);
1778 if ( in_file_index
< 0 || in_file_index
>= nb_input_files
) {
1779 fprintf(stderr
, "Invalid input file index %d map_meta_data(%d,%d)\n", in_file_index
, out_file_index
, in_file_index
);
1784 out_file
= output_files
[out_file_index
];
1785 in_file
= input_files
[in_file_index
];
1787 strcpy(out_file
->title
, in_file
->title
);
1788 strcpy(out_file
->author
, in_file
->author
);
1789 strcpy(out_file
->copyright
, in_file
->copyright
);
1790 strcpy(out_file
->comment
, in_file
->comment
);
1791 strcpy(out_file
->album
, in_file
->album
);
1792 out_file
->year
= in_file
->year
;
1793 out_file
->track
= in_file
->track
;
1794 strcpy(out_file
->genre
, in_file
->genre
);
1797 /* open files and write file headers */
1798 for(i
=0;i
<nb_output_files
;i
++) {
1799 os
= output_files
[i
];
1800 if (av_write_header(os
) < 0) {
1801 fprintf(stderr
, "Could not write header for output file #%d (incorrect codec parameters ?)\n", i
);
1807 #ifndef CONFIG_WIN32
1808 if ( !using_stdin
&& verbose
>= 0) {
1809 fprintf(stderr
, "Press [q] to stop encoding\n");
1810 url_set_interrupt_cb(decode_interrupt_cb
);
1818 for(; received_sigterm
== 0;) {
1819 int file_index
, ist_index
;
1827 /* if 'q' pressed, exits */
1831 /* read_key() returns 0 on EOF */
1837 /* select the stream that we must read now by looking at the
1838 smallest output pts */
1840 for(i
=0;i
<nb_ostreams
;i
++) {
1843 os
= output_files
[ost
->file_index
];
1844 ist
= ist_table
[ost
->source_index
];
1845 if(ost
->st
->codec
.codec_type
== CODEC_TYPE_VIDEO
)
1846 opts
= (double)ost
->sync_opts
* ost
->st
->codec
.frame_rate_base
/ ost
->st
->codec
.frame_rate
;
1848 opts
= (double)ost
->st
->pts
.val
* ost
->st
->time_base
.num
/ ost
->st
->time_base
.den
;
1849 ipts
= (double)ist
->pts
;
1850 if (!file_table
[ist
->file_index
].eof_reached
){
1851 if(ipts
< ipts_min
) {
1853 if(input_sync
) file_index
= ist
->file_index
;
1855 if(opts
< opts_min
) {
1857 if(!input_sync
) file_index
= ist
->file_index
;
1860 if(ost
->frame_number
>= max_frames
[ost
->st
->codec
.codec_type
]){
1865 /* if none, if is finished */
1866 if (file_index
< 0) {
1870 /* finish if recording time exhausted */
1871 if (recording_time
> 0 && opts_min
>= (recording_time
/ 1000000.0))
1874 /* read a frame from it and output it in the fifo */
1875 is
= input_files
[file_index
];
1876 if (av_read_frame(is
, &pkt
) < 0) {
1877 file_table
[file_index
].eof_reached
= 1;
1882 stream_no_data
= is
;
1887 av_pkt_dump(stdout
, &pkt
, do_hex_dump
);
1889 /* the following test is needed in case new streams appear
1890 dynamically in stream : we ignore them */
1891 if (pkt
.stream_index
>= file_table
[file_index
].nb_streams
)
1892 goto discard_packet
;
1893 ist_index
= file_table
[file_index
].ist_index
+ pkt
.stream_index
;
1894 ist
= ist_table
[ist_index
];
1896 goto discard_packet
;
1898 // fprintf(stderr, "next:%lld dts:%lld off:%lld %d\n", ist->next_pts, pkt.dts, input_files_ts_offset[ist->file_index], ist->st->codec.codec_type);
1899 if (pkt
.dts
!= AV_NOPTS_VALUE
) {
1900 int64_t delta
= pkt
.dts
- ist
->next_pts
;
1901 if(ABS(delta
) > 10LL*AV_TIME_BASE
&& !copy_ts
){
1902 input_files_ts_offset
[ist
->file_index
]-= delta
;
1904 fprintf(stderr
, "timestamp discontinuity %lld, new offset= %lld\n", delta
, input_files_ts_offset
[ist
->file_index
]);
1905 for(i
=0; i
<file_table
[file_index
].nb_streams
; i
++){
1906 int index
= file_table
[file_index
].ist_index
+ i
;
1907 ist_table
[index
]->next_pts
+= delta
;
1908 ist_table
[index
]->is_start
=1;
1913 //fprintf(stderr,"read #%d.%d size=%d\n", ist->file_index, ist->index, pkt.size);
1914 if (output_packet(ist
, ist_index
, ost_table
, nb_ostreams
, &pkt
) < 0) {
1917 fprintf(stderr
, "Error while decoding stream #%d.%d\n",
1918 ist
->file_index
, ist
->index
);
1920 av_free_packet(&pkt
);
1925 av_free_packet(&pkt
);
1927 /* dump report by using the output first video and audio streams */
1928 print_report(output_files
, ost_table
, nb_ostreams
, 0);
1931 /* at the end of stream, we must flush the decoder buffers */
1932 for(i
=0;i
<nb_istreams
;i
++) {
1934 if (ist
->decoding_needed
) {
1935 output_packet(ist
, i
, ost_table
, nb_ostreams
, NULL
);
1941 /* write the trailer if needed and close file */
1942 for(i
=0;i
<nb_output_files
;i
++) {
1943 os
= output_files
[i
];
1944 av_write_trailer(os
);
1947 /* dump report by using the first video and audio streams */
1948 print_report(output_files
, ost_table
, nb_ostreams
, 1);
1950 /* close each encoder */
1951 for(i
=0;i
<nb_ostreams
;i
++) {
1953 if (ost
->encoding_needed
) {
1954 av_freep(&ost
->st
->codec
.stats_in
);
1955 avcodec_close(&ost
->st
->codec
);
1959 /* close each decoder */
1960 for(i
=0;i
<nb_istreams
;i
++) {
1962 if (ist
->decoding_needed
) {
1963 avcodec_close(&ist
->st
->codec
);
1971 av_free(file_table
);
1974 for(i
=0;i
<nb_istreams
;i
++) {
1981 for(i
=0;i
<nb_ostreams
;i
++) {
1985 fclose(ost
->logfile
);
1986 ost
->logfile
= NULL
;
1988 fifo_free(&ost
->fifo
); /* works even if fifo is not
1989 initialized but set to zero */
1990 av_free(ost
->pict_tmp
.data
[0]);
1991 if (ost
->video_resample
)
1992 img_resample_close(ost
->img_resample_ctx
);
1993 if (ost
->audio_resample
)
1994 audio_resample_close(ost
->resample
);
2007 int file_read(const char *filename
)
2010 unsigned char buffer
[1024];
2013 if (url_open(&h
, filename
, O_RDONLY
) < 0) {
2014 printf("could not open '%s'\n", filename
);
2018 len
= url_read(h
, buffer
, sizeof(buffer
));
2021 for(i
=0;i
<len
;i
++) putchar(buffer
[i
]);
2028 static void opt_image_format(const char *arg
)
2032 for(f
= first_image_format
; f
!= NULL
; f
= f
->next
) {
2033 if (!strcmp(arg
, f
->name
))
2037 fprintf(stderr
, "Unknown image format: '%s'\n", arg
);
2043 static void opt_format(const char *arg
)
2045 /* compatibility stuff for pgmyuv */
2046 if (!strcmp(arg
, "pgmyuv")) {
2047 pgmyuv_compatibility_hack
=1;
2048 // opt_image_format(arg);
2052 file_iformat
= av_find_input_format(arg
);
2053 file_oformat
= guess_format(arg
, NULL
, NULL
);
2054 if (!file_iformat
&& !file_oformat
) {
2055 fprintf(stderr
, "Unknown input or output format: %s\n", arg
);
2060 static void opt_video_bitrate(const char *arg
)
2062 video_bit_rate
= atoi(arg
) * 1000;
2065 static void opt_video_bitrate_tolerance(const char *arg
)
2067 video_bit_rate_tolerance
= atoi(arg
) * 1000;
2070 static void opt_video_bitrate_max(const char *arg
)
2072 video_rc_max_rate
= atoi(arg
) * 1000;
2075 static void opt_video_bitrate_min(const char *arg
)
2077 video_rc_min_rate
= atoi(arg
) * 1000;
2080 static void opt_video_buffer_size(const char *arg
)
2082 video_rc_buffer_size
= atoi(arg
) * 8*1024;
2085 static void opt_video_rc_eq(char *arg
)
2090 static void opt_video_rc_override_string(char *arg
)
2092 video_rc_override_string
= arg
;
2096 static void opt_workaround_bugs(const char *arg
)
2098 workaround_bugs
= atoi(arg
);
2101 static void opt_dct_algo(const char *arg
)
2103 dct_algo
= atoi(arg
);
2106 static void opt_idct_algo(const char *arg
)
2108 idct_algo
= atoi(arg
);
2111 static void opt_me_threshold(const char *arg
)
2113 me_threshold
= atoi(arg
);
2116 static void opt_mb_threshold(const char *arg
)
2118 mb_threshold
= atoi(arg
);
2121 static void opt_error_resilience(const char *arg
)
2123 error_resilience
= atoi(arg
);
2126 static void opt_error_concealment(const char *arg
)
2128 error_concealment
= atoi(arg
);
2131 static void opt_debug(const char *arg
)
2136 static void opt_vismv(const char *arg
)
2138 debug_mv
= atoi(arg
);
2141 static void opt_verbose(const char *arg
)
2143 verbose
= atoi(arg
);
2144 av_log_set_level(atoi(arg
));
2147 static void opt_frame_rate(const char *arg
)
2149 if (parse_frame_rate(&frame_rate
, &frame_rate_base
, arg
) < 0) {
2150 fprintf(stderr
, "Incorrect frame rate\n");
2155 static void opt_frame_crop_top(const char *arg
)
2157 frame_topBand
= atoi(arg
);
2158 if (frame_topBand
< 0) {
2159 fprintf(stderr
, "Incorrect top crop size\n");
2162 if ((frame_topBand
% 2) != 0) {
2163 fprintf(stderr
, "Top crop size must be a multiple of 2\n");
2166 if ((frame_topBand
) >= frame_height
){
2167 fprintf(stderr
, "Vertical crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n");
2170 frame_height
-= frame_topBand
;
2173 static void opt_frame_crop_bottom(const char *arg
)
2175 frame_bottomBand
= atoi(arg
);
2176 if (frame_bottomBand
< 0) {
2177 fprintf(stderr
, "Incorrect bottom crop size\n");
2180 if ((frame_bottomBand
% 2) != 0) {
2181 fprintf(stderr
, "Bottom crop size must be a multiple of 2\n");
2184 if ((frame_bottomBand
) >= frame_height
){
2185 fprintf(stderr
, "Vertical crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n");
2188 frame_height
-= frame_bottomBand
;
2191 static void opt_frame_crop_left(const char *arg
)
2193 frame_leftBand
= atoi(arg
);
2194 if (frame_leftBand
< 0) {
2195 fprintf(stderr
, "Incorrect left crop size\n");
2198 if ((frame_leftBand
% 2) != 0) {
2199 fprintf(stderr
, "Left crop size must be a multiple of 2\n");
2202 if ((frame_leftBand
) >= frame_width
){
2203 fprintf(stderr
, "Horizontal crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n");
2206 frame_width
-= frame_leftBand
;
2209 static void opt_frame_crop_right(const char *arg
)
2211 frame_rightBand
= atoi(arg
);
2212 if (frame_rightBand
< 0) {
2213 fprintf(stderr
, "Incorrect right crop size\n");
2216 if ((frame_rightBand
% 2) != 0) {
2217 fprintf(stderr
, "Right crop size must be a multiple of 2\n");
2220 if ((frame_rightBand
) >= frame_width
){
2221 fprintf(stderr
, "Horizontal crop dimensions are outside the range of the original image.\nRemember to crop first and scale second.\n");
2224 frame_width
-= frame_rightBand
;
2227 static void opt_frame_size(const char *arg
)
2229 if (parse_image_size(&frame_width
, &frame_height
, arg
) < 0) {
2230 fprintf(stderr
, "Incorrect frame size\n");
2233 if ((frame_width
% 2) != 0 || (frame_height
% 2) != 0) {
2234 fprintf(stderr
, "Frame size must be a multiple of 2\n");
2240 #define SCALEBITS 10
2241 #define ONE_HALF (1 << (SCALEBITS - 1))
2242 #define FIX(x) ((int) ((x) * (1<<SCALEBITS) + 0.5))
2244 #define RGB_TO_Y(r, g, b) \
2245 ((FIX(0.29900) * (r) + FIX(0.58700) * (g) + \
2246 FIX(0.11400) * (b) + ONE_HALF) >> SCALEBITS)
2248 #define RGB_TO_U(r1, g1, b1, shift)\
2249 (((- FIX(0.16874) * r1 - FIX(0.33126) * g1 + \
2250 FIX(0.50000) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128)
2252 #define RGB_TO_V(r1, g1, b1, shift)\
2253 (((FIX(0.50000) * r1 - FIX(0.41869) * g1 - \
2254 FIX(0.08131) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128)
2256 static void opt_pad_color(const char *arg
) {
2257 /* Input is expected to be six hex digits similar to
2258 how colors are expressed in html tags (but without the #) */
2259 int rgb
= strtol(arg
, NULL
, 16);
2263 g
= ((rgb
>> 8) & 255);
2266 padcolor
[0] = RGB_TO_Y(r
,g
,b
);
2267 padcolor
[1] = RGB_TO_U(r
,g
,b
,0);
2268 padcolor
[2] = RGB_TO_V(r
,g
,b
,0);
2271 static void opt_frame_pad_top(const char *arg
)
2273 frame_padtop
= atoi(arg
);
2274 if (frame_padtop
< 0) {
2275 fprintf(stderr
, "Incorrect top pad size\n");
2278 if ((frame_padtop
% 2) != 0) {
2279 fprintf(stderr
, "Top pad size must be a multiple of 2\n");
2284 static void opt_frame_pad_bottom(const char *arg
)
2286 frame_padbottom
= atoi(arg
);
2287 if (frame_padbottom
< 0) {
2288 fprintf(stderr
, "Incorrect bottom pad size\n");
2291 if ((frame_padbottom
% 2) != 0) {
2292 fprintf(stderr
, "Bottom pad size must be a multiple of 2\n");
2298 static void opt_frame_pad_left(const char *arg
)
2300 frame_padleft
= atoi(arg
);
2301 if (frame_padleft
< 0) {
2302 fprintf(stderr
, "Incorrect left pad size\n");
2305 if ((frame_padleft
% 2) != 0) {
2306 fprintf(stderr
, "Left pad size must be a multiple of 2\n");
2312 static void opt_frame_pad_right(const char *arg
)
2314 frame_padright
= atoi(arg
);
2315 if (frame_padright
< 0) {
2316 fprintf(stderr
, "Incorrect right pad size\n");
2319 if ((frame_padright
% 2) != 0) {
2320 fprintf(stderr
, "Right pad size must be a multiple of 2\n");
2326 static void opt_frame_pix_fmt(const char *arg
)
2328 frame_pix_fmt
= avcodec_get_pix_fmt(arg
);
2331 static void opt_frame_aspect_ratio(const char *arg
)
2337 p
= strchr(arg
, ':');
2339 x
= strtol(arg
, (char **)&arg
, 10);
2341 y
= strtol(arg
+1, (char **)&arg
, 10);
2343 ar
= (double)x
/ (double)y
;
2345 ar
= strtod(arg
, (char **)&arg
);
2348 fprintf(stderr
, "Incorrect aspect ratio specification.\n");
2351 frame_aspect_ratio
= ar
;
2354 static void opt_gop_size(const char *arg
)
2356 gop_size
= atoi(arg
);
2359 static void opt_b_frames(const char *arg
)
2361 b_frames
= atoi(arg
);
2362 if (b_frames
> FF_MAX_B_FRAMES
) {
2363 fprintf(stderr
, "\nCannot have more than %d B frames, increase FF_MAX_B_FRAMES.\n", FF_MAX_B_FRAMES
);
2365 } else if (b_frames
< 1) {
2366 fprintf(stderr
, "\nNumber of B frames must be higher than 0\n");
2371 static void opt_mb_decision(const char *arg
)
2373 mb_decision
= atoi(arg
);
2376 static void opt_mb_cmp(const char *arg
)
2381 static void opt_ildct_cmp(const char *arg
)
2383 ildct_cmp
= atoi(arg
);
2386 static void opt_sub_cmp(const char *arg
)
2388 sub_cmp
= atoi(arg
);
2391 static void opt_cmp(const char *arg
)
2396 static void opt_pre_cmp(const char *arg
)
2398 pre_cmp
= atoi(arg
);
2401 static void opt_pre_me(const char *arg
)
2406 static void opt_lumi_mask(const char *arg
)
2408 lumi_mask
= atof(arg
);
2411 static void opt_dark_mask(const char *arg
)
2413 dark_mask
= atof(arg
);
2416 static void opt_scplx_mask(const char *arg
)
2418 scplx_mask
= atof(arg
);
2421 static void opt_tcplx_mask(const char *arg
)
2423 tcplx_mask
= atof(arg
);
2426 static void opt_p_mask(const char *arg
)
2431 static void opt_qscale(const char *arg
)
2433 video_qscale
= atof(arg
);
2434 if (video_qscale
< 0.01 ||
2435 video_qscale
> 255) {
2436 fprintf(stderr
, "qscale must be >= 0.01 and <= 255\n");
2441 static void opt_lmax(const char *arg
)
2443 video_lmax
= atof(arg
)*FF_QP2LAMBDA
;
2446 static void opt_lmin(const char *arg
)
2448 video_lmin
= atof(arg
)*FF_QP2LAMBDA
;
2451 static void opt_qmin(const char *arg
)
2453 video_qmin
= atoi(arg
);
2454 if (video_qmin
< 0 ||
2456 fprintf(stderr
, "qmin must be >= 1 and <= 31\n");
2461 static void opt_qmax(const char *arg
)
2463 video_qmax
= atoi(arg
);
2464 if (video_qmax
< 0 ||
2466 fprintf(stderr
, "qmax must be >= 1 and <= 31\n");
2471 static void opt_mb_qmin(const char *arg
)
2473 video_mb_qmin
= atoi(arg
);
2474 if (video_mb_qmin
< 0 ||
2475 video_mb_qmin
> 31) {
2476 fprintf(stderr
, "qmin must be >= 1 and <= 31\n");
2481 static void opt_mb_qmax(const char *arg
)
2483 video_mb_qmax
= atoi(arg
);
2484 if (video_mb_qmax
< 0 ||
2485 video_mb_qmax
> 31) {
2486 fprintf(stderr
, "qmax must be >= 1 and <= 31\n");
2491 static void opt_qdiff(const char *arg
)
2493 video_qdiff
= atoi(arg
);
2494 if (video_qdiff
< 0 ||
2496 fprintf(stderr
, "qdiff must be >= 1 and <= 31\n");
2501 static void opt_qblur(const char *arg
)
2503 video_qblur
= atof(arg
);
2506 static void opt_qcomp(const char *arg
)
2508 video_qcomp
= atof(arg
);
2511 static void opt_rc_initial_cplx(const char *arg
)
2513 video_rc_initial_cplx
= atof(arg
);
2515 static void opt_b_qfactor(const char *arg
)
2517 video_b_qfactor
= atof(arg
);
2519 static void opt_i_qfactor(const char *arg
)
2521 video_i_qfactor
= atof(arg
);
2523 static void opt_b_qoffset(const char *arg
)
2525 video_b_qoffset
= atof(arg
);
2527 static void opt_i_qoffset(const char *arg
)
2529 video_i_qoffset
= atof(arg
);
2532 static void opt_ibias(const char *arg
)
2534 video_intra_quant_bias
= atoi(arg
);
2536 static void opt_pbias(const char *arg
)
2538 video_inter_quant_bias
= atoi(arg
);
2541 static void opt_packet_size(const char *arg
)
2543 packet_size
= atoi(arg
);
2546 static void opt_error_rate(const char *arg
)
2548 error_rate
= atoi(arg
);
2551 static void opt_strict(const char *arg
)
2556 static void opt_top_field_first(const char *arg
)
2558 top_field_first
= atoi(arg
);
2561 static void opt_noise_reduction(const char *arg
)
2563 noise_reduction
= atoi(arg
);
2566 static void opt_qns(const char *arg
)
2571 static void opt_sc_threshold(const char *arg
)
2573 sc_threshold
= atoi(arg
);
2576 static void opt_me_range(const char *arg
)
2578 me_range
= atoi(arg
);
2581 static void opt_thread_count(const char *arg
)
2583 thread_count
= atoi(arg
);
2584 #if !defined(HAVE_THREADS)
2586 fprintf(stderr
, "Warning: not compiled with thread support, using thread emulation\n");
2590 static void opt_audio_bitrate(const char *arg
)
2592 audio_bit_rate
= atoi(arg
) * 1000;
2595 static void opt_audio_rate(const char *arg
)
2597 audio_sample_rate
= atoi(arg
);
2600 static void opt_audio_channels(const char *arg
)
2602 audio_channels
= atoi(arg
);
2605 static void opt_video_device(const char *arg
)
2607 video_device
= av_strdup(arg
);
2610 static void opt_grab_device(const char *arg
)
2612 grab_device
= av_strdup(arg
);
2615 static void opt_video_channel(const char *arg
)
2617 video_channel
= strtol(arg
, NULL
, 0);
2620 static void opt_video_standard(const char *arg
)
2622 video_standard
= av_strdup(arg
);
2625 static void opt_audio_device(const char *arg
)
2627 audio_device
= av_strdup(arg
);
2630 static void opt_audio_codec(const char *arg
)
2634 if (!strcmp(arg
, "copy")) {
2635 audio_stream_copy
= 1;
2639 if (!strcmp(p
->name
, arg
) && p
->type
== CODEC_TYPE_AUDIO
)
2644 fprintf(stderr
, "Unknown audio codec '%s'\n", arg
);
2647 audio_codec_id
= p
->id
;
2652 static void opt_audio_tag(const char *arg
)
2655 audio_codec_tag
= strtol(arg
, &tail
, 0);
2658 audio_codec_tag
= arg
[0] + (arg
[1]<<8) + (arg
[2]<<16) + (arg
[3]<<24);
2661 static void opt_video_tag(const char *arg
)
2664 video_codec_tag
= strtol(arg
, &tail
, 0);
2667 video_codec_tag
= arg
[0] + (arg
[1]<<8) + (arg
[2]<<16) + (arg
[3]<<24);
2670 static void add_frame_hooker(const char *arg
)
2675 char *args
= av_strdup(arg
);
2679 argv
[0] = strtok(args
, " ");
2680 while (argc
< 62 && (argv
[++argc
] = strtok(NULL
, " "))) {
2683 i
= frame_hook_add(argc
, argv
);
2686 fprintf(stderr
, "Failed to add video hook function: %s\n", arg
);
2691 const char *motion_str
[] = {
2701 static void opt_motion_estimation(const char *arg
)
2707 fprintf(stderr
, "Unknown motion estimation method '%s'\n", arg
);
2710 if (!strcmp(*p
, arg
))
2714 me_method
= (p
- motion_str
) + 1;
2717 static void opt_video_codec(const char *arg
)
2721 if (!strcmp(arg
, "copy")) {
2722 video_stream_copy
= 1;
2726 if (!strcmp(p
->name
, arg
) && p
->type
== CODEC_TYPE_VIDEO
)
2731 fprintf(stderr
, "Unknown video codec '%s'\n", arg
);
2734 video_codec_id
= p
->id
;
2739 static void opt_map(const char *arg
)
2745 m
= &stream_maps
[nb_stream_maps
++];
2747 m
->file_index
= strtol(arg
, (char **)&p
, 0);
2751 m
->stream_index
= strtol(p
, (char **)&p
, 0);
2754 static void opt_map_meta_data(const char *arg
)
2760 m
= &meta_data_maps
[nb_meta_data_maps
++];
2762 m
->out_file
= strtol(arg
, (char **)&p
, 0);
2766 m
->in_file
= strtol(p
, (char **)&p
, 0);
2769 static void opt_recording_time(const char *arg
)
2771 recording_time
= parse_date(arg
, 1);
2774 static void opt_start_time(const char *arg
)
2776 start_time
= parse_date(arg
, 1);
2779 static void opt_rec_timestamp(const char *arg
)
2781 rec_timestamp
= parse_date(arg
, 0) / 1000000;
2784 static void opt_input_ts_offset(const char *arg
)
2786 input_ts_offset
= parse_date(arg
, 1);
2789 static void opt_input_file(const char *filename
)
2791 AVFormatContext
*ic
;
2792 AVFormatParameters params
, *ap
= ¶ms
;
2793 int err
, i
, ret
, rfps
, rfps_base
;
2796 if (!strcmp(filename
, "-"))
2799 using_stdin
|= !strncmp(filename
, "pipe:", 5) ||
2800 !strcmp( filename
, "/dev/stdin" );
2802 /* get default parameters from command line */
2803 memset(ap
, 0, sizeof(*ap
));
2804 ap
->sample_rate
= audio_sample_rate
;
2805 ap
->channels
= audio_channels
;
2806 ap
->frame_rate
= frame_rate
;
2807 ap
->frame_rate_base
= frame_rate_base
;
2808 ap
->width
= frame_width
+ frame_padleft
+ frame_padright
;
2809 ap
->height
= frame_height
+ frame_padtop
+ frame_padbottom
;
2810 ap
->image_format
= image_format
;
2811 ap
->pix_fmt
= frame_pix_fmt
;
2812 ap
->device
= grab_device
;
2813 ap
->channel
= video_channel
;
2814 ap
->standard
= video_standard
;
2815 ap
->video_codec_id
= video_codec_id
;
2816 ap
->audio_codec_id
= audio_codec_id
;
2817 if(pgmyuv_compatibility_hack
)
2818 ap
->video_codec_id
= CODEC_ID_PGMYUV
;
2820 /* open the input file with generic libav function */
2821 err
= av_open_input_file(&ic
, filename
, file_iformat
, 0, ap
);
2823 print_error(filename
, err
);
2827 /* If not enough info to get the stream parameters, we decode the
2828 first frames to get it. (used in mpeg case for example) */
2829 ret
= av_find_stream_info(ic
);
2830 if (ret
< 0 && verbose
>= 0) {
2831 fprintf(stderr
, "%s: could not find codec parameters\n", filename
);
2835 timestamp
= start_time
;
2836 /* add the stream start time */
2837 if (ic
->start_time
!= AV_NOPTS_VALUE
)
2838 timestamp
+= ic
->start_time
;
2840 /* if seeking requested, we execute it */
2841 if (start_time
!= 0) {
2842 ret
= av_seek_frame(ic
, -1, timestamp
, AVSEEK_FLAG_BACKWARD
);
2844 fprintf(stderr
, "%s: could not seek to position %0.3f\n",
2845 filename
, (double)timestamp
/ AV_TIME_BASE
);
2847 /* reset seek info */
2851 /* update the current parameters so that they match the one of the input stream */
2852 for(i
=0;i
<ic
->nb_streams
;i
++) {
2853 AVCodecContext
*enc
= &ic
->streams
[i
]->codec
;
2854 #if defined(HAVE_THREADS)
2856 avcodec_thread_init(enc
, thread_count
);
2858 enc
->thread_count
= thread_count
;
2859 switch(enc
->codec_type
) {
2860 case CODEC_TYPE_AUDIO
:
2861 //fprintf(stderr, "\nInput Audio channels: %d", enc->channels);
2862 audio_channels
= enc
->channels
;
2863 audio_sample_rate
= enc
->sample_rate
;
2865 case CODEC_TYPE_VIDEO
:
2866 frame_height
= enc
->height
;
2867 frame_width
= enc
->width
;
2868 frame_aspect_ratio
= av_q2d(enc
->sample_aspect_ratio
) * enc
->width
/ enc
->height
;
2869 frame_pix_fmt
= enc
->pix_fmt
;
2870 rfps
= ic
->streams
[i
]->r_frame_rate
;
2871 rfps_base
= ic
->streams
[i
]->r_frame_rate_base
;
2872 enc
->workaround_bugs
= workaround_bugs
;
2873 enc
->error_resilience
= error_resilience
;
2874 enc
->error_concealment
= error_concealment
;
2875 enc
->idct_algo
= idct_algo
;
2877 enc
->debug_mv
= debug_mv
;
2878 enc
->lowres
= lowres
;
2880 enc
->flags
|= CODEC_FLAG_BITEXACT
;
2882 enc
->debug
|= FF_DEBUG_MV
;
2884 if (enc
->frame_rate
!= rfps
|| enc
->frame_rate_base
!= rfps_base
) {
2887 fprintf(stderr
,"\nSeems that stream %d comes from film source: %2.2f (%d/%d) -> %2.2f (%d/%d)\n",
2888 i
, (float)enc
->frame_rate
/ enc
->frame_rate_base
, enc
->frame_rate
, enc
->frame_rate_base
,
2890 (float)rfps
/ rfps_base
, rfps
, rfps_base
);
2892 /* update the current frame rate to match the stream frame rate */
2894 frame_rate_base
= rfps_base
;
2896 enc
->rate_emu
= rate_emu
;
2898 case CODEC_TYPE_DATA
:
2905 input_files
[nb_input_files
] = ic
;
2906 input_files_ts_offset
[nb_input_files
] = input_ts_offset
- (copy_ts ?
0 : timestamp
);
2907 /* dump the file content */
2909 dump_format(ic
, nb_input_files
, filename
, 0);
2912 file_iformat
= NULL
;
2913 file_oformat
= NULL
;
2914 image_format
= NULL
;
2922 static void opt_grab(const char *arg
)
2924 file_iformat
= av_find_input_format(arg
);
2928 static void check_audio_video_inputs(int *has_video_ptr
, int *has_audio_ptr
)
2930 int has_video
, has_audio
, i
, j
;
2931 AVFormatContext
*ic
;
2935 for(j
=0;j
<nb_input_files
;j
++) {
2936 ic
= input_files
[j
];
2937 for(i
=0;i
<ic
->nb_streams
;i
++) {
2938 AVCodecContext
*enc
= &ic
->streams
[i
]->codec
;
2939 switch(enc
->codec_type
) {
2940 case CODEC_TYPE_AUDIO
:
2943 case CODEC_TYPE_VIDEO
:
2946 case CODEC_TYPE_DATA
:
2953 *has_video_ptr
= has_video
;
2954 *has_audio_ptr
= has_audio
;
2957 static void opt_output_file(const char *filename
)
2960 AVFormatContext
*oc
;
2961 int use_video
, use_audio
, nb_streams
, input_has_video
, input_has_audio
;
2963 AVFormatParameters params
, *ap
= ¶ms
;
2965 if (!strcmp(filename
, "-"))
2968 oc
= av_alloc_format_context();
2970 if (!file_oformat
) {
2971 file_oformat
= guess_format(NULL
, filename
, NULL
);
2972 if (!file_oformat
) {
2973 fprintf(stderr
, "Unable for find a suitable output format for '%s'\n",
2979 oc
->oformat
= file_oformat
;
2981 if (!strcmp(file_oformat
->name
, "ffm") &&
2982 strstart(filename
, "http:", NULL
)) {
2983 /* special case for files sent to ffserver: we get the stream
2984 parameters from ffserver */
2985 if (read_ffserver_streams(oc
, filename
) < 0) {
2986 fprintf(stderr
, "Could not read stream parameters from '%s'\n", filename
);
2990 use_video
= file_oformat
->video_codec
!= CODEC_ID_NONE
|| video_stream_copy
;
2991 use_audio
= file_oformat
->audio_codec
!= CODEC_ID_NONE
|| audio_stream_copy
;
2993 /* disable if no corresponding type found and at least one
2995 if (nb_input_files
> 0) {
2996 check_audio_video_inputs(&input_has_video
, &input_has_audio
);
2997 if (!input_has_video
)
2999 if (!input_has_audio
)
3003 /* manual disable */
3004 if (audio_disable
) {
3007 if (video_disable
) {
3013 AVCodecContext
*video_enc
;
3015 st
= av_new_stream(oc
, nb_streams
++);
3017 fprintf(stderr
, "Could not alloc stream\n");
3020 #if defined(HAVE_THREADS)
3022 avcodec_thread_init(&st
->codec
, thread_count
);
3025 video_enc
= &st
->codec
;
3028 video_enc
->codec_tag
= video_codec_tag
;
3030 if(!strcmp(file_oformat
->name
, "mp4") || !strcmp(file_oformat
->name
, "mov") || !strcmp(file_oformat
->name
, "3gp"))
3031 video_enc
->flags
|= CODEC_FLAG_GLOBAL_HEADER
;
3032 if (video_stream_copy
) {
3033 st
->stream_copy
= 1;
3034 video_enc
->codec_type
= CODEC_TYPE_VIDEO
;
3040 codec_id
= av_guess_codec(file_oformat
, NULL
, filename
, NULL
, CODEC_TYPE_VIDEO
);
3041 if (video_codec_id
!= CODEC_ID_NONE
)
3042 codec_id
= video_codec_id
;
3044 video_enc
->codec_id
= codec_id
;
3045 codec
= avcodec_find_encoder(codec_id
);
3047 video_enc
->bit_rate
= video_bit_rate
;
3048 video_enc
->bit_rate_tolerance
= video_bit_rate_tolerance
;
3049 video_enc
->frame_rate
= frame_rate
;
3050 video_enc
->frame_rate_base
= frame_rate_base
;
3051 if(codec
&& codec
->supported_framerates
){
3052 const AVRational
*p
= codec
->supported_framerates
;
3053 AVRational req
= (AVRational
){frame_rate
, frame_rate_base
};
3054 const AVRational
*best
=NULL
;
3055 AVRational best_error
= (AVRational
){INT_MAX
, 1};
3056 for(; p
->den
!=0; p
++){
3057 AVRational error
= av_sub_q(req
, *p
);
3058 if(error
.num
<0) error
.num
*= -1;
3059 if(av_cmp_q(error
, best_error
) < 0){
3064 video_enc
->frame_rate
= best
->num
;
3065 video_enc
->frame_rate_base
= best
->den
;
3068 video_enc
->width
= frame_width
+ frame_padright
+ frame_padleft
;
3069 video_enc
->height
= frame_height
+ frame_padtop
+ frame_padbottom
;
3070 video_enc
->sample_aspect_ratio
= av_d2q(frame_aspect_ratio
*frame_height
/frame_width
, 255);
3071 video_enc
->pix_fmt
= frame_pix_fmt
;
3073 if(codec
&& codec
->pix_fmts
){
3074 const enum PixelFormat
*p
= codec
->pix_fmts
;
3076 if(*p
== video_enc
->pix_fmt
)
3080 video_enc
->pix_fmt
= codec
->pix_fmts
[0];
3084 video_enc
->gop_size
= gop_size
;
3086 video_enc
->gop_size
= 0;
3087 if (video_qscale
|| same_quality
) {
3088 video_enc
->flags
|= CODEC_FLAG_QSCALE
;
3089 st
->quality
= FF_QP2LAMBDA
* video_qscale
;
3093 video_enc
->intra_matrix
= intra_matrix
;
3095 video_enc
->inter_matrix
= inter_matrix
;
3098 video_enc
->flags
|= CODEC_FLAG_BITEXACT
;
3100 video_enc
->mb_decision
= mb_decision
;
3101 video_enc
->mb_cmp
= mb_cmp
;
3102 video_enc
->ildct_cmp
= ildct_cmp
;
3103 video_enc
->me_sub_cmp
= sub_cmp
;
3104 video_enc
->me_cmp
= cmp
;
3105 video_enc
->me_pre_cmp
= pre_cmp
;
3106 video_enc
->pre_me
= pre_me
;
3107 video_enc
->lumi_masking
= lumi_mask
;
3108 video_enc
->dark_masking
= dark_mask
;
3109 video_enc
->spatial_cplx_masking
= scplx_mask
;
3110 video_enc
->temporal_cplx_masking
= tcplx_mask
;
3111 video_enc
->p_masking
= p_mask
;
3112 video_enc
->quantizer_noise_shaping
= qns
;
3115 video_enc
->flags
|= CODEC_FLAG_H263P_UMV
;
3118 video_enc
->flags
|= CODEC_FLAG_H263P_SLICE_STRUCT
;
3121 video_enc
->flags
|= CODEC_FLAG_H263P_AIC
;
3124 video_enc
->flags
|= CODEC_FLAG_H263P_AIV
;
3127 video_enc
->flags
|= CODEC_FLAG_4MV
;
3130 video_enc
->flags
|= CODEC_FLAG_OBMC
;
3133 video_enc
->flags
|= CODEC_FLAG_LOOP_FILTER
;
3137 video_enc
->flags
|= CODEC_FLAG_PART
;
3140 video_enc
->flags
|= CODEC_FLAG_ALT_SCAN
;
3143 video_enc
->flags
|= CODEC_FLAG_TRELLIS_QUANT
;
3145 if (use_scan_offset
) {
3146 video_enc
->flags
|= CODEC_FLAG_SVCD_SCAN_OFFSET
;
3149 video_enc
->flags
|= CODEC_FLAG_CLOSED_GOP
;
3152 video_enc
->flags2
|= CODEC_FLAG2_STRICT_GOP
;
3155 video_enc
->flags
|= CODEC_FLAG_QPEL
;
3158 video_enc
->flags
|= CODEC_FLAG_QP_RD
;
3161 video_enc
->flags
|= CODEC_FLAG_CBP_RD
;
3164 video_enc
->max_b_frames
= b_frames
;
3165 video_enc
->b_frame_strategy
= 0;
3166 video_enc
->b_quant_factor
= 2.0;
3168 if (do_interlace_dct
) {
3169 video_enc
->flags
|= CODEC_FLAG_INTERLACED_DCT
;
3171 if (do_interlace_me
) {
3172 video_enc
->flags
|= CODEC_FLAG_INTERLACED_ME
;
3174 video_enc
->qmin
= video_qmin
;
3175 video_enc
->qmax
= video_qmax
;
3176 video_enc
->lmin
= video_lmin
;
3177 video_enc
->lmax
= video_lmax
;
3178 video_enc
->mb_qmin
= video_mb_qmin
;
3179 video_enc
->mb_qmax
= video_mb_qmax
;
3180 video_enc
->max_qdiff
= video_qdiff
;
3181 video_enc
->qblur
= video_qblur
;
3182 video_enc
->qcompress
= video_qcomp
;
3183 video_enc
->rc_eq
= video_rc_eq
;
3184 video_enc
->debug
= debug
;
3185 video_enc
->debug_mv
= debug_mv
;
3186 video_enc
->thread_count
= thread_count
;
3187 p
= video_rc_override_string
;
3190 int e
=sscanf(p
, "%d,%d,%d", &start
, &end
, &q
);
3192 fprintf(stderr
, "error parsing rc_override\n");
3195 video_enc
->rc_override
=
3196 av_realloc(video_enc
->rc_override
,
3197 sizeof(RcOverride
)*(i
+1));
3198 video_enc
->rc_override
[i
].start_frame
= start
;
3199 video_enc
->rc_override
[i
].end_frame
= end
;
3201 video_enc
->rc_override
[i
].qscale
= q
;
3202 video_enc
->rc_override
[i
].quality_factor
= 1.0;
3205 video_enc
->rc_override
[i
].qscale
= 0;
3206 video_enc
->rc_override
[i
].quality_factor
= -q
/100.0;
3211 video_enc
->rc_override_count
=i
;
3213 video_enc
->rc_max_rate
= video_rc_max_rate
;
3214 video_enc
->rc_min_rate
= video_rc_min_rate
;
3215 video_enc
->rc_buffer_size
= video_rc_buffer_size
;
3216 video_enc
->rc_initial_buffer_occupancy
= video_rc_buffer_size
*3/4;
3217 video_enc
->rc_buffer_aggressivity
= video_rc_buffer_aggressivity
;
3218 video_enc
->rc_initial_cplx
= video_rc_initial_cplx
;
3219 video_enc
->i_quant_factor
= video_i_qfactor
;
3220 video_enc
->b_quant_factor
= video_b_qfactor
;
3221 video_enc
->i_quant_offset
= video_i_qoffset
;
3222 video_enc
->b_quant_offset
= video_b_qoffset
;
3223 video_enc
->intra_quant_bias
= video_intra_quant_bias
;
3224 video_enc
->inter_quant_bias
= video_inter_quant_bias
;
3225 video_enc
->dct_algo
= dct_algo
;
3226 video_enc
->idct_algo
= idct_algo
;
3227 video_enc
->me_threshold
= me_threshold
;
3228 video_enc
->mb_threshold
= mb_threshold
;
3229 video_enc
->intra_dc_precision
= intra_dc_precision
- 8;
3230 video_enc
->strict_std_compliance
= strict
;
3231 video_enc
->error_rate
= error_rate
;
3232 video_enc
->noise_reduction
= noise_reduction
;
3233 video_enc
->scenechange_threshold
= sc_threshold
;
3234 video_enc
->me_range
= me_range
;
3235 video_enc
->coder_type
= coder
;
3236 video_enc
->context_model
= context
;
3237 video_enc
->prediction_method
= predictor
;
3238 video_enc
->profile
= video_profile
;
3239 video_enc
->level
= video_level
;
3240 video_enc
->nsse_weight
= nsse_weight
;
3241 video_enc
->me_subpel_quality
= subpel_quality
;
3242 video_enc
->frame_skip_threshold
= frame_skip_threshold
;
3243 video_enc
->frame_skip_factor
= frame_skip_factor
;
3244 video_enc
->frame_skip_exp
= frame_skip_exp
;
3245 video_enc
->frame_skip_cmp
= frame_skip_cmp
;
3248 video_enc
->rtp_mode
= 1;
3249 video_enc
->rtp_payload_size
= packet_size
;
3253 video_enc
->flags
|= CODEC_FLAG_PSNR
;
3255 video_enc
->me_method
= me_method
;
3260 video_enc
->flags
|= CODEC_FLAG_PASS1
;
3262 video_enc
->flags
|= CODEC_FLAG_PASS2
;
3269 AVCodecContext
*audio_enc
;
3271 st
= av_new_stream(oc
, nb_streams
++);
3273 fprintf(stderr
, "Could not alloc stream\n");
3276 #if defined(HAVE_THREADS)
3278 avcodec_thread_init(&st
->codec
, thread_count
);
3281 audio_enc
= &st
->codec
;
3282 audio_enc
->codec_type
= CODEC_TYPE_AUDIO
;
3285 audio_enc
->codec_tag
= audio_codec_tag
;
3287 if(!strcmp(file_oformat
->name
, "mp4") || !strcmp(file_oformat
->name
, "mov") || !strcmp(file_oformat
->name
, "3gp"))
3288 audio_enc
->flags
|= CODEC_FLAG_GLOBAL_HEADER
;
3289 if (audio_stream_copy
) {
3290 st
->stream_copy
= 1;
3291 audio_enc
->channels
= audio_channels
;
3293 codec_id
= av_guess_codec(file_oformat
, NULL
, filename
, NULL
, CODEC_TYPE_AUDIO
);
3294 if (audio_codec_id
!= CODEC_ID_NONE
)
3295 codec_id
= audio_codec_id
;
3296 audio_enc
->codec_id
= codec_id
;
3298 audio_enc
->bit_rate
= audio_bit_rate
;
3299 audio_enc
->strict_std_compliance
= strict
;
3300 audio_enc
->thread_count
= thread_count
;
3301 /* For audio codecs other than AC3 or DTS we limit */
3302 /* the number of coded channels to stereo */
3303 if (audio_channels
> 2 && codec_id
!= CODEC_ID_AC3
3304 && codec_id
!= CODEC_ID_DTS
) {
3305 audio_enc
->channels
= 2;
3307 audio_enc
->channels
= audio_channels
;
3309 audio_enc
->sample_rate
= audio_sample_rate
;
3312 oc
->nb_streams
= nb_streams
;