2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #define VCODEC_FRAMENO 1
22 #define VCODEC_LIBAVCODEC 4
24 #define VCODEC_LIBDV 8
26 #define VCODEC_QTVIDEO 10
29 #define VCODEC_X264 13
33 #define ACODEC_VBRMP3 2
36 #define ACODEC_TOOLAME 5
38 #define ACODEC_TWOLAME 7
51 #if defined(__MINGW32__) || defined(__CYGWIN__)
60 #include "codec-cfg.h"
63 #include "parser-mecmd.h"
64 #include "parser-cfg.h"
68 #include "stream/stream.h"
69 #include "libmpdemux/aviprint.h"
70 #include "libmpdemux/demuxer.h"
71 #include "libmpdemux/stheader.h"
72 #include "libmpdemux/mp3_hdr.h"
73 #include "libmpdemux/muxer.h"
75 #include "input/input.h"
76 #include "libvo/video_out.h"
78 #include "libaf/af_format.h"
80 #include "libmpcodecs/mp_image.h"
81 #include "libmpcodecs/dec_audio.h"
82 #include "libmpcodecs/dec_video.h"
83 #include "libmpcodecs/vf.h"
84 #include "libmpcodecs/vd.h"
86 // for MPEGLAYER3WAVEFORMAT:
87 #include "libmpdemux/ms_hdr.h"
91 #include "libvo/fastmemcpy.h"
93 #include "osdep/timer.h"
96 #include "stream/stream_dvd.h"
99 #include "stream/stream_dvdnav.h"
100 #include "libavcodec/avcodec.h"
102 #include "libmpcodecs/ae.h"
103 int vo_doublebuffering
=0;
104 int vo_directrendering
=0;
105 int vo_config_count
=1;
106 int forced_subs_only
=0;
108 //--------------------------
111 int stream_cache_size
=-1;
112 #ifdef CONFIG_STREAM_CACHE
113 extern int cache_fill_status
;
115 float stream_cache_min_percent
=20.0;
116 float stream_cache_seek_min_percent
=50.0;
118 #define cache_fill_status 0
125 char* audio_lang
=NULL
;
126 char* dvdsub_lang
=NULL
;
127 static char* spudec_ifo
=NULL
;
129 static char** audio_codec_list
=NULL
; // override audio codec
130 static char** video_codec_list
=NULL
; // override video codec
131 static char** audio_fm_list
=NULL
; // override audio codec family
132 static char** video_fm_list
=NULL
; // override video codec family
133 extern char *demuxer_name
; // override demuxer
134 extern char *audio_demuxer_name
; // override audio demuxer
135 extern char *sub_demuxer_name
; // override sub demuxer
137 static int out_audio_codec
=-1;
138 static int out_video_codec
=-1;
140 int out_file_format
=MUXER_TYPE_AVI
; // default to AVI
142 double video_time_usage
=0;
143 double vout_time_usage
=0;
144 double max_video_time_usage
=0;
145 double max_vout_time_usage
=0;
146 double cur_video_time_usage
=0;
147 double cur_vout_time_usage
=0;
150 #include "osdep/priority.h"
153 int delay_corrected
=1;
154 static float default_max_pts_correction
=-1;//0.01f;
155 static float max_pts_correction
=0;//default_max_pts_correction;
156 static float c_total
=0;
158 static float audio_preload
=0.5;
159 static float audio_delay_fix
=0.0;
160 static float audio_delay
=0.0;
161 static int ignore_start
=0;
162 static int audio_density
=2;
165 static double force_ofps
=0; // set to 24 for inverse telecine
166 static int skip_limit
=-1;
167 float playback_speed
=1.0;
169 static int force_srate
=0;
170 static int audio_output_format
=0;
172 char *vobsub_out
=NULL
;
173 unsigned int vobsub_out_index
=0;
174 char *vobsub_out_id
=NULL
;
176 char* out_filename
=NULL
;
178 char *force_fourcc
=NULL
;
179 int force_audiofmttag
=-1;
181 char* passtmpfile
="divx2pass.log";
183 static int play_n_frames
=-1;
184 static int play_n_frames_mf
=-1;
186 #include "libvo/font_load.h"
187 #include "libvo/sub.h"
190 char *font_name
=NULL
;
191 char *sub_font_name
=NULL
;
192 extern int font_fontconfig
;
193 float font_factor
=0.75;
194 char **sub_name
=NULL
;
199 int suboverlap_enabled
= 1;
202 int encode_duplicates
=1;
204 // infos are empty by default
205 char *info_name
=NULL
;
206 char *info_artist
=NULL
;
207 char *info_genre
=NULL
;
208 char *info_subject
=NULL
;
209 char *info_copyright
=NULL
;
210 char *info_sourceform
=NULL
;
211 char *info_comment
=NULL
;
213 // Needed by libmpcodecs vf_vo.c
214 int config_video_out(const vo_functions_t
*vo
, uint32_t width
, uint32_t height
,
215 uint32_t d_width
, uint32_t d_height
, uint32_t flags
,
216 char *title
, uint32_t format
) {
219 // Needed by libmpdemux.
220 int mp_input_check_interrupt(int time
) {
225 void mplayer_put_key(int code
)
229 #include "libass/ass_mp.h"
230 char *current_module
;
231 #include "mpcommon.h"
233 // Needed by mpcommon.c
234 void set_osd_subtitle(subtitle
*subs
) {
236 vo_osd_changed(OSDTYPE_SUBTITLE
);
239 //-------------------------- config stuff:
243 static int cfg_inc_verbose(m_option_t
*conf
){ ++verbose
; return 0;}
245 static int cfg_include(m_option_t
*conf
, char *filename
){
246 return m_config_parse_config_file(mconfig
, filename
);
249 static double seek_to_sec
;
250 static off_t seek_to_byte
=0;
252 static m_time_size_t end_at
= { .type
= END_AT_NONE
, .pos
= 0 };
254 static char * frameno_filename
=NULL
;
257 unsigned char* start
;
264 static edl_record_ptr edl_records
= NULL
; ///< EDL entries memory area
265 static edl_record_ptr next_edl_record
= NULL
; ///< only for traversing edl_records
266 static short edl_muted
; ///< Stores whether EDL is currently in muted mode.
267 static short edl_seeking
; ///< When non-zero, stream is seekable.
268 static short edl_seek_type
; ///< When non-zero, frames are discarded instead of seeking.
270 #include "cfg-mencoder.h"
275 #include "libao2/audio_out.h"
277 static void mencoder_exit(int level
, const char *how
)
280 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_ExitingHow
, how
);
282 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_Exiting
);
287 static void parse_cfgfiles( m_config_t
* conf
)
290 if (!disable_system_conf
&&
291 m_config_parse_config_file(conf
, MPLAYER_CONFDIR
"/mencoder.conf") < 0)
292 mencoder_exit(1,MSGTR_ConfigFileError
);
294 if (!disable_user_conf
) {
295 if ((conffile
= get_path("mencoder.conf")) == NULL
) {
296 mp_msg(MSGT_CPLAYER
,MSGL_ERR
,MSGTR_GetpathProblem
);
298 if (m_config_parse_config_file(conf
, conffile
) < 0)
299 mencoder_exit(1,MSGTR_ConfigFileError
);
306 //---------------------------------------------------------------------------
308 static int dec_audio(sh_audio_t
*sh_audio
,unsigned char* buffer
,int total
){
311 while(size
<total
&& !at_eof
){
313 if(len
>MAX_OUTBURST
) len
=MAX_OUTBURST
;
314 if (decode_audio(sh_audio
, len
) < 0) at_eof
=1;
315 if(len
>sh_audio
->a_out_buffer_len
) len
=sh_audio
->a_out_buffer_len
;
316 fast_memcpy(buffer
+size
,sh_audio
->a_out_buffer
,len
);
317 sh_audio
->a_out_buffer_len
-=len
; size
+=len
;
318 if(sh_audio
->a_out_buffer_len
>0)
319 fast_memcpy(sh_audio
->a_out_buffer
,&sh_audio
->a_out_buffer
[len
],sh_audio
->a_out_buffer_len
);
324 //---------------------------------------------------------------------------
326 static volatile int at_eof
=0;
327 static volatile int interrupted
=0;
329 static void exit_sighandler(int x
){
331 interrupted
=2; /* 1 means error */
334 static muxer_t
* muxer
=NULL
;
336 static void add_subtitles(char *filename
, float fps
, int silent
)
340 ass_track_t
*asst
= 0;
343 if (!filename
) return;
345 subd
= sub_read_file(filename
, fps
);
349 asst
= ass_read_file(ass_library
, filename
, sub_cp
);
351 asst
= ass_read_file(ass_library
, filename
, 0);
353 if (ass_enabled
&& subd
&& !asst
)
354 asst
= ass_read_subdata(ass_library
, subd
, fps
);
356 if (!asst
&& !subd
&& !silent
)
358 if (!subd
&& !silent
)
360 mp_msg(MSGT_CPLAYER
, MSGL_ERR
, MSGTR_CantLoadSub
,
361 filename_recode(filename
));
364 if (!asst
&& !subd
) return;
369 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_FILE_SUB_FILENAME=%s\n",
370 filename_recode(filename
));
374 /* This function returns the absolute time for which MEncoder will switch files
375 * or move in the file so audio can be cut correctly. -1 if there is no limit. */
376 static float stop_time(demuxer_t
* demuxer
, muxer_stream_t
* mux_v
)
379 if (play_n_frames
>= 0) timeleft
= mux_v
->timer
+ play_n_frames
* (double)(mux_v
->h
.dwScale
) / mux_v
->h
.dwRate
;
380 if (end_at
.type
== END_AT_TIME
&& (timeleft
> end_at
.pos
|| timeleft
== -1)) timeleft
= end_at
.pos
;
381 if (next_edl_record
&& demuxer
&& demuxer
->video
) { // everything is OK to be checked
382 float tmp
= mux_v
->timer
+ next_edl_record
->start_sec
- demuxer
->video
->pts
;
383 if (timeleft
== -1 || timeleft
> tmp
) {
384 // There's less time in EDL than what we already know
385 if (next_edl_record
->action
== EDL_SKIP
&& edl_seeking
) {
387 } else if (next_edl_record
->action
== EDL_MUTE
) {
388 //timeleft = next_edl_record->start_sec - demuxer->video->pts;
389 // For the moment (and probably forever) EDL mute doesn't work in MEncoder
397 static float calc_a_pts(demux_stream_t
*d_audio
)
399 sh_audio_t
* sh_audio
= d_audio
? d_audio
->sh
: NULL
;
402 a_pts
= d_audio
->pts
+ (ds_tell_pts(d_audio
) - sh_audio
->a_in_buffer_len
)/(float)sh_audio
->i_bps
;
406 /** \brief Seeks audio forward to pts by dumping audio packets
407 * \return The current audio pts. */
408 static float forward_audio(float pts
, demux_stream_t
*d_audio
, muxer_stream_t
* mux_a
)
410 sh_audio_t
* sh_audio
= d_audio
? d_audio
->sh
: NULL
;
412 float a_pts
= calc_a_pts(d_audio
);
414 if (!sh_audio
) return a_pts
;
416 if (sh_audio
->audio
.dwScale
) samplesize
= sh_audio
->audio
.dwSampleSize
;
417 else samplesize
= (sh_audio
->wf
? sh_audio
->wf
->nBlockAlign
: 1);
418 avg
= (sh_audio
->wf
? sh_audio
->wf
->nAvgBytesPerSec
: sh_audio
->i_bps
);
420 // after a demux_seek, a_pts will be zero until you read some audio.
421 // carefully checking if a_pts is truely correct by reading tiniest amount of data possible.
422 if (pts
> a_pts
&& a_pts
== 0.0 && samplesize
) {
423 if (demux_read_data(sh_audio
->ds
,mux_a
->buffer
,samplesize
) <= 0) return a_pts
; // EOF
424 a_pts
= calc_a_pts(d_audio
);
427 while (pts
> a_pts
) {
430 len
= avg
* (pts
- a_pts
> 0.5 ? 0.5 : pts
- a_pts
);
431 len
/= samplesize
; if(len
<1) len
=1;
433 len
= demux_read_data(sh_audio
->ds
,mux_a
->buffer
,len
);
435 unsigned char * crap
;
436 len
= ds_get_packet(sh_audio
->ds
, &crap
);
438 if (len
<= 0) break; // EOF of audio.
439 a_pts
= calc_a_pts(d_audio
);
444 /** \brief Seeks slowly by dumping frames.
445 * \return 1 for success, 2 for EOF. */
446 static int slowseek(float end_pts
, demux_stream_t
*d_video
,
447 demux_stream_t
*d_audio
, muxer_stream_t
*mux_a
,
448 s_frame_data
*frame_data
, int framecopy
, int print_info
)
450 sh_video_t
* sh_video
= d_video
->sh
;
451 vf_instance_t
* vfilter
= sh_video
? sh_video
->vfilter
: NULL
;
454 while (!interrupted
) {
457 if (!frame_data
->already_read
) { // when called after fixdelay, a frame is already read
458 frame_data
->in_size
= video_read_frame(sh_video
, &frame_data
->frame_time
, &frame_data
->start
, force_fps
);
459 if(frame_data
->in_size
<0) return 2;
460 sh_video
->timer
+= frame_data
->frame_time
;
462 frame_data
->already_read
= 0;
464 a_pts
= forward_audio(sh_video
->pts
- frame_data
->frame_time
+ audio_delay
, d_audio
, mux_a
);
467 // wait for keyframe in case of -ovc copy
468 if (!framecopy
|| (sh_video
->ds
->flags
& 1)) {
469 frame_data
->already_read
= 1;
473 if (sh_video
->pts
>= end_pts
) done
= 1;
476 int softskip
= (vfilter
->control(vfilter
, VFCTRL_SKIP_NEXT_FRAME
, 0) == CONTROL_TRUE
);
477 void *decoded_frame
= decode_video(sh_video
, frame_data
->start
, frame_data
->in_size
, !softskip
, MP_NOPTS_VALUE
);
479 filter_video(sh_video
, decoded_frame
, MP_NOPTS_VALUE
);
482 if (print_info
) mp_msg(MSGT_MENCODER
, MSGL_STATUS
,
483 MSGTR_EdlSkipStartEndCurrent
,
484 next_edl_record
->start_sec
, next_edl_record
->stop_sec
,
485 sh_video
->pts
, a_pts
);
487 if (interrupted
) return 2;
491 /// Deletes audio or video as told by -delay to sync
492 static void fixdelay(demux_stream_t
*d_video
, demux_stream_t
*d_audio
,
493 muxer_stream_t
*mux_a
, s_frame_data
*frame_data
,
496 // TODO: Find a way to encode silence instead of deleting video
497 sh_video_t
* sh_video
= d_video
->sh
;
500 // demux_seek has a weirdness that sh_video->pts is meaningless,
501 // until a single frame is read... Same for audio actually too.
502 // Reading one frame, and keeping it.
503 frame_data
->in_size
= video_read_frame(sh_video
, &frame_data
->frame_time
, &frame_data
->start
, force_fps
);
504 if(frame_data
->in_size
<0) return;
505 sh_video
->timer
+= frame_data
->frame_time
;
506 frame_data
->already_read
= 1;
508 a_pts
= forward_audio(sh_video
->pts
- frame_data
->frame_time
+ audio_delay
, d_audio
, mux_a
);
510 if (audio_delay
> 0) return;
511 else if (sh_video
->pts
- frame_data
->frame_time
+ audio_delay
>= a_pts
) return;
513 slowseek(a_pts
- audio_delay
, d_video
, d_audio
, mux_a
, frame_data
, framecopy
, 0);
516 /** \brief Seeks for EDL
517 * \return 1 for success, 0 for failure, 2 for EOF. */
518 static int edl_seek(edl_record_ptr next_edl_record
, demuxer_t
*demuxer
,
519 demux_stream_t
*d_audio
, muxer_stream_t
*mux_a
,
520 s_frame_data
*frame_data
, int framecopy
)
522 sh_video_t
* sh_video
= demuxer
->video
? demuxer
->video
->sh
: NULL
;
524 if (!sh_video
) return 0;
525 if (sh_video
->pts
>= next_edl_record
->stop_sec
) return 1; // nothing to do...
527 if (!edl_seek_type
) {
528 if(demux_seek(demuxer
, next_edl_record
->stop_sec
- sh_video
->pts
, audio_delay
, 0)){
529 sh_video
->pts
= demuxer
->video
->pts
;
530 //if (vo_vobsub) vobsub_seek(vo_vobsub,sh_video->pts);
531 //if(vo_spudec) spudec_reset(vo_spudec);
532 if (audio_delay
!= 0.0) fixdelay(demuxer
->video
, d_audio
, mux_a
, frame_data
, framecopy
);
535 // non-seekable stream.
539 // slow seek, read every frame.
541 return slowseek(next_edl_record
->stop_sec
, demuxer
->video
, d_audio
, mux_a
, frame_data
, framecopy
, 1);
545 int main(int argc
,char* argv
[]){
547 stream_t
* stream
=NULL
;
548 stream_t
* ostream
=NULL
;
549 demuxer_t
* demuxer
=NULL
;
550 stream_t
* stream2
=NULL
;
551 demuxer_t
* demuxer2
=NULL
;
552 demux_stream_t
*d_audio
=NULL
;
553 demux_stream_t
*d_video
=NULL
;
554 demux_stream_t
*d_dvdsub
=NULL
;
555 sh_audio_t
*sh_audio
=NULL
;
556 sh_video_t
*sh_video
=NULL
;
557 int file_format
=DEMUXER_TYPE_UNKNOWN
;
558 int i
=DEMUXER_TYPE_UNKNOWN
;
559 void *vobsub_writer
=NULL
;
560 s_frame_data frame_data
= { .start
= NULL
, .in_size
= 0, .frame_time
= 0., .already_read
= 0 };
562 uint32_t ptimer_start
;
563 uint32_t audiorate
=0;
564 uint32_t videorate
=0;
565 uint32_t audiosamples
=1;
566 uint32_t videosamples
=1;
567 uint32_t skippedframes
=0;
568 uint32_t duplicatedframes
=0;
569 uint32_t badframes
=0;
571 muxer_stream_t
* mux_a
=NULL
;
572 muxer_stream_t
* mux_v
=NULL
;
573 off_t muxer_f_size
=0;
576 double v_timer_corr
=0;
578 m_entry_t
* filelist
= NULL
;
581 int decoded_frameno
=0;
586 unsigned int timer_start
=0;
587 ao_data_t ao_data
= {0,0,0,0,OUTBURST
,-1,0};
589 audio_encoding_params_t aparams
;
590 audio_encoder_t
*aencoder
= NULL
;
592 user_correct_pts
= 0;
596 // Create the config context and register the options
597 mconfig
= m_config_new();
598 m_config_register_options(mconfig
,mencoder_opts
);
600 // Preparse the command line
601 m_config_preparse_command_line(mconfig
,argc
,argv
);
603 print_version("MEncoder");
605 #if (defined(__MINGW32__) || defined(__CYGWIN__)) && defined(CONFIG_WIN32DLL)
612 if(!codecs_file
|| !parse_codec_cfg(codecs_file
)){
613 if(!parse_codec_cfg(get_path("codecs.conf"))){
614 if(!parse_codec_cfg(MPLAYER_CONFDIR
"/codecs.conf")){
615 if(!parse_codec_cfg(NULL
)){
616 mencoder_exit(1,NULL
);
618 mp_msg(MSGT_MENCODER
,MSGL_V
,MSGTR_BuiltinCodecsConf
);
623 parse_cfgfiles(mconfig
);
624 filelist
= m_config_parse_me_command_line(mconfig
, argc
, argv
);
625 if(!filelist
) mencoder_exit(1, MSGTR_ErrorParsingCommandLine
);
630 if (!out_filename
) mencoder_exit(1,MSGTR_MissingOutputFilename
);
631 extension
=strrchr(out_filename
,'.');
632 if (extension
!= NULL
&& strlen(extension
) > 3 && strlen(extension
) < 6)
636 switch (out_file_format
)
639 if (strcasecmp(extension
,"avi"))
640 mp_msg(MSGT_MENCODER
, MSGL_WARN
, MSGTR_MencoderWrongFormatAVI
);
643 case MUXER_TYPE_MPEG
:
644 if (strcasecmp(extension
,"mpg") &&
645 strcasecmp(extension
,"mpeg") &&
646 strcasecmp(extension
,"vob"))
647 mp_msg(MSGT_MENCODER
, MSGL_WARN
, MSGTR_MencoderWrongFormatMPG
);
652 /* Display what configure line was used */
653 mp_msg(MSGT_MENCODER
, MSGL_V
, "Configuration: " CONFIGURATION
"\n");
656 if (frameno_filename
) {
657 stream2
=open_stream(frameno_filename
,0,&i
);
659 demuxer2
=demux_open(stream2
,DEMUXER_TYPE_AVI
,-1,-1,-2,NULL
);
660 if(demuxer2
) mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_UsingPass3ControlFile
, frameno_filename
);
661 else mp_msg(MSGT_DEMUXER
,MSGL_ERR
,MSGTR_FormatNotRecognized
);
665 #ifdef CONFIG_PRIORITY
670 set_codec_path(codec_path
);
673 #ifdef CONFIG_FREETYPE
676 #ifdef CONFIG_FONTCONFIG
677 if(font_fontconfig
<= 0)
680 #ifdef CONFIG_BITMAP_FONT
682 vo_font
=read_font_desc(font_name
,font_factor
,verbose
>1);
683 if(!vo_font
) mp_msg(MSGT_CPLAYER
,MSGL_ERR
,MSGTR_CantLoadFont
,font_name
);
686 vo_font
=read_font_desc(get_path("font/font.desc"),font_factor
,verbose
>1);
688 vo_font
=read_font_desc(MPLAYER_DATADIR
"/font/font.desc",font_factor
,verbose
>1);
691 #ifdef CONFIG_FONTCONFIG
697 /* HACK, for some weird reason, push() has to be called twice,
698 otherwise options are not saved correctly */
699 m_config_push(mconfig
);
701 m_config_push(mconfig
);
702 m_entry_set_options(mconfig
,&filelist
[curfile
]);
703 filename
= filelist
[curfile
].name
;
706 ass_library
= ass_init();
710 mp_msg(MSGT_CPLAYER
, MSGL_FATAL
, MSGTR_MissingFilename
);
711 mencoder_exit(1,NULL
);
713 stream
=open_stream(filename
,0,&file_format
);
716 mp_msg(MSGT_CPLAYER
, MSGL_FATAL
, MSGTR_CannotOpenFile_Device
);
717 mencoder_exit(1,NULL
);
720 mp_msg(MSGT_CPLAYER
, MSGL_INFO
, MSGTR_OpenedStream
, file_format
, (int)(stream
->start_pos
), (int)(stream
->end_pos
));
722 #ifdef CONFIG_DVDREAD
723 if(stream
->type
==STREAMTYPE_DVD
){
724 if(audio_lang
&& audio_id
==-1) audio_id
=dvd_aid_from_lang(stream
,audio_lang
);
725 if(dvdsub_lang
&& dvdsub_id
==-1) dvdsub_id
=dvd_sid_from_lang(stream
,dvdsub_lang
);
730 if(stream
->type
==STREAMTYPE_DVDNAV
){
731 if(audio_lang
&& audio_id
==-1) audio_id
=mp_dvdnav_aid_from_lang(stream
,audio_lang
);
732 if(dvdsub_lang
&& dvdsub_id
==-1) dvdsub_id
=mp_dvdnav_sid_from_lang(stream
,dvdsub_lang
);
736 stream
->start_pos
+=seek_to_byte
;
738 if(stream_cache_size
>0) stream_enable_cache(stream
,stream_cache_size
*1024,0,0);
740 if(demuxer2
) audio_id
=-2; /* do NOT read audio packets... */
742 demuxer
=demux_open(stream
,file_format
,audio_id
,video_id
,dvdsub_id
,filename
);
744 mp_msg(MSGT_DEMUXER
, MSGL_FATAL
, MSGTR_FormatNotRecognized
);
745 mp_msg(MSGT_DEMUXER
, MSGL_FATAL
, MSGTR_CannotOpenDemuxer
);
746 mencoder_exit(1,NULL
);
750 demux_program_t prog
= { .progid
= ts_prog
};
751 if (demux_control(demuxer
, DEMUXER_CTRL_IDENTIFY_PROGRAM
, &prog
) != DEMUXER_CTRL_NOTIMPL
) {
752 audio_id
= prog
.aid
; // switching is handled by select_audio below
754 demuxer_switch_video(demuxer
, video_id
);
757 select_audio(demuxer
, audio_id
, audio_lang
);
759 if (dvdsub_id
== -1 && dvdsub_lang
)
760 dvdsub_id
= demuxer_sub_track_by_lang(demuxer
, dvdsub_lang
);
763 dvdsub_id
= demuxer_default_sub_track(demuxer
);
765 for (i
= 0; i
< MAX_S_STREAMS
; i
++) {
766 sh_sub_t
*sh
= demuxer
->s_streams
[i
];
767 if (sh
&& sh
->sid
== dvdsub_id
) {
768 demuxer
->sub
->id
= i
;
769 demuxer
->sub
->sh
= sh
;
776 if (demuxer_seek_chapter(demuxer
, dvd_chapter
-1, 1, &pts
, NULL
, NULL
) >= 0 && pts
> -1.0)
780 d_audio
=demuxer2
? demuxer2
->audio
: demuxer
->audio
;
781 d_video
=demuxer
->video
;
782 d_dvdsub
=demuxer
->sub
;
783 sh_audio
=d_audio
->sh
;
784 sh_video
=d_video
->sh
;
788 mp_msg(MSGT_CPLAYER
,MSGL_FATAL
,MSGTR_VideoStreamRequired
);
789 mencoder_exit(1,NULL
);
792 if(!video_read_properties(sh_video
)){
793 mp_msg(MSGT_CPLAYER
, MSGL_FATAL
, MSGTR_CannotReadVideoProperties
);
794 mencoder_exit(1,NULL
);
797 mp_msg(MSGT_MENCODER
,MSGL_INFO
, MSGTR_FilefmtFourccSizeFpsFtime
,
798 demuxer
->file_format
,sh_video
->format
, sh_video
->disp_w
,sh_video
->disp_h
,
799 sh_video
->fps
,sh_video
->frametime
803 sh_video
->fps
=force_fps
;
804 sh_video
->frametime
=1.0f
/sh_video
->fps
;
805 mp_msg(MSGT_MENCODER
,MSGL_INFO
,MSGTR_ForcingInputFPS
, sh_video
->fps
);
808 if(sh_audio
&& out_audio_codec
<0){
810 mp_msg(MSGT_MENCODER
,MSGL_ERR
,MSGTR_DemuxerDoesntSupportNosound
);
811 mp_msg(MSGT_MENCODER
,MSGL_FATAL
,MSGTR_NoAudioEncoderSelected
);
812 mencoder_exit(1,NULL
);
814 if(sh_video
&& out_video_codec
<0){
815 mp_msg(MSGT_MENCODER
,MSGL_FATAL
,MSGTR_NoVideoEncoderSelected
);
816 mencoder_exit(1,NULL
);
819 if(sh_audio
&& (out_audio_codec
|| seek_to_sec
|| !sh_audio
->wf
|| playback_speed
!= 1.0)){
820 // Go through the codec.conf and find the best codec...
821 mp_msg(MSGT_CPLAYER
,MSGL_INFO
,"==========================================================================\n");
822 if(!init_best_audio_codec(sh_audio
,audio_codec_list
,audio_fm_list
)){
823 sh_audio
=d_audio
->sh
=NULL
; // failed to init :(
825 mp_msg(MSGT_CPLAYER
,MSGL_INFO
,"==========================================================================\n");
829 new_srate
= sh_audio
->samplerate
;
830 if (playback_speed
!= 1.0) {
831 new_srate
*= playback_speed
;
832 // limits are taken from libaf/af_resample.c
833 if (new_srate
< 8000) new_srate
= 8000;
834 if (new_srate
> 192000) new_srate
= 192000;
835 playback_speed
= (float)new_srate
/ (float)sh_audio
->samplerate
;
839 // set up video encoder:
841 if (!curfile
) { // curfile is non zero when a second file is opened
843 unsigned int palette
[16], width
, height
;
844 unsigned char tmp
[3] = { 0, 0, 0 };
845 if (spudec_ifo
&& vobsub_parse_ifo(NULL
,spudec_ifo
, palette
, &width
, &height
, 1, dvdsub_id
, tmp
) >= 0)
846 vobsub_writer
= vobsub_out_open(vobsub_out
, palette
, sh_video
->disp_w
, sh_video
->disp_h
,
847 vobsub_out_id
?vobsub_out_id
:(char *)tmp
, vobsub_out_index
);
848 #ifdef CONFIG_DVDREAD
849 if (vobsub_writer
== NULL
) {
851 if (vobsub_out_id
== NULL
&& stream
->type
== STREAMTYPE_DVD
) {
853 dvd_priv_t
*dvd
= (dvd_priv_t
*)stream
->priv
;
854 for (i
= 0; i
< dvd
->nr_of_subtitles
; ++i
)
855 if (dvd
->subtitles
[i
].id
== dvdsub_id
) {
856 tmp
[0] = (dvd
->subtitles
[i
].language
>> 8) & 0xff;
857 tmp
[1] = dvd
->subtitles
[i
].language
& 0xff;
863 vobsub_writer
=vobsub_out_open(vobsub_out
, stream
->type
==STREAMTYPE_DVD
?((dvd_priv_t
*)(stream
->priv
))->cur_pgc
->palette
:NULL
,
864 sh_video
->disp_w
, sh_video
->disp_h
, vobsub_out_id
, vobsub_out_index
);
870 unsigned int palette
[16], width
, height
;
871 if (vobsub_parse_ifo(NULL
,spudec_ifo
, palette
, &width
, &height
, 1, -1, NULL
) >= 0)
872 vo_spudec
=spudec_new_scaled(palette
, sh_video
->disp_w
, sh_video
->disp_h
, NULL
, 0);
874 #ifdef CONFIG_DVDREAD
875 if (vo_spudec
==NULL
) {
876 vo_spudec
=spudec_new_scaled(stream
->type
==STREAMTYPE_DVD
?((dvd_priv_t
*)(stream
->priv
))->cur_pgc
->palette
:NULL
,
877 sh_video
->disp_w
, sh_video
->disp_h
, NULL
, 0);
881 spudec_set_forced_subs_only(vo_spudec
, forced_subs_only
);
884 ostream
= open_output_stream(out_filename
, 0);
886 mp_msg(MSGT_MENCODER
, MSGL_FATAL
, MSGTR_CannotOpenOutputFile
, out_filename
);
887 mencoder_exit(1,NULL
);
890 muxer
=muxer_new_muxer(out_file_format
,ostream
);
892 mp_msg(MSGT_MENCODER
, MSGL_FATAL
, MSGTR_CannotInitializeMuxer
);
893 mencoder_exit(1,NULL
);
896 //disabled: it horrybly distorts filtered sound
897 if(out_file_format
== MUXER_TYPE_MPEG
) audio_preload
= 0;
900 muxer
->audio_delay_fix
= audio_delay_fix
;
902 // ============= VIDEO ===============
904 mux_v
=muxer_new_stream(muxer
,MUXER_TYPE_VIDEO
);
906 mux_v
->buffer_size
=0x200000; // 2MB
907 mux_v
->buffer
=malloc(mux_v
->buffer_size
);
909 mux_v
->source
=sh_video
;
911 mux_v
->h
.dwSampleSize
=0; // VBR
912 #ifdef CONFIG_LIBAVCODEC
914 double fps
= force_ofps
?force_ofps
:sh_video
->fps
*playback_speed
;
915 AVRational q
= av_d2q(fps
, fps
*1001+2);
916 mux_v
->h
.dwScale
= q
.den
;
917 mux_v
->h
.dwRate
= q
.num
;
920 mux_v
->h
.dwScale
=10000;
921 mux_v
->h
.dwRate
=mux_v
->h
.dwScale
*(force_ofps
?force_ofps
:sh_video
->fps
*playback_speed
);
924 mux_v
->codec
=out_video_codec
;
928 sh_video
->codec
=NULL
;
929 sh_video
->vfilter
=NULL
; // fixme!
931 switch(mux_v
->codec
){
935 mux_v
->bih
=malloc(sh_video
->bih
->biSize
);
936 memcpy(mux_v
->bih
, sh_video
->bih
, sh_video
->bih
->biSize
);
940 mux_v
->bih
=calloc(1,sizeof(BITMAPINFOHEADER
));
941 mux_v
->bih
->biSize
=sizeof(BITMAPINFOHEADER
);
942 mux_v
->bih
->biWidth
=sh_video
->disp_w
;
943 mux_v
->bih
->biHeight
=sh_video
->disp_h
;
944 mux_v
->bih
->biCompression
=sh_video
->format
;
945 mux_v
->bih
->biPlanes
=1;
946 mux_v
->bih
->biBitCount
=24; // FIXME!!!
947 mux_v
->bih
->biSizeImage
=mux_v
->bih
->biWidth
*mux_v
->bih
->biHeight
*(mux_v
->bih
->biBitCount
/8);
950 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_VCodecFramecopy
,
951 mux_v
->bih
->biWidth
, mux_v
->bih
->biHeight
,
952 mux_v
->bih
->biBitCount
, mux_v
->bih
->biCompression
);
956 if ((mux_v
->bih
->biSize
!= sh_video
->bih
->biSize
) ||
957 memcmp(mux_v
->bih
, sh_video
->bih
, sh_video
->bih
->biSize
))
959 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_VCodecFramecopy
,
960 sh_video
->bih
->biWidth
, sh_video
->bih
->biHeight
,
961 sh_video
->bih
->biBitCount
, sh_video
->bih
->biCompression
);
962 mp_msg(MSGT_MENCODER
,MSGL_FATAL
,MSGTR_FrameCopyFileMismatch
);
963 mencoder_exit(1,NULL
);
967 if ((mux_v
->bih
->biWidth
!= sh_video
->disp_w
) ||
968 (mux_v
->bih
->biHeight
!= sh_video
->disp_h
) ||
969 (mux_v
->bih
->biCompression
!= sh_video
->format
)) {
970 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_VCodecFramecopy
,
971 sh_video
->disp_w
, sh_video
->disp_w
, 24, sh_video
->format
);
972 mp_msg(MSGT_MENCODER
,MSGL_FATAL
,MSGTR_FrameCopyFileMismatch
);
973 mencoder_exit(1,NULL
);
980 mux_v
->bih
=calloc(1,sizeof(BITMAPINFOHEADER
));
981 mux_v
->bih
->biSize
=sizeof(BITMAPINFOHEADER
);
982 mux_v
->bih
->biWidth
=sh_video
->disp_w
;
983 mux_v
->bih
->biHeight
=sh_video
->disp_h
;
984 mux_v
->bih
->biPlanes
=1;
985 mux_v
->bih
->biBitCount
=24;
986 mux_v
->bih
->biCompression
=mmioFOURCC('F','r','N','o');
987 mux_v
->bih
->biSizeImage
=mux_v
->bih
->biWidth
*mux_v
->bih
->biHeight
*(mux_v
->bih
->biBitCount
/8);
991 static vf_instance_t
* ve
= NULL
;
993 switch(mux_v
->codec
){
994 case VCODEC_LIBAVCODEC
:
995 sh_video
->vfilter
=vf_open_encoder(NULL
,"lavc",(char *)mux_v
); break;
997 sh_video
->vfilter
=vf_open_encoder(NULL
,"raw",(char *)mux_v
); break;
999 sh_video
->vfilter
=vf_open_encoder(NULL
,"vfw",(char *)mux_v
); break;
1001 sh_video
->vfilter
=vf_open_encoder(NULL
,"libdv",(char *)mux_v
); break;
1003 sh_video
->vfilter
=vf_open_encoder(NULL
,"xvid",(char *)mux_v
); break;
1004 case VCODEC_QTVIDEO
:
1005 sh_video
->vfilter
=vf_open_encoder(NULL
,"qtvideo",(char *)mux_v
); break;
1007 sh_video
->vfilter
=vf_open_encoder(NULL
,"nuv",(char *)mux_v
); break;
1009 sh_video
->vfilter
=vf_open_encoder(NULL
,"x264",(char *)mux_v
); break;
1011 if(!mux_v
->bih
|| !sh_video
->vfilter
){
1012 mp_msg(MSGT_MENCODER
,MSGL_FATAL
,MSGTR_EncoderOpenFailed
);
1013 mencoder_exit(1,NULL
);
1015 ve
= sh_video
->vfilter
;
1016 } else sh_video
->vfilter
= ve
;
1017 // append 'expand' filter, it fixes stride problems and renders osd:
1019 if (auto_expand
&& !ass_enabled
) { /* we do not want both */
1023 char* vf_args
[] = { "osd", "1", NULL
};
1024 sh_video
->vfilter
=vf_open_filter(sh_video
->vfilter
,"expand",vf_args
);
1032 for (i
= 0; vf_settings
[i
].name
; ++i
)
1033 if (strcmp(vf_settings
[i
].name
, "ass") == 0) {
1038 extern vf_info_t vf_info_ass
;
1039 vf_info_t
* libass_vfs
[] = {&vf_info_ass
, NULL
};
1040 char* vf_arg
[] = {"auto", "1", NULL
};
1041 vf_instance_t
* vf_ass
= vf_open_plugin(libass_vfs
,sh_video
->vfilter
,"ass",vf_arg
);
1043 sh_video
->vfilter
=(void*)vf_ass
;
1045 mp_msg(MSGT_CPLAYER
,MSGL_ERR
, "ASS: cannot add video filter\n");
1049 for (i
= 0; i
< demuxer
->num_attachments
; ++i
) {
1050 demux_attachment_t
* att
= demuxer
->attachments
+ i
;
1051 if (extract_embedded_fonts
&&
1052 att
->name
&& att
->type
&& att
->data
&& att
->data_size
&&
1053 (strcmp(att
->type
, "application/x-truetype-font") == 0 ||
1054 strcmp(att
->type
, "application/x-font") == 0))
1055 ass_add_font(ass_library
, att
->name
, att
->data
, att
->data_size
);
1061 sh_video
->vfilter
=append_filters(sh_video
->vfilter
);
1065 ((vf_instance_t
*)sh_video
->vfilter
)->control(sh_video
->vfilter
, VFCTRL_INIT_EOSD
, ass_library
);
1068 // after reading video params we should load subtitles because
1069 // we know fps so now we can adjust subtitles time to ~6 seconds AST
1071 if(sub_name
&& sub_name
[0]){
1072 for (i
= 0; sub_name
[i
] != NULL
; ++i
)
1073 add_subtitles (sub_name
[i
], sh_video
->fps
, 0);
1075 if(sub_auto
&& filename
) { // auto load sub file ...
1078 char *psub
= get_path( "sub/" );
1079 tmp
= sub_filenames((psub
? psub
: ""), filename
);
1083 add_subtitles (tmp
[i
], sh_video
->fps
, 0);
1089 mp_msg(MSGT_CPLAYER
,MSGL_INFO
,"==========================================================================\n");
1090 init_best_video_codec(sh_video
,video_codec_list
,video_fm_list
);
1091 mp_msg(MSGT_CPLAYER
,MSGL_INFO
,"==========================================================================\n");
1092 if(!sh_video
->initialized
) mencoder_exit(1,NULL
);
1097 /* force output fourcc to .. */
1098 if ((force_fourcc
!= NULL
) && (strlen(force_fourcc
) >= 4))
1100 mux_v
->bih
->biCompression
= mmioFOURCC(force_fourcc
[0], force_fourcc
[1],
1101 force_fourcc
[2], force_fourcc
[3]);
1102 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_ForcingOutputFourcc
,
1103 mux_v
->bih
->biCompression
, (char *)&mux_v
->bih
->biCompression
);
1107 muxer
->audio_delay_fix
-= sh_video
->stream_delay
;
1109 //if(demuxer->file_format!=DEMUXER_TYPE_AVI) pts_from_bps=0; // it must be 0 for mpeg/asf!
1111 // ============= AUDIO ===============
1114 if (force_audiofmttag
!= -1) {
1115 sh_audio
->format
= force_audiofmttag
;
1117 sh_audio
->wf
->wFormatTag
= sh_audio
->format
;
1119 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_ForcingOutputAudiofmtTag
,
1123 mux_a
=muxer_new_stream(muxer
,MUXER_TYPE_AUDIO
);
1125 mux_a
->buffer_size
=0x100000; //16384;
1126 mux_a
->buffer
=malloc(mux_a
->buffer_size
);
1128 mencoder_exit(1,MSGTR_MemAllocFailed
);
1130 mux_a
->source
=sh_audio
;
1132 mux_a
->codec
=out_audio_codec
;
1134 ao_data
.samplerate
= force_srate
;
1135 ao_data
.channels
= 0;
1136 ao_data
.format
= audio_output_format
;
1137 if(!init_audio_filters(sh_audio
,
1141 &ao_data
.samplerate
, &ao_data
.channels
, &ao_data
.format
)) {
1142 mp_msg(MSGT_CPLAYER
,MSGL_ERR
,MSGTR_AudioFilterChainPreinitError
);
1143 mencoder_exit(1, NULL
);
1146 aparams
.channels
= ao_data
.channels
;
1147 aparams
.sample_rate
= ao_data
.samplerate
;
1148 aparams
.audio_preload
= 1000 * audio_preload
;
1149 if(mux_a
->codec
!= ACODEC_COPY
) {
1150 aencoder
= new_audio_encoder(mux_a
, &aparams
);
1152 mencoder_exit(1, NULL
);
1153 if(!init_audio_filters(sh_audio
,
1155 &aparams
.sample_rate
, &aparams
.channels
, &aencoder
->input_format
)) {
1156 mp_msg(MSGT_CPLAYER
,MSGL_FATAL
,MSGTR_NoMatchingFilter
);
1157 mencoder_exit(1,NULL
);
1160 switch(mux_a
->codec
){
1162 if (playback_speed
!= 1.0) mp_msg(MSGT_CPLAYER
, MSGL_WARN
, MSGTR_NoSpeedWithFrameCopy
);
1163 if (sh_audio
->format
>= 0x10000) {
1164 mp_msg(MSGT_MENCODER
,MSGL_ERR
,MSGTR_CantCopyAudioFormat
, sh_audio
->format
);
1165 mencoder_exit(1,NULL
);
1168 mux_a
->wf
=malloc(sizeof(WAVEFORMATEX
) + sh_audio
->wf
->cbSize
);
1169 memcpy(mux_a
->wf
, sh_audio
->wf
, sizeof(WAVEFORMATEX
) + sh_audio
->wf
->cbSize
);
1170 if(!sh_audio
->i_bps
) sh_audio
->i_bps
=mux_a
->wf
->nAvgBytesPerSec
;
1172 mux_a
->wf
= malloc(sizeof(WAVEFORMATEX
));
1173 mux_a
->wf
->nBlockAlign
= 1; //mux_a->h.dwSampleSize;
1174 mux_a
->wf
->wFormatTag
= sh_audio
->format
;
1175 mux_a
->wf
->nChannels
= sh_audio
->channels
;
1176 mux_a
->wf
->nSamplesPerSec
= sh_audio
->samplerate
;
1177 mux_a
->wf
->nAvgBytesPerSec
=sh_audio
->i_bps
; //mux_a->h.dwSampleSize*mux_a->wf->nSamplesPerSec;
1178 mux_a
->wf
->wBitsPerSample
= 16; // FIXME
1179 mux_a
->wf
->cbSize
=0; // FIXME for l3codeca.acm
1181 if(sh_audio
->audio
.dwScale
){
1182 mux_a
->h
.dwSampleSize
=sh_audio
->audio
.dwSampleSize
;
1183 mux_a
->h
.dwScale
=sh_audio
->audio
.dwScale
;
1184 mux_a
->h
.dwRate
=sh_audio
->audio
.dwRate
;
1186 mux_a
->h
.dwSampleSize
=mux_a
->wf
->nBlockAlign
;
1187 mux_a
->h
.dwScale
=mux_a
->h
.dwSampleSize
;
1188 mux_a
->h
.dwRate
=mux_a
->wf
->nAvgBytesPerSec
;
1190 mux_a
->h
.dwRate
*= playback_speed
;
1191 mux_a
->wf
->nSamplesPerSec
*= playback_speed
;
1192 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_ACodecFramecopy
,
1193 mux_a
->wf
->wFormatTag
, mux_a
->wf
->nChannels
, mux_a
->wf
->nSamplesPerSec
,
1194 mux_a
->wf
->wBitsPerSample
, mux_a
->wf
->nAvgBytesPerSec
, mux_a
->h
.dwSampleSize
);
1198 if ( mp_msg_test(MSGT_MENCODER
,MSGL_DBG2
) ) print_wave_header(mux_a
->wf
, MSGL_DBG2
);
1201 muxer
->audio_delay_fix
+= sh_audio
->stream_delay
;
1207 signal(SIGINT
,exit_sighandler
); // Interrupt from keyboard
1208 signal(SIGQUIT
,exit_sighandler
); // Quit from keyboard
1209 signal(SIGTERM
,exit_sighandler
); // kill
1210 signal(SIGHUP
,exit_sighandler
); // broken terminal line
1211 signal(SIGPIPE
,exit_sighandler
); // broken pipe
1213 timer_start
=GetTimerMS();
1214 } // if (!curfile) // if this was the first file.
1216 if (!mux_a
!= !sh_audio
) {
1217 mp_msg(MSGT_MENCODER
,MSGL_FATAL
,MSGTR_NoAudioFileMismatch
);
1218 mencoder_exit(1,NULL
);
1220 if (sh_audio
&& mux_a
->codec
== ACODEC_COPY
) {
1221 if (playback_speed
!= 1.0) mp_msg(MSGT_CPLAYER
, MSGL_WARN
, MSGTR_NoSpeedWithFrameCopy
);
1222 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_ACodecFramecopy
,
1223 mux_a
->wf
->wFormatTag
, mux_a
->wf
->nChannels
, mux_a
->wf
->nSamplesPerSec
,
1224 mux_a
->wf
->wBitsPerSample
, mux_a
->wf
->nAvgBytesPerSec
, mux_a
->h
.dwSampleSize
);
1226 if ((mux_a
->wf
->wFormatTag
!= sh_audio
->wf
->wFormatTag
) ||
1227 (mux_a
->wf
->nChannels
!= sh_audio
->wf
->nChannels
) ||
1228 (mux_a
->wf
->nSamplesPerSec
!= sh_audio
->wf
->nSamplesPerSec
* playback_speed
))
1230 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_ACodecFramecopy
,
1231 sh_audio
->wf
->wFormatTag
, sh_audio
->wf
->nChannels
, (int)(sh_audio
->wf
->nSamplesPerSec
* playback_speed
),
1232 sh_audio
->wf
->wBitsPerSample
, sh_audio
->wf
->nAvgBytesPerSec
, 0);
1233 mp_msg(MSGT_MENCODER
,MSGL_FATAL
,MSGTR_AudioCopyFileMismatch
);
1234 mencoder_exit(1,NULL
);
1237 if ((mux_a
->wf
->wFormatTag
!= sh_audio
->format
) ||
1238 (mux_a
->wf
->nChannels
!= sh_audio
->channels
) ||
1239 (mux_a
->wf
->nSamplesPerSec
!= sh_audio
->samplerate
* playback_speed
))
1241 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_ACodecFramecopy
,
1242 sh_audio
->wf
->wFormatTag
, sh_audio
->wf
->nChannels
, (int)(sh_audio
->wf
->nSamplesPerSec
* playback_speed
),
1243 sh_audio
->wf
->wBitsPerSample
, sh_audio
->wf
->nAvgBytesPerSec
, 0);
1244 mp_msg(MSGT_MENCODER
,MSGL_FATAL
,MSGTR_AudioCopyFileMismatch
);
1245 mencoder_exit(1,NULL
);
1248 } else if (sh_audio
) {
1249 int out_srate
= mux_a
->wf
->nSamplesPerSec
;
1250 int out_channels
= mux_a
->wf
->nChannels
;
1251 int out_format
= aencoder
->input_format
;
1252 if (!init_audio_filters(sh_audio
, new_srate
,
1253 &out_srate
, &out_channels
,
1255 mp_msg(MSGT_CPLAYER
, MSGL_FATAL
, MSGTR_NoMatchingFilter
);
1256 mencoder_exit(1, NULL
);
1258 mux_a
->wf
->nSamplesPerSec
= out_srate
;
1259 mux_a
->wf
->nChannels
= out_channels
;
1264 demux_seek(demuxer
, seek_to_sec
, audio_delay
, 1);
1265 // there is 2 way to handle the -ss option in 3-pass mode:
1266 // > 1. do the first pass for the whole file, and use -ss for 2nd/3rd pases only
1267 // > 2. do all the 3 passes with the same -ss value
1268 // this line enables behaviour 1. (and kills 2. at the same time):
1269 // if(demuxer2) demux_seek(demuxer2, d, audio_delay, 1);
1272 if (out_file_format
== MUXER_TYPE_MPEG
)
1274 if (audio_preload
> 0.4) {
1275 mp_msg(MSGT_MENCODER
, MSGL_WARN
, MSGTR_LimitingAudioPreload
);
1276 audio_preload
= 0.4;
1278 if (audio_density
< 4) {
1279 mp_msg(MSGT_MENCODER
, MSGL_WARN
, MSGTR_IncreasingAudioDensity
);
1284 if(file_format
== DEMUXER_TYPE_TV
)
1286 mp_msg(MSGT_MENCODER
, MSGL_WARN
, MSGTR_ZeroingAudioPreloadAndMaxPtsCorrection
);
1287 audio_preload
= 0.0;
1288 default_max_pts_correction
= 0;
1291 play_n_frames
=play_n_frames_mf
;
1292 if (curfile
&& end_at
.type
== END_AT_TIME
) end_at
.pos
+= mux_v
->timer
;
1294 if (edl_records
) free_edl(edl_records
);
1295 next_edl_record
= edl_records
= NULL
;
1299 next_edl_record
= edl_records
= edl_parse_file();
1302 if (sh_audio
&& audio_delay
!= 0.) fixdelay(d_video
, d_audio
, mux_a
, &frame_data
, mux_v
->codec
==VCODEC_COPY
);
1309 int skip_flag
=0; // 1=skip -1=duplicate
1311 if((end_at
.type
== END_AT_SIZE
&& end_at
.pos
<= stream_tell(muxer
->stream
)) ||
1312 (end_at
.type
== END_AT_TIME
&& end_at
.pos
< mux_v
->timer
))
1315 if(play_n_frames
>=0){
1317 if(play_n_frames
<0) break;
1319 if(dvd_last_chapter
>0) {
1320 int cur_chapter
= demuxer_get_current_chapter(demuxer
);
1321 if(cur_chapter
!=-1 && cur_chapter
+1>dvd_last_chapter
)
1326 if (next_edl_record
&& sh_video
&& sh_video
->pts
>= next_edl_record
->start_sec
) {
1327 if (next_edl_record
->action
== EDL_SKIP
&& edl_seeking
) {
1328 float last_pos
= d_video
->pts
;
1330 mp_msg(MSGT_CPLAYER
, MSGL_DBG4
, "EDL_SKIP: start [%f], stop [%f], length [%f]\n",
1331 next_edl_record
->start_sec
, next_edl_record
->stop_sec
, next_edl_record
->length_sec
);
1333 result
= edl_seek(next_edl_record
, demuxer
, d_audio
, mux_a
, &frame_data
, mux_v
->codec
==VCODEC_COPY
);
1335 if (result
== 2) { at_eof
=1; break; } // EOF
1336 else if (result
== 0) edl_seeking
= 0; // no seeking
1339 if (last_pos
>= sh_video
->pts
) {
1340 // backwards seek detected!! Forget about this EDL skip altogether.
1341 next_edl_record
= next_edl_record
->next
;
1343 else for (next_edl_record
= edl_records
; next_edl_record
; next_edl_record
= next_edl_record
->next
) {
1344 /* note the use of stop_sec,
1345 meaning if by some magical way we landed in the MIDDLE of a censored area,
1346 in the next loop it will jump out of it.
1348 if (next_edl_record
->stop_sec
> sh_video
->pts
) break; // we got to the right place.
1349 if (next_edl_record
->action
== EDL_MUTE
) edl_muted
= !edl_muted
; // toggle mute each time.
1352 /* for a pedantic EDL, that doesn't show even a single
1353 frame from the "censored" area, uncomment next line. */
1356 } else if (next_edl_record
->action
== EDL_MUTE
) {
1357 edl_muted
= !edl_muted
; // This variable does nothing for now.
1358 mp_msg(MSGT_CPLAYER
, MSGL_DBG4
, "EDL_MUTE: [%f]\n", next_edl_record
->start_sec
);
1359 next_edl_record
=next_edl_record
->next
;
1366 while(mux_a
->timer
-audio_preload
<mux_v
->timer
){
1370 ptimer_start
= GetTimerMS();
1371 // CBR - copy 0.5 sec of audio
1372 // or until the end of video:
1373 tottime
= stop_time(demuxer
, mux_v
);
1374 if (tottime
!= -1) {
1375 tottime
-= mux_a
->timer
;
1376 if (tottime
> 1./audio_density
) tottime
= 1./audio_density
;
1378 else tottime
= 1./audio_density
;
1380 // let's not output more audio than necessary
1381 if (tottime
<= 0) break;
1385 if(mux_a
->h
.dwSampleSize
) /* CBR */
1387 if(aencoder
->set_decoded_len
)
1389 len
= mux_a
->h
.dwSampleSize
*(int)(mux_a
->h
.dwRate
*tottime
);
1390 aencoder
->set_decoded_len(aencoder
, len
);
1393 len
= aencoder
->decode_buffer_size
;
1395 len
= dec_audio(sh_audio
, aencoder
->decode_buffer
, len
);
1396 mux_a
->buffer_len
+= aencoder
->encode(aencoder
, mux_a
->buffer
+ mux_a
->buffer_len
,
1397 aencoder
->decode_buffer
, len
, mux_a
->buffer_size
-mux_a
->buffer_len
);
1398 if(mux_a
->buffer_len
< mux_a
->wf
->nBlockAlign
)
1401 len
= mux_a
->wf
->nBlockAlign
*(mux_a
->buffer_len
/mux_a
->wf
->nBlockAlign
);
1410 sz
= aencoder
->get_frame_size(aencoder
);
1411 if(sz
> 0 && mux_a
->buffer_len
>= sz
)
1416 len
= dec_audio(sh_audio
,aencoder
->decode_buffer
, aencoder
->decode_buffer_size
);
1422 len
= aencoder
->encode(aencoder
, mux_a
->buffer
+ mux_a
->buffer_len
, aencoder
->decode_buffer
, len
, mux_a
->buffer_size
-mux_a
->buffer_len
);
1423 mux_a
->buffer_len
+= len
;
1426 if (mux_v
->timer
== 0) mux_a
->h
.dwInitialFrames
++;
1429 if(mux_a
->h
.dwSampleSize
){
1430 switch(mux_a
->codec
){
1431 case ACODEC_COPY
: // copy
1432 len
=mux_a
->wf
->nAvgBytesPerSec
*tottime
;
1433 len
/=mux_a
->h
.dwSampleSize
;if(len
<1) len
=1;
1434 len
*=mux_a
->h
.dwSampleSize
;
1435 len
=demux_read_data(sh_audio
->ds
,mux_a
->buffer
,len
);
1439 // VBR - encode/copy an audio frame
1440 switch(mux_a
->codec
){
1441 case ACODEC_COPY
: // copy
1442 len
=ds_get_packet(sh_audio
->ds
,(unsigned char**) &mux_a
->buffer
);
1447 if(len
<=0) break; // EOF?
1448 muxer_write_chunk(mux_a
,len
,AVIIF_KEYFRAME
, MP_NOPTS_VALUE
, MP_NOPTS_VALUE
);
1449 if(!mux_a
->h
.dwSampleSize
&& mux_a
->timer
>0)
1450 mux_a
->wf
->nAvgBytesPerSec
=0.5f
+(double)mux_a
->size
/mux_a
->timer
; // avg bps (VBR)
1451 if(mux_a
->buffer_len
>=len
){
1452 mux_a
->buffer_len
-=len
;
1453 fast_memcpy(mux_a
->buffer
,mux_a
->buffer
+len
,mux_a
->buffer_len
);
1458 audiorate
+= (GetTimerMS() - ptimer_start
);
1465 if (!frame_data
.already_read
) {
1466 frame_data
.in_size
=video_read_frame(sh_video
,&frame_data
.frame_time
,&frame_data
.start
,force_fps
);
1467 sh_video
->timer
+=frame_data
.frame_time
;
1469 frame_data
.frame_time
/= playback_speed
;
1470 if(frame_data
.in_size
<0){ at_eof
=1; break; }
1473 v_timer_corr
-=frame_data
.frame_time
-(float)mux_v
->h
.dwScale
/mux_v
->h
.dwRate
;
1475 if(demuxer2
){ // 3-pass encoding, read control file (frameno.avi)
1477 while(next_frameno
<decoded_frameno
){
1479 int len
=ds_get_packet(demuxer2
->video
,(unsigned char**) &start
);
1480 if(len
<0){ at_eof
=1;break;}
1481 if(len
==0) --skip_flag
; else // duplicate
1482 if(len
==4) next_frameno
=start
[0];
1485 skip_flag
=next_frameno
-decoded_frameno
;
1487 while(next_frameno
<=decoded_frameno
){
1489 int len
=ds_get_packet(demuxer2
->video
,(unsigned char**) &start
);
1490 if(len
<0){ at_eof
=1;break;}
1491 if(len
==0) --skip_flag
; else // duplicate
1492 if(len
==4) next_frameno
=start
[0];
1496 // check frame duplicate/drop:
1498 float mux_frametime
= (float)mux_v
->h
.dwScale
/mux_v
->h
.dwRate
;
1500 if (v_timer_corr
>= mux_frametime
&& (skip_limit
<0 || skip_flag
< skip_limit
)) {
1501 v_timer_corr
-=mux_frametime
;
1502 ++skip_flag
; // skip
1504 while (v_timer_corr
<= -mux_frametime
&& (skip_limit
<0 || -skip_flag
< skip_limit
)) {
1505 v_timer_corr
+=mux_frametime
;
1509 // either v_pts_corr is big, more than 2 times framerate, then we follow its advice,
1510 // or, it cancels out v_timer_corr, in which case be happy and do nothing.
1512 while ((v_pts_corr
<= -mux_frametime
&& skip_flag
> 0) || (v_pts_corr
<= -2*mux_frametime
)) {
1513 v_pts_corr
+=mux_frametime
;
1516 if ((v_pts_corr
>= mux_frametime
&& skip_flag
< 0) || (v_pts_corr
>= 2*mux_frametime
)) {
1517 if (skip_flag
<=0) { // we can't skip more than 1 frame now
1518 v_pts_corr
-=mux_frametime
;
1519 ++skip_flag
; // skip
1525 ptimer_start
= GetTimerMS();
1527 switch(mux_v
->codec
){
1529 mux_v
->buffer
=frame_data
.start
;
1530 if(skip_flag
<=0) muxer_write_chunk(mux_v
,frame_data
.in_size
,(sh_video
->ds
->flags
&1)?AVIIF_KEYFRAME
:0, MP_NOPTS_VALUE
, MP_NOPTS_VALUE
);
1532 case VCODEC_FRAMENO
:
1533 mux_v
->buffer
=(unsigned char *)&decoded_frameno
; // tricky
1534 if(skip_flag
<=0) muxer_write_chunk(mux_v
,sizeof(int),AVIIF_KEYFRAME
, MP_NOPTS_VALUE
, MP_NOPTS_VALUE
);
1537 // decode_video will callback down to ve_*.c encoders, through the video filters
1538 {void *decoded_frame
= decode_video(sh_video
,frame_data
.start
,frame_data
.in_size
,
1539 skip_flag
>0 && (!sh_video
->vfilter
|| ((vf_instance_t
*)sh_video
->vfilter
)->control(sh_video
->vfilter
, VFCTRL_SKIP_NEXT_FRAME
, 0) != CONTROL_TRUE
), MP_NOPTS_VALUE
);
1540 blit_frame
= decoded_frame
&& filter_video(sh_video
, decoded_frame
, MP_NOPTS_VALUE
);}
1542 if (sh_video
->vf_initialized
< 0) mencoder_exit(1, NULL
);
1545 if (play_n_frames
>= 0)
1549 // unwanted skipping of a frame, what to do?
1550 v_timer_corr
-=(float)mux_v
->h
.dwScale
/mux_v
->h
.dwRate
;
1552 // Old code apparently made under the assumption that !blit_frame means
1553 // decoding failed due to corruption or something.. but duplication and
1554 // skipping of frames should be entirely disabled when skip_limit==0,
1555 // and must be in order for many filters to work with -noskip.
1556 // Eventually this entire block should probably be removed.
1558 // skipping not allowed -> write empty frame:
1559 if (!encode_duplicates
|| !sh_video
->vfilter
|| ((vf_instance_t
*)sh_video
->vfilter
)->control(sh_video
->vfilter
, VFCTRL_DUPLICATE_FRAME
, 0) != CONTROL_TRUE
)
1560 muxer_write_chunk(mux_v
,0,0, MP_NOPTS_VALUE
, MP_NOPTS_VALUE
);
1562 // skipping allowed -> skip it and distriubute timer error:
1563 v_timer_corr
-=(float)mux_v
->h
.dwScale
/mux_v
->h
.dwRate
;
1571 videorate
+=(GetTimerMS() - ptimer_start
);
1575 if(!quiet
) mp_msg(MSGT_MENCODER
, MSGL_WARN
, MSGTR_DuplicateFrames
,-skip_flag
);
1578 if (!encode_duplicates
|| !sh_video
->vfilter
|| ((vf_instance_t
*)sh_video
->vfilter
)->control(sh_video
->vfilter
, VFCTRL_DUPLICATE_FRAME
, 0) != CONTROL_TRUE
)
1579 muxer_write_chunk(mux_v
,0,0, MP_NOPTS_VALUE
, MP_NOPTS_VALUE
);
1585 if(!quiet
) mp_msg(MSGT_MENCODER
, MSGL_WARN
, MSGTR_SkipFrame
);
1590 if(sh_audio
&& !demuxer2
){
1595 unsigned int samples
=(sh_audio
->audio
.dwSampleSize
)?
1596 ((ds_tell(d_audio
)-sh_audio
->a_in_buffer_len
)/sh_audio
->audio
.dwSampleSize
) :
1597 (d_audio
->block_no
); // <- used for VBR audio
1598 a_pts
=samples
*(float)sh_audio
->audio
.dwScale
/(float)sh_audio
->audio
.dwRate
;
1603 // PTS = (last timestamp) + (bytes after last timestamp)/(bytes per sec)
1605 if(!delay_corrected
) if(a_pts
) delay_corrected
=1;
1606 a_pts
+=(ds_tell_pts(d_audio
)-sh_audio
->a_in_buffer_len
)/(float)sh_audio
->i_bps
;
1608 v_pts
=sh_video
? sh_video
->pts
: d_video
->pts
;
1609 // av = compensated (with out buffering delay) A-V diff
1610 AV_delay
=(a_pts
-v_pts
);
1611 AV_delay
-=audio_delay
;
1612 AV_delay
/= playback_speed
;
1613 AV_delay
-=mux_a
->timer
-(mux_v
->timer
-(v_timer_corr
+v_pts_corr
));
1614 // adjust for encoder delays
1615 AV_delay
-= (float) mux_a
->encoder_delay
* mux_a
->h
.dwScale
/mux_a
->h
.dwRate
;
1616 AV_delay
+= (float) mux_v
->encoder_delay
* mux_v
->h
.dwScale
/mux_v
->h
.dwRate
;
1617 // compensate input video timer by av:
1619 if(x
<-max_pts_correction
) x
=-max_pts_correction
; else
1620 if(x
> max_pts_correction
) x
= max_pts_correction
;
1621 if(default_max_pts_correction
>=0)
1622 max_pts_correction
=default_max_pts_correction
*playback_speed
;
1624 max_pts_correction
=sh_video
->frametime
*0.10 *playback_speed
; // +-10% of time
1625 // sh_video->timer-=x;
1630 { float t
=(GetTimerMS()-timer_start
)*0.001f
;
1631 float len
=(demuxer
->movi_end
-demuxer
->movi_start
);
1632 off_t pos
= demuxer
->filepos
>= 0 ? demuxer
->filepos
: stream_tell(demuxer
->stream
);
1633 float p
=len
>1000 ? (float)(pos
-demuxer
->movi_start
) / len
:
1634 (demuxer_get_percent_pos(demuxer
) / 100.0);
1636 if(!len
&& sh_audio
&& sh_audio
->audio
.dwLength
>100){
1637 p
=(sh_audio
->audio
.dwSampleSize
? ds_tell(sh_audio
->ds
)/sh_audio
->audio
.dwSampleSize
: sh_audio
->ds
->block_no
)
1638 / (float)(sh_audio
->audio
.dwLength
);
1642 if( mp_msg_test(MSGT_STATUSLINE
,MSGL_V
) ) {
1643 mp_msg(MSGT_STATUSLINE
,MSGL_STATUS
,"Pos:%6.1fs %6df (%2d%%) %3dfps Trem:%4dmin %3dmb A-V:%5.3f [%d:%d] A/Vms %d/%d D/B/S %d/%d/%d \r",
1644 mux_v
->timer
, decoded_frameno
, (int)(p
*100),
1645 (t
>1) ? (int)(decoded_frameno
/t
+0.5) : 0,
1646 (p
>0.001) ? (int)((t
/p
-t
)/60) : 0,
1647 (p
>0.001) ? (int)(stream_tell(muxer
->stream
)/p
/1024/1024) : 0,
1649 (mux_v
->timer
>1) ? (int)(mux_v
->size
/mux_v
->timer
/125) : 0,
1650 (mux_a
&& mux_a
->timer
>1) ? (int)(mux_a
->size
/mux_a
->timer
/125) : 0,
1651 audiorate
/audiosamples
, videorate
/videosamples
,
1652 duplicatedframes
, badframes
, skippedframes
1655 mp_msg(MSGT_STATUSLINE
,MSGL_STATUS
,"Pos:%6.1fs %6df (%2d%%) %5.2ffps Trem:%4dmin %3dmb A-V:%5.3f [%d:%d]\r",
1656 mux_v
->timer
, decoded_frameno
, (int)(p
*100),
1657 (t
>1) ? (float)(decoded_frameno
/t
) : 0,
1658 (p
>0.001) ? (int)((t
/p
-t
)/60) : 0,
1659 (p
>0.001) ? (int)(stream_tell(muxer
->stream
)/p
/1024/1024) : 0,
1661 (mux_v
->timer
>1) ? (int)(mux_v
->size
/mux_v
->timer
/125) : 0,
1662 (mux_a
&& mux_a
->timer
>1) ? (int)(mux_a
->size
/mux_a
->timer
/125) : 0
1668 #ifdef CONFIG_DVDREAD
1671 unsigned char* packet
=NULL
;
1673 while((len
=ds_get_packet_sub(d_dvdsub
,&packet
))>0){
1674 mp_msg(MSGT_MENCODER
,MSGL_V
,"\rDVD sub: len=%d v_pts=%5.3f s_pts=%5.3f \n",len
,sh_video
->pts
,d_dvdsub
->pts
);
1675 vobsub_out_output(vobsub_writer
,packet
,len
,mux_v
->timer
+ d_dvdsub
->pts
- sh_video
->pts
);
1680 update_subtitles(sh_video
, sh_video
->pts
, d_dvdsub
, 0);
1682 frame_data
= (s_frame_data
){ .start
= NULL
, .in_size
= 0, .frame_time
= 0., .already_read
= 0 };
1685 if(ferror(muxer_f
)) {
1686 mp_msg(MSGT_MENCODER
,MSGL_FATAL
,MSGTR_ErrorWritingFile
, out_filename
);
1687 mencoder_exit(1, NULL
);
1693 if (!interrupted
&& filelist
[++curfile
].name
!= 0) {
1694 if (sh_video
&& sh_video
->vfilter
) { // Before uniniting sh_video and the filter chain, break apart the VE.
1695 vf_instance_t
* ve
; // this will be the filter right before the ve.
1696 for (ve
= sh_video
->vfilter
; ve
->next
&& ve
->next
->next
; ve
= ve
->next
);
1698 if (ve
->next
) ve
->next
= NULL
; // I'm telling the last filter, before the VE, there is nothing after it
1699 else sh_video
->vfilter
= NULL
; // There is no chain except the VE.
1702 if(sh_audio
){ uninit_audio(sh_audio
);sh_audio
=NULL
; }
1703 if(sh_video
){ uninit_video(sh_video
);sh_video
=NULL
; }
1704 if(demuxer
) free_demuxer(demuxer
);
1705 if(stream
) free_stream(stream
); // kill cache thread
1709 m_config_pop(mconfig
);
1710 goto play_next_file
;
1713 /* Emit the remaining frames in the video system */
1714 /*TODO emit frmaes delayed by decoder lag*/
1715 if(sh_video
&& sh_video
->vfilter
){
1716 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_FlushingVideoFrames
);
1717 if (!((vf_instance_t
*)sh_video
->vfilter
)->fmt
.have_configured
)
1718 mp_msg(MSGT_MENCODER
, MSGL_WARN
, MSGTR_FiltersHaveNotBeenConfiguredEmptyFile
);
1720 ((vf_instance_t
*)sh_video
->vfilter
)->control(sh_video
->vfilter
,
1721 VFCTRL_FLUSH_FRAMES
, 0);
1726 aencoder
->fixup(aencoder
);
1728 if (muxer
->cont_write_index
) muxer_write_index(muxer
);
1729 muxer_f_size
=stream_tell(muxer
->stream
);
1730 stream_seek(muxer
->stream
,0);
1731 if (muxer
->cont_write_header
) muxer_write_header(muxer
); // update header
1733 if(ferror(muxer_f
) || fclose(muxer_f
) != 0) {
1734 mp_msg(MSGT_MENCODER
,MSGL_FATAL
,MSGTR_ErrorWritingFile
, out_filename
);
1735 mencoder_exit(1, NULL
);
1739 vobsub_out_close(vobsub_writer
);
1741 if(out_video_codec
==VCODEC_FRAMENO
&& mux_v
->timer
>100){
1742 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_RecommendedVideoBitrate
,"650MB",(int)((650*1024*1024-muxer_f_size
)/mux_v
->timer
/125));
1743 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_RecommendedVideoBitrate
,"700MB",(int)((700*1024*1024-muxer_f_size
)/mux_v
->timer
/125));
1744 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_RecommendedVideoBitrate
,"800MB",(int)((800*1024*1024-muxer_f_size
)/mux_v
->timer
/125));
1745 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_RecommendedVideoBitrate
,"2 x 650MB",(int)((2*650*1024*1024-muxer_f_size
)/mux_v
->timer
/125));
1746 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_RecommendedVideoBitrate
,"2 x 700MB",(int)((2*700*1024*1024-muxer_f_size
)/mux_v
->timer
/125));
1747 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_RecommendedVideoBitrate
,"2 x 800MB",(int)((2*800*1024*1024-muxer_f_size
)/mux_v
->timer
/125));
1750 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_VideoStreamResult
,
1751 (float)(mux_v
->size
/mux_v
->timer
*8.0f
/1000.0f
), (int)(mux_v
->size
/mux_v
->timer
), (uint64_t)mux_v
->size
, (float)mux_v
->timer
, decoded_frameno
);
1753 mp_msg(MSGT_MENCODER
, MSGL_INFO
, MSGTR_AudioStreamResult
,
1754 (float)(mux_a
->size
/mux_a
->timer
*8.0f
/1000.0f
), (int)(mux_a
->size
/mux_a
->timer
), (uint64_t)mux_a
->size
, (float)mux_a
->timer
);
1756 if(sh_audio
){ uninit_audio(sh_audio
);sh_audio
=NULL
; }
1757 if(sh_video
){ uninit_video(sh_video
);sh_video
=NULL
; }
1758 if(demuxer
) free_demuxer(demuxer
);
1759 if(stream
) free_stream(stream
); // kill cache thread