4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "bcprogressbox.h"
24 #include "bcsignals.h"
25 #include "bitspopup.h"
26 #include "byteorder.h"
28 #include "commercials.h"
29 #include "condition.h"
34 #include "filesystem.h"
36 #include "indexfile.h"
37 #include "interlacemodes.h"
38 #include "indexstate.h"
40 #include "mainerror.h"
43 #include "preferences.h"
44 #include "removefile.h"
46 #include "videodevice.inc"
53 #define HVPEG_EXE "/hveg2enc"
54 #define MJPEG_EXE "/mpeg2enc"
57 // M JPEG dependancies
58 static double frame_rate_codes[] =
71 static double aspect_ratio_codes[] =
87 FileMPEG::FileMPEG(Asset *asset, File *file)
88 : FileBase(asset, file)
91 // May also be VMPEG or AMPEG if write status.
92 if(asset->format == FILE_UNKNOWN) asset->format = FILE_MPEG;
93 asset->byte_order = 0;
94 next_frame_lock = new Condition(0, "FileMPEG::next_frame_lock");
95 next_frame_done = new Condition(0, "FileMPEG::next_frame_done");
96 vcommand_line.set_array_delete();
102 delete next_frame_lock;
103 delete next_frame_done;
104 vcommand_line.remove_all_objects();
107 void FileMPEG::get_parameters(BC_WindowBase *parent_window,
109 BC_WindowBase* &format_window,
113 if(audio_options && asset->format == FILE_AMPEG)
115 MPEGConfigAudio *window = new MPEGConfigAudio(parent_window, asset);
116 format_window = window;
117 window->create_objects();
118 window->run_window();
122 if(video_options && asset->format == FILE_VMPEG)
124 MPEGConfigVideo *window = new MPEGConfigVideo(parent_window, asset);
125 format_window = window;
126 window->create_objects();
127 window->run_window();
132 int FileMPEG::check_sig(Asset *asset)
134 return mpeg3_check_sig(asset->path);
137 void FileMPEG::get_info(char *title_path, char *path, char *text, int len)
143 int zio_access = ZIO_UNBUFFERED+ZIO_SINGLE_ACCESS;
144 if( !(fd=mpeg3_zopen(title_path, path, &result,zio_access)) ) result = 1;
145 if( !result ) result = mpeg3_create_title(fd, 0);
148 char *cp = text, *ep = text + len-1;
149 if( mpeg3_has_toc(fd) ) {
150 cp += snprintf(cp,ep-cp, _("toc path:%s\n"), path);
151 cp += snprintf(cp,ep-cp, _("title path:\n"));
152 for( int i=0; i<100; ++i ) {
153 char *title_path = mpeg3_title_path(fd,i);
154 if( !title_path ) break;
155 cp += snprintf(cp,ep-cp, " %2d. %s\n", i+1, title_path);
159 cp += snprintf(cp,ep-cp, _("file path:%s\n"), path);
160 int64_t bytes = mpeg3_get_bytes(fd);
161 char string[BCTEXTLEN];
162 sprintf(string,"%ld",bytes);
163 Units::punctuate(string);
164 cp += snprintf(cp,ep-cp, _("size: %s"), string);
166 if( mpeg3_is_program_stream(fd) )
167 cp += snprintf(cp,ep-cp, _(" program stream\n"));
168 else if( mpeg3_is_transport_stream(fd) )
169 cp += snprintf(cp,ep-cp, _(" transport stream\n"));
170 else if( mpeg3_is_video_stream(fd) )
171 cp += snprintf(cp,ep-cp, _(" video stream\n"));
172 else if( mpeg3_is_audio_stream(fd) )
173 cp += snprintf(cp,ep-cp, _(" audio stream\n"));
175 int64_t sdate = mpeg3_get_source_date(fd);
178 memset(&ostat,0,sizeof(struct stat64));
179 sdate = stat64(path, &ostat) < 0 ? 0 : ostat.st_mtime;
181 time_t tm = (time_t)sdate;
182 cp += snprintf(cp,ep-cp, _("date: %s\n"), ctime(&tm));
184 int vtrks = mpeg3_total_vstreams(fd);
185 cp += snprintf(cp,ep-cp, _("%d video tracks\n"), vtrks);
186 for( int vtrk=0; vtrk<vtrks; ++vtrk ) {
187 int cmdl = mpeg3_colormodel(fd, vtrk);
188 int color_model = bc_colormodel(cmdl);
189 char *cmodel = MPEGColorModel::cmodel_to_string(color_model);
190 int width = mpeg3_video_width(fd, vtrk);
191 int height = mpeg3_video_height(fd, vtrk);
192 cp += snprintf(cp,ep-cp, _(" v%d %s %dx%d"), vtrk, cmodel, width, height);
193 double frame_rate = mpeg3_frame_rate(fd, vtrk);
194 int64_t frames = mpeg3_video_frames(fd, vtrk);
195 cp += snprintf(cp,ep-cp, _(" (%5.2f), %ld frames"), frame_rate, frames);
196 if( frame_rate > 0 ) {
197 double secs = (double)frames / frame_rate;
198 cp += snprintf(cp,ep-cp, _(" (%0.3f secs)"),secs);
202 int atrks = mpeg3_total_astreams(fd);
203 cp += snprintf(cp,ep-cp, _("%d audio tracks\n"), atrks);
204 for( int atrk=0; atrk<atrks; ++atrk) {
205 const char *format = mpeg3_audio_format(fd, atrk);
206 cp += snprintf(cp,ep-cp, _(" a%d %s"), atrk, format);
207 int channels = mpeg3_audio_channels(fd, atrk);
208 int sample_rate = mpeg3_sample_rate(fd, atrk);
209 cp += snprintf(cp,ep-cp, _(" ch%d (%d)"), channels, sample_rate);
210 int64_t samples = mpeg3_audio_samples(fd, atrk);
211 cp += snprintf(cp,ep-cp, " %ld",samples);
212 int64_t nudge = mpeg3_get_audio_nudge(fd, atrk);
213 *cp++ = nudge >= 0 ? '+' : (nudge=-nudge, '-');
214 cp += snprintf(cp,ep-cp, _("%ld samples"),nudge);
215 if( sample_rate > 0 ) {
216 double secs = (double)(samples+nudge) / sample_rate;
217 cp += snprintf(cp,ep-cp, _(" (%0.3f secs)"),secs);
221 int stracks = mpeg3_subtitle_tracks(fd);
223 cp += snprintf(cp,ep-cp, _("%d subtitles\n"), stracks);
225 int vts_titles = mpeg3_get_total_vts_titles(fd);
227 cp += snprintf(cp,ep-cp, _("%d title sets, "), vts_titles);
228 int interleaves = mpeg3_get_total_interleaves(fd);
229 if( interleaves > 0 )
230 cp += snprintf(cp,ep-cp, _("%d interleaves\n"), interleaves);
231 int vts_title = mpeg3_set_vts_title(fd, -1);
232 int angle = mpeg3_set_angle(fd, -1);
233 int interleave = mpeg3_set_interleave(fd, -1);
234 int program = mpeg3_set_program(fd, -1);
235 cp += snprintf(cp,ep-cp, _("current program %d = title %d, angle %d, interleave %d\n\n"),
236 program, vts_title, angle, interleave);
238 ArrayList<double> cell_times;
239 int cell_no = 0; double cell_time;
240 while( !mpeg3_get_cell_time(fd, cell_no++, &cell_time) ) {
241 cell_times.append(cell_time);
243 if( cell_times.size() > 1 ) {
244 cp += snprintf(cp,ep-cp, _("cell times:"));
245 for( int i=0; i<cell_times.size(); ++i ) {
246 if( (i%4) == 0 ) *cp++ = '\n';
247 cp += snprintf(cp,ep-cp,_(" %3d. %8.3f"),i,cell_times.get(i));
249 cp += snprintf(cp,ep-cp, "\n");
252 int elements = mpeg3_dvb_channel_count(fd);
253 if( elements <= 0 ) return;
254 if( !mpeg3_dvb_get_system_time(fd, &sdate) ) {
256 cp += snprintf(cp,ep-cp, _("\nsystem time: %s"), ctime_r(&tm,string));
258 cp += snprintf(cp,ep-cp, _("elements %d\n"), elements);
260 for( int n=0; n<elements; ++n ) {
261 char name[16], enc[8]; int vstream, astream;
262 int major, minor, total_astreams, total_vstreams;
263 if( mpeg3_dvb_get_channel(fd,n, &major, &minor) ||
264 mpeg3_dvb_get_station_id(fd,n,&name[0]) ||
265 mpeg3_dvb_total_vstreams(fd,n,&total_vstreams) ||
266 mpeg3_dvb_total_astreams(fd,n,&total_astreams) ) continue;
267 cp += snprintf(cp,ep-cp, " %3d.%-3d %s", major, minor, &name[0]);
268 for( int vidx=0; vidx<total_vstreams; ++vidx ) {
269 if( mpeg3_dvb_vstream_number(fd,n,vidx,&vstream) ) continue;
270 if( vstream < 0 ) continue;
271 cp += snprintf(cp,ep-cp, " v%d", vstream);
273 for( int aidx=0; aidx<total_astreams; ++aidx ) {
274 if( mpeg3_dvb_astream_number(fd,n,aidx,&astream,&enc[0]) ) continue;
275 if( astream < 0 ) continue;
276 cp += snprintf(cp,ep-cp, " a%d %s", astream, &enc[0]);
278 for(int i=0; i<astream; ++i )
279 atrack += mpeg3_audio_channels(fd, i);
280 int channels = mpeg3_audio_channels(fd, astream);
281 cp += snprintf(cp,ep-cp, " trk %d-%d", atrack+1, atrack+channels);
282 if( enc[0] ) cp += snprintf(cp,ep-cp," (%s)",enc);
284 cp += snprintf(cp,ep-cp, "\n");
287 for( int n=0; n<elements; ++n ) {
289 if( mpeg3_dvb_get_channel(fd,n, &major, &minor) ) continue;
290 cp += snprintf(cp,ep-cp, "\n**chan %3d.%-3d\n", major, minor);
291 int len = mpeg3_dvb_get_chan_info(fd, n, -1, 0, cp, 1023);
292 if( len < 0 ) len = snprintf(cp,ep-cp,_("no info"));
293 cp += len; *cp++ = '*'; *cp++ = '*'; *cp++ = '\n';
294 for( int ord=0; ord<0x80; ++ord ) {
295 for( int i=0; (len=mpeg3_dvb_get_chan_info(fd,n,ord,i,cp,1023)) >= 0; ++i ) {
296 char *bp = cp; cp += len;
297 for( int k=2; --k>=0; ) { // skip 2 lines
298 while( bp<cp && *bp++!='\n' );
300 for( char *lp=bp; bp<cp; ++bp ) { // add new lines
301 if( *bp == '\n' || ((bp-lp)>=60 && *bp==' ') )
304 *cp++ = '\n'; *cp = 0; // trailing new line
314 int FileMPEG::get_audio_for_video(int vstream, int astream, int64_t &channel_mask)
318 int elements = mpeg3_dvb_channel_count(fd);
319 if( elements <= 0 ) return -1;
322 int total_astreams = 0, total_vstreams = 0;
323 for( int n=0; pidx<0 && n<elements; ++n ) {
324 total_astreams = total_vstreams = 0;
325 if( mpeg3_dvb_total_vstreams(fd,n,&total_vstreams) ||
326 mpeg3_dvb_total_astreams(fd,n,&total_astreams) ) continue;
327 if( !total_vstreams || !total_astreams ) continue;
328 for( int i=0; pidx<0 && i<total_vstreams; ++i ) {
330 if( mpeg3_dvb_vstream_number(fd,n,i,&vstrm) ) continue;
331 if( vstrm == vstream ) pidx = n;
334 if( pidx < 0 ) return -1;
336 int64_t channels = 0;
337 for( int i=0; i<total_astreams; ++i ) {
339 if( mpeg3_dvb_astream_number(fd,pidx,i,&astrm,0) ) continue;
340 if( astrm < 0 ) continue;
341 if( ret < 0 ) ret = astrm;
342 if( astream > 0 ) { --astream; continue; }
344 for(int i=0; i<astrm; ++i )
345 atrack += mpeg3_audio_channels(fd, i);
346 int64_t mask = (1 << mpeg3_audio_channels(fd, astrm)) - 1;
347 channels |= mask << atrack;
348 if( !astream ) break;
350 channel_mask = channels;
354 int FileMPEG::reset_parameters_derived()
367 twolame_allocation = 0;
376 lame_output_allocation = 0;
383 int FileMPEG::open_file(int rd, int wr)
389 char toc_name[BCTEXTLEN];
390 result = file->preferences->get_asset_file_path(asset, toc_name);
393 // if toc exists, use it otherwise just probe file
394 char *path = !result ? toc_name : asset->path;
395 fd = mpeg3_open_title(asset->path, path, &error);
398 case zmpeg3_t::ERR_INVALID_TOC_VERSION:
399 eprintf(_("Couldn't open %s: invalid table of contents version.\n"),asset->path);
402 case zmpeg3_t::ERR_TOC_DATE_MISMATCH:
403 eprintf(_("Couldn't open %s: table of contents out of date.\n"),asset->path);
407 eprintf(_("Couldn't open %s: table of contents corrupt.\n"),asset->path);
412 eprintf(_("Rebuilding the table of contents\n"));
417 if( mpeg3_has_toc(fd) )
419 else if( mpeg3_total_vstreams(fd) || mpeg3_total_astreams(fd) )
422 eprintf(_("Couldn't open %s: no audio or video.\n"),asset->path);
429 if( fd ) { mpeg3_close(fd); fd = 0; }
430 result = create_toc(toc_name);
434 mpeg3_set_cpus(fd, file->cpus < 4 ? file->cpus : 4);
435 file->current_program = mpeg3_set_program(fd, -1);
436 if( asset->program < 0 )
437 asset->program = file->current_program;
439 asset->audio_data = mpeg3_has_audio(fd);
440 if(asset->audio_data) {
442 for(int i = 0; i < mpeg3_total_astreams(fd); i++) {
443 asset->channels += mpeg3_audio_channels(fd, i);
445 if(!asset->sample_rate)
446 asset->sample_rate = mpeg3_sample_rate(fd, 0);
447 asset->audio_length = mpeg3_audio_samples(fd, 0);
448 if( !asset->channels || !asset->sample_rate )
452 asset->video_data = mpeg3_has_video(fd);
453 if( !result && asset->video_data ) {
454 asset->interlace_mode = BC_ILACE_MODE_UNDETECTED;
455 if( !asset->layers ) {
456 asset->layers = mpeg3_total_vstreams(fd);
458 asset->actual_width = mpeg3_video_width(fd, 0);
460 asset->width = asset->actual_width;
461 asset->actual_height = mpeg3_video_height(fd, 0);
463 asset->height = asset->actual_height;
464 if( !asset->video_length )
465 asset->video_length = mpeg3_video_frames(fd, 0);
466 if( !asset->vmpeg_cmodel )
467 asset->vmpeg_cmodel = bc_colormodel(mpeg3_colormodel(fd, 0));
468 if( !asset->frame_rate )
469 asset->frame_rate = mpeg3_frame_rate(fd, 0);
473 eprintf(_("Couldn't open %s: failed.\n"), asset->path);
477 if( !result && wr && asset->format == FILE_VMPEG ) {
478 // Heroine Virtual encoder
479 // this one is cinelerra-x.x.x/mpeg2enc
480 if(asset->vmpeg_cmodel == BC_YUV422P)
482 char bitrate_string[BCTEXTLEN];
483 char quant_string[BCTEXTLEN];
484 char iframe_string[BCTEXTLEN];
486 sprintf(bitrate_string, "%d", asset->vmpeg_bitrate);
487 sprintf(quant_string, "%d", asset->vmpeg_quantization);
488 sprintf(iframe_string, "%d", asset->vmpeg_iframe_distance);
490 // Construct command line
493 const char *exec_path = File::get_cinlib_path();
494 sprintf(mjpeg_command, "%s/%s", exec_path, HVPEG_EXE);
495 append_vcommand_line(mjpeg_command);
497 if(asset->aspect_ratio > 0)
499 append_vcommand_line("-a");
501 if(EQUIV((double)asset->width / asset->height,
502 asset->aspect_ratio))
503 append_vcommand_line("1");
505 if(EQUIV(asset->aspect_ratio, 1.333))
506 append_vcommand_line("2");
508 if(EQUIV(asset->aspect_ratio, 1.777))
509 append_vcommand_line("3");
511 if(EQUIV(asset->aspect_ratio, 2.11))
512 append_vcommand_line("4");
515 append_vcommand_line(asset->vmpeg_derivative == 1 ? "-1" : "");
516 append_vcommand_line(asset->vmpeg_cmodel == BC_YUV422P ? "-422" : "");
517 if(asset->vmpeg_fix_bitrate)
519 append_vcommand_line("-b");
520 append_vcommand_line(bitrate_string);
524 append_vcommand_line("-q");
525 append_vcommand_line(quant_string);
527 append_vcommand_line("-n");
528 append_vcommand_line(iframe_string);
529 append_vcommand_line(asset->vmpeg_progressive ? "-p" : "");
530 append_vcommand_line(asset->vmpeg_denoise ? "-d" : "");
531 append_vcommand_line(file->cpus <= 1 ? "-u" : "");
532 append_vcommand_line(asset->vmpeg_seq_codes ? "-g" : "");
533 append_vcommand_line(asset->path);
535 video_out = new FileMPEGVideo(this);
540 // mjpegtools encoder
541 // this one is cinelerra-x.x.x/thirdparty/mjpegtools/mpeg2enc
543 const char *exec_path = File::get_cinlib_path();
544 sprintf(mjpeg_command, "%s/%s -v 0 ", exec_path, MJPEG_EXE);
546 // Must disable interlacing if MPEG-1
547 switch (asset->vmpeg_preset)
549 case 0: asset->vmpeg_progressive = 1; break;
550 case 1: asset->vmpeg_progressive = 1; break;
551 case 2: asset->vmpeg_progressive = 1; break;
555 strcat(mjpeg_command, " -v0");
557 char string[BCTEXTLEN];
558 // The current usage of mpeg2enc requires bitrate of 0 when quantization is fixed and
559 // quantization of 1 when bitrate is fixed. Perfectly intuitive.
560 if(asset->vmpeg_fix_bitrate)
562 sprintf(string, " -b %d -q 1", asset->vmpeg_bitrate / 1000);
566 sprintf(string, " -b 0 -q %d", asset->vmpeg_quantization);
568 strcat(mjpeg_command, string);
576 int aspect_ratio_code = -1;
577 if(asset->aspect_ratio > 0)
579 int ncodes = sizeof(aspect_ratio_codes) / sizeof(double);
580 for(int i = 1; i < ncodes; i++)
582 if(EQUIV(aspect_ratio_codes[i], asset->aspect_ratio))
584 aspect_ratio_code = i;
592 if(EQUIV((double)asset->width / asset->height, asset->aspect_ratio))
593 aspect_ratio_code = 1;
595 if(aspect_ratio_code < 0)
597 eprintf(_("Unsupported aspect ratio %f\n"), asset->aspect_ratio);
598 aspect_ratio_code = 2;
600 sprintf(string, " -a %d", aspect_ratio_code);
601 strcat(mjpeg_command, string);
609 int frame_rate_code = -1;
610 int ncodes = sizeof(frame_rate_codes) / sizeof(double);
611 for(int i = 1; i < ncodes; ++i)
613 if(EQUIV(asset->frame_rate, frame_rate_codes[i]))
619 if(frame_rate_code < 0)
622 eprintf(_("Unsupported frame rate %f\n"), asset->frame_rate);
624 sprintf(string, " -F %d", frame_rate_code);
625 strcat(mjpeg_command, string);
631 strcat(mjpeg_command,
632 asset->vmpeg_progressive ? " -I 0" : " -I 1");
636 sprintf(string, " -M %d", file->cpus);
637 strcat(mjpeg_command, string);
640 if(!asset->vmpeg_progressive)
642 strcat(mjpeg_command, asset->vmpeg_field_order ? " -z b" : " -z t");
646 sprintf(string, " -f %d", asset->vmpeg_preset);
647 strcat(mjpeg_command, string);
650 sprintf(string, " -g %d -G %d", asset->vmpeg_iframe_distance, asset->vmpeg_iframe_distance);
651 strcat(mjpeg_command, string);
654 if(asset->vmpeg_seq_codes) strcat(mjpeg_command, " -s");
657 sprintf(string, " -R %d", CLAMP(asset->vmpeg_pframe_distance, 0, 2));
658 strcat(mjpeg_command, string);
660 sprintf(string, " -o '%s'", asset->path);
661 strcat(mjpeg_command, string);
665 printf("FileMPEG::open_file: Running %s\n", mjpeg_command);
666 if(!(mjpeg_out = popen(mjpeg_command, "w")))
668 perror("FileMPEG::open_file");
669 eprintf(_("Error while opening \"%s\" for writing\n%m\n"), mjpeg_command);
673 video_out = new FileMPEGVideo(this);
677 else if( !result && wr && asset->format == FILE_AMPEG) {
678 //char encoder_string[BCTEXTLEN]; encoder_string[0] = 0;
679 //printf("FileMPEG::open_file 1 %d\n", asset->ampeg_derivative);
681 if(asset->ampeg_derivative == 2)
683 twofp = fopen(asset->path, "w" );
684 if( !twofp ) return 1;
685 twopts = twolame_init();
686 int channels = asset->channels >= 2 ? 2 : 1;
687 twolame_set_num_channels(twopts, channels);
688 twolame_set_in_samplerate(twopts, asset->sample_rate);
689 twolame_set_mode(twopts, channels >= 2 ?
690 TWOLAME_JOINT_STEREO : TWOLAME_MONO);
691 twolame_set_bitrate(twopts, asset->ampeg_bitrate);
692 twolame_init_params(twopts);
695 if(asset->ampeg_derivative == 3)
697 lame_global = lame_init();
698 // lame_set_brate(lame_global, asset->ampeg_bitrate / 1000);
699 lame_set_brate(lame_global, asset->ampeg_bitrate);
700 lame_set_quality(lame_global, 0);
701 lame_set_in_samplerate(lame_global,
703 lame_set_num_channels(lame_global,
705 if((result = lame_init_params(lame_global)) < 0)
707 eprintf(_("encode: lame_init_params returned %d\n"), result);
708 lame_close(lame_global);
712 if(!(lame_fd = fopen(asset->path, "w")))
714 perror("FileMPEG::open_file");
715 eprintf(_("Error while opening \"%s\" for writing\n%m\n"), asset->path);
716 lame_close(lame_global);
723 eprintf(_("ampeg_derivative=%d\n"), asset->ampeg_derivative);
728 // Transport stream for DVB capture
729 if( !result && !rd && !wr && asset->format == FILE_MPEG ) {
730 if( (recd_fd = open(asset->path, O_CREAT+O_TRUNC+O_WRONLY,
731 S_IRUSR+S_IWUSR + S_IRGRP+S_IWGRP)) < 0 ) {
732 perror("FileMPEG::open_file");
733 eprintf(_("Error while opening \"%s\" for writing\n%m\n"), asset->path);
747 int FileMPEG::set_skimming(int track, int skim, skim_fn fn, void *vp)
749 return !fn ? mpeg3_set_thumbnail_callback(fd, track, 0, 0, 0, 0) :
750 mpeg3_set_thumbnail_callback(fd, track, skim, 1, fn, vp);
753 int FileMPEG::skimming(void *vp, int track)
755 File *file = (File *)vp;
756 FileMPEG *mpeg = (FileMPEG *)file->file;
757 return mpeg->skim_result = mpeg->skim_callback(mpeg->skim_data, track);
760 int FileMPEG::skim_video(int track, void *vp, skim_fn fn)
762 skim_callback = fn; skim_data = vp;
763 mpeg3_set_thumbnail_callback(fd, track, 1, 1, skimming, (void*)file);
765 while( skim_result < 0 && !mpeg3_end_of_video(fd, track) )
766 mpeg3_drop_frames(fd, 1, track);
767 mpeg3_set_thumbnail_callback(fd, track, 0, 0, 0, 0);
773 int FileMPEG::toc_nail(void *vp, int track)
775 File *file = (File *)vp;
776 FileMPEG *mpeg = (FileMPEG *)file->file;
777 int64_t framenum; uint8_t *tdat; int mw, mh;
778 if( mpeg->get_thumbnail(track, framenum, tdat, mw, mh) ) return 1;
779 int pid, width, height; double framerate;
780 if( mpeg->get_video_info(track, pid, framerate, width, height) ) return 1;
781 if( pid < 0 || framerate <= 0 ) return 1;
782 double position = framenum / framerate;
783 //printf("t%d/%03x f"_LD", %dx%d %dx%d\n",track,pid,framenum,mw,mh,width,height);
784 MWindow::commercials->get_frame(file, pid, position, tdat, mw, mh, width, height);
789 int FileMPEG::create_toc(char *toc_path)
791 // delete any existing toc files
792 char toc_file[BCTEXTLEN];
793 strcpy(toc_file, toc_path);
795 char *bp = strrchr(toc_file, '/');
796 if( !bp ) bp = toc_file;
797 char *sfx = strrchr(bp,'.');
803 int64_t total_bytes = 0, last_bytes = -1;
804 fd = mpeg3_start_toc(asset->path, toc_file,
805 file->current_program, &total_bytes);
807 eprintf(_("cant start toc/idx for file: %s\n"), asset->path);
811 // File needs a table of contents.
812 struct timeval new_time, prev_time, start_time, current_time;
813 gettimeofday(&prev_time, 0); gettimeofday(&start_time, 0);
814 if( file->preferences->scan_commercials ) {
815 set_skimming(-1, 1, toc_nail, file);
816 if( MWindow::commercials->resetDb() != 0 )
817 eprintf(_("cant access commercials database"));
819 // This gets around the fact that MWindowGUI may be locked.
820 char progress_title[BCTEXTLEN];
821 sprintf(progress_title, _("Creating %s\n"), toc_file);
822 BC_ProgressBox progress(-1, -1, progress_title, total_bytes);
827 int64_t bytes_processed = 0;
828 if( mpeg3_do_toc(fd, &bytes_processed) ) break;
830 if( bytes_processed >= total_bytes ) break;
831 if( bytes_processed == last_bytes ) {
832 eprintf(_("toc scan stopped before eof"));
835 last_bytes = bytes_processed;
837 gettimeofday(&new_time, 0);
838 if( new_time.tv_sec - prev_time.tv_sec >= 1 ) {
839 gettimeofday(¤t_time, 0);
840 int64_t elapsed_seconds = current_time.tv_sec - start_time.tv_sec;
841 int64_t total_seconds = !bytes_processed ? 0 :
842 elapsed_seconds * total_bytes / bytes_processed;
843 int64_t eta = total_seconds - elapsed_seconds;
844 progress.update(bytes_processed, 1);
845 char string[BCTEXTLEN];
846 sprintf(string, "%sETA: %jdm%jds",
847 progress_title, eta / 60, eta % 60);
848 progress.update_title(string, 1);
849 // fprintf(stderr, "ETA: %dm%ds \r",
850 // bytes_processed * 100 / total_bytes,
851 // eta / 60, eta % 60);
853 prev_time = new_time;
856 if( progress.is_cancelled() ) {
862 if( file->preferences->scan_commercials ) {
863 if( !result ) MWindow::commercials->write_ads(asset->path);
864 MWindow::commercials->closeDb();
870 progress.stop_progress();
873 remove_file(toc_file);
877 // Reopen file from toc path instead of asset path.
879 fd = mpeg3_open(toc_file, &error);
881 eprintf(_("mpeg3_open failed: %s"), toc_file);
887 int FileMPEG::get_index(IndexFile *index_file, MainProgressBar *progress_bar)
890 IndexState *index_state = index_file->get_state();
891 index_state->reset_index();
892 index_state->reset_markers();
894 // Convert the index tables from tracks to channels.
895 int ntracks = mpeg3_index_tracks(fd);
896 if( !ntracks ) return 1;
898 int index_zoom = mpeg3_index_zoom(fd);
900 for( int i = 0; i < ntracks; ++i ) {
901 int nch = mpeg3_index_channels(fd, i);
902 for( int j = 0; j < nch; ++j ) {
903 float *bfr = (float *)mpeg3_index_data(fd, i, j);
904 int64_t size = 2*mpeg3_index_size(fd, i);
905 index_state->add_index_entry(bfr, offset, size);
911 int64_t file_bytes = fs.get_size(asset->path);
912 char *index_path = index_file->index_filename;
913 return index_state->write_index(index_path, asset, index_zoom, file_bytes);
921 void FileMPEG::append_vcommand_line(const char *string)
925 char *argv = cstrdup(string);
926 vcommand_line.append(argv);
930 int FileMPEG::close_file()
933 next_frame_lock->unlock();
942 // End of sequence signal
943 if(file->asset->vmpeg_cmodel == BC_YUV422P)
945 mpeg2enc_set_input_buffers(1, 0, 0, 0);
951 vcommand_line.remove_all_objects();
954 unsigned char opkt[1152*2];
955 int ret = twolame_encode_flush(twopts, opkt, sizeof(opkt));
957 fwrite(opkt, 1, ret, twofp);
959 fprintf(stderr, _("twolame error encoding audio: %d\n"), ret);
960 fclose(twofp); twofp = 0;
962 if( twopts ) { twolame_close(&twopts); twopts = 0; }
965 lame_close(lame_global);
967 if(temp_frame) delete temp_frame;
968 if(twolame_temp) delete [] twolame_temp;
970 if(lame_temp[0]) delete [] lame_temp[0];
971 if(lame_temp[1]) delete [] lame_temp[1];
972 if(lame_output) delete [] lame_output;
973 if(lame_fd) fclose(lame_fd);
975 if(mjpeg_out) pclose(mjpeg_out);
984 FileBase::close_file();
988 int FileMPEG::get_best_colormodel(Asset *asset, int driver)
990 //printf("FileMPEG::get_best_colormodel 1\n");
995 case PLAYBACK_X11_XV:
996 case PLAYBACK_ASYNCHRONOUS:
997 return zmpeg3_cmdl(asset->vmpeg_cmodel) > 0 ?
998 asset->vmpeg_cmodel : BC_RGB888;
999 case PLAYBACK_X11_GL:
1004 case PLAYBACK_DV1394:
1005 case PLAYBACK_FIREWIRE:
1009 return zmpeg3_cmdl(asset->vmpeg_cmodel) > 0 ?
1010 asset->vmpeg_cmodel : BC_RGB888;
1011 case VIDEO4LINUX2JPEG:
1012 return BC_COMPRESSED;
1014 case VIDEO4LINUX2MPEG:
1016 case CAPTURE_JPEG_WEBCAM:
1017 return BC_COMPRESSED;
1018 case CAPTURE_YUYV_WEBCAM:
1023 case CAPTURE_FIREWIRE:
1024 case CAPTURE_IEC61883:
1027 eprintf(_("unknown driver %d\n"),driver);
1031 int FileMPEG::colormodel_supported(int colormodel)
1036 int FileMPEG::can_copy_from(Asset *asset, int64_t position)
1041 int FileMPEG::set_audio_position(int64_t sample)
1046 int channel, stream;
1047 to_streamchannel(file->current_channel, stream, channel);
1049 //printf("FileMPEG::set_audio_position %d %d %d\n", sample, mpeg3_get_sample(fd, stream), last_sample);
1050 if(sample != mpeg3_get_sample(fd, stream) &&
1051 sample != last_sample)
1053 if(sample >= 0 && sample < asset->audio_length)
1055 //printf("FileMPEG::set_audio_position seeking stream %d\n", sample);
1056 return mpeg3_set_sample(fd, sample, stream);
1065 int FileMPEG::set_video_position(int64_t pos)
1067 if( !fd || pos < 0 || pos >= asset->video_length )
1069 //printf("FileMPEG::set_video_position 1 %jd\n", x);
1070 mpeg3_set_frame(fd, pos, file->current_layer);
1074 int64_t FileMPEG::get_memory_usage()
1076 int64_t result = file->rd && fd ? mpeg3_memory_usage(fd) : 0;
1077 //printf("FileMPEG::get_memory_usage %d %jd\n", __LINE__, result);
1081 int FileMPEG::set_program(int no)
1083 return fd ? mpeg3_set_program(fd, no) : -1;
1086 int FileMPEG::get_cell_time(int no, double &time)
1088 return fd ? mpeg3_get_cell_time(fd, no, &time) : -1;
1091 int FileMPEG::get_system_time(int64_t &tm)
1093 return fd ? mpeg3_dvb_get_system_time(fd, &tm) : -1;
1096 int FileMPEG::get_video_pid(int track)
1098 return fd ? mpeg3_video_pid(fd, track) : -1;
1101 int FileMPEG::get_video_info(int track, int &pid,
1102 double &framerate, int &width, int &height, char *title)
1104 if( !fd ) return -1;
1105 pid = mpeg3_video_pid(fd, track);
1106 framerate = mpeg3_frame_rate(fd, track);
1107 width = mpeg3_video_width(fd, track);
1108 height = mpeg3_video_height(fd, track);
1109 if( !title ) return 0;
1112 int elements = mpeg3_dvb_channel_count(fd);
1113 for( int n=0; n<elements; ++n ) {
1114 int major, minor, total_vstreams, vstream, vidx;
1115 if( mpeg3_dvb_get_channel(fd,n, &major, &minor) ||
1116 mpeg3_dvb_total_vstreams(fd,n,&total_vstreams) ) continue;
1117 for( vidx=0; vidx<total_vstreams; ++vidx ) {
1118 if( mpeg3_dvb_vstream_number(fd,n,vidx,&vstream) ) continue;
1119 if( vstream < 0 ) continue;
1120 if( vstream == track ) {
1121 sprintf(title, "%3d.%-3d", major, minor);
1129 int FileMPEG::select_video_stream(Asset *asset, int vstream)
1131 if( !fd ) return -1;
1132 asset->width = mpeg3_video_width(fd, vstream);
1133 asset->height = mpeg3_video_height(fd, vstream);
1134 asset->video_length = mpeg3_video_frames(fd, vstream);
1135 asset->frame_rate = mpeg3_frame_rate(fd, vstream);
1139 int FileMPEG::select_audio_stream(Asset *asset, int astream)
1141 if( !fd ) return -1;
1142 asset->sample_rate = mpeg3_sample_rate(fd, astream);
1143 asset->audio_length = mpeg3_audio_samples(fd, astream);
1147 int FileMPEG::get_thumbnail(int stream,
1148 int64_t &position, unsigned char *&thumbnail, int &ww, int &hh)
1151 mpeg3_get_thumbnail(fd, stream, &position, &thumbnail, &ww, &hh);
1154 int FileMPEG::write_samples(double **buffer, int64_t len)
1158 //printf("FileMPEG::write_samples 1\n");
1159 if(asset->ampeg_derivative == 2) {
1161 int channels = MIN(asset->channels, 2);
1162 int64_t audio_size = len * channels * 2;
1163 if(twolame_allocation < audio_size) {
1164 if(twolame_temp) delete [] twolame_temp;
1165 twolame_temp = new unsigned char[audio_size];
1166 twolame_allocation = audio_size;
1167 if(twolame_out) delete [] twolame_out;
1168 twolame_out = new unsigned char[audio_size + 1152];
1171 for(int i = 0; i < channels; i++) {
1172 int16_t *output = ((int16_t*)twolame_temp) + i;
1173 double *input = buffer[i];
1174 for(int j = 0; j < len; j++) {
1175 int sample = (int)(*input * 0x7fff);
1176 *output = (int16_t)(CLIP(sample, -0x8000, 0x7fff));
1181 int ret = twolame_encode_buffer_interleaved(twopts,
1182 (int16_t*)twolame_temp, len,
1183 twolame_out, twolame_allocation+1152);
1185 fwrite(twolame_out, 1, ret, twofp);
1187 fprintf(stderr, _("twolame error encoding audio: %d\n"), ret);
1190 if(asset->ampeg_derivative == 3)
1192 int channels = MIN(asset->channels, 2);
1193 int64_t audio_size = len * channels;
1194 if(!lame_global) return 1;
1195 if(!lame_fd) return 1;
1196 if(lame_allocation < audio_size)
1198 if(lame_temp[0]) delete [] lame_temp[0];
1199 if(lame_temp[1]) delete [] lame_temp[1];
1200 lame_temp[0] = new float[audio_size];
1201 lame_temp[1] = new float[audio_size];
1202 lame_allocation = audio_size;
1205 if(lame_output_allocation < audio_size * 4)
1207 if(lame_output) delete [] lame_output;
1208 lame_output_allocation = audio_size * 4;
1209 lame_output = new char[lame_output_allocation];
1212 for(int i = 0; i < channels; i++)
1214 float *output = lame_temp[i];
1215 double *input = buffer[i];
1216 for(int j = 0; j < len; j++)
1218 *output++ = *input++ * (float)32768;
1222 result = lame_encode_buffer_float(lame_global,
1224 (channels > 1) ? lame_temp[1] : lame_temp[0],
1226 (unsigned char*)lame_output,
1227 lame_output_allocation);
1230 char *real_output = lame_output;
1234 for(int i = 0; i < bytes; i++)
1237 real_output = &lame_output[i];
1243 if(bytes > 0 && lame_started)
1245 result = !fwrite(real_output, 1, bytes, lame_fd);
1247 perror("FileMPEG::write_samples");
1248 eprintf(_("write failed: %m"));
1261 int FileMPEG::write_frames(VFrame ***frames, int len)
1267 int temp_w = (int)((asset->width + 15) / 16) * 16;
1270 int output_cmodel = asset->vmpeg_cmodel;
1271 // verify colormodel supported in MPEG output
1272 switch( output_cmodel ) {
1280 // Height depends on progressiveness
1281 if(asset->vmpeg_progressive || asset->vmpeg_derivative == 1)
1282 temp_h = (int)((asset->height + 15) / 16) * 16;
1284 temp_h = (int)((asset->height + 31) / 32) * 32;
1286 //printf("FileMPEG::write_frames 1\n");
1288 // Only 1 layer is supported in MPEG output
1289 for(int i = 0; i < 1; i++)
1291 for(int j = 0; j < len && !result; j++)
1293 VFrame *frame = frames[i][j];
1297 if(asset->vmpeg_cmodel == BC_YUV422P)
1299 if(frame->get_w() == temp_w &&
1300 frame->get_h() == temp_h &&
1301 frame->get_color_model() == output_cmodel)
1303 mpeg2enc_set_input_buffers(0,
1304 (char*)frame->get_y(),
1305 (char*)frame->get_u(),
1306 (char*)frame->get_v());
1311 (temp_frame->get_w() != temp_w ||
1312 temp_frame->get_h() != temp_h ||
1313 temp_frame->get_color_model() || output_cmodel))
1322 temp_frame = new VFrame(0,
1330 BC_CModels::transfer(temp_frame->get_rows(),
1332 temp_frame->get_y(),
1333 temp_frame->get_u(),
1334 temp_frame->get_v(),
1344 temp_frame->get_w(),
1345 temp_frame->get_h(),
1346 frame->get_color_model(),
1347 temp_frame->get_color_model(),
1350 temp_frame->get_w());
1352 mpeg2enc_set_input_buffers(0,
1353 (char*)temp_frame->get_y(),
1354 (char*)temp_frame->get_u(),
1355 (char*)temp_frame->get_v());
1360 // MJPEG uses the same dimensions as the input
1361 //printf("FileMPEG::write_frames %d\n", __LINE__);sleep(1);
1362 if(frame->get_color_model() == output_cmodel)
1364 mjpeg_y = frame->get_y();
1365 mjpeg_u = frame->get_u();
1366 mjpeg_v = frame->get_v();
1370 //printf("FileMPEG::write_frames %d\n", __LINE__);sleep(1);
1373 temp_frame = new VFrame(0,
1381 // printf("FileMPEG::write_frames %d temp_frame=%p %p %p %p frame=%p %p %p %p color_model=%p %p\n",
1384 // temp_frame->get_w(),
1385 // temp_frame->get_h(),
1389 // temp_frame->get_color_model(),
1390 // frame->get_color_model()); sleep(1);
1391 BC_CModels::transfer(temp_frame->get_rows(),
1393 temp_frame->get_y(),
1394 temp_frame->get_u(),
1395 temp_frame->get_v(),
1405 temp_frame->get_w(),
1406 temp_frame->get_h(),
1407 frame->get_color_model(),
1408 temp_frame->get_color_model(),
1411 temp_frame->get_w());
1412 //printf("FileMPEG::write_frames %d\n", __LINE__);sleep(1);
1414 mjpeg_y = temp_frame->get_y();
1415 mjpeg_u = temp_frame->get_u();
1416 mjpeg_v = temp_frame->get_v();
1422 next_frame_lock->unlock();
1423 next_frame_done->lock("FileMPEG::write_frames");
1424 if(mjpeg_error) result = 1;
1440 int FileMPEG::zmpeg3_cmdl(int colormodel)
1442 switch( colormodel ) {
1443 case BC_BGR888: return zmpeg3_t::cmdl_BGR888;
1444 case BC_BGR8888: return zmpeg3_t::cmdl_BGRA8888;
1445 case BC_RGB565: return zmpeg3_t::cmdl_RGB565;
1446 case BC_RGB888: return zmpeg3_t::cmdl_RGB888;
1447 case BC_RGBA8888: return zmpeg3_t::cmdl_RGBA8888;
1448 case BC_RGBA16161616: return zmpeg3_t::cmdl_RGBA16161616;
1449 case BC_YUV420P: return zmpeg3_t::cmdl_YUV420P;
1450 case BC_YUV422P: return zmpeg3_t::cmdl_YUV422P;
1451 case BC_YUV422: return zmpeg3_t::cmdl_YUYV;
1452 case BC_YUV888: return zmpeg3_t::cmdl_YUV888;
1453 case BC_YUVA8888: return zmpeg3_t::cmdl_YUVA8888;
1458 int FileMPEG::bc_colormodel(int cmdl)
1461 case zmpeg3_t::cmdl_BGR888: return BC_BGR888;
1462 case zmpeg3_t::cmdl_BGRA8888: return BC_BGR8888;
1463 case zmpeg3_t::cmdl_RGB565: return BC_RGB565;
1464 case zmpeg3_t::cmdl_RGB888: return BC_RGB888;
1465 case zmpeg3_t::cmdl_RGBA8888: return BC_RGBA8888;
1466 case zmpeg3_t::cmdl_RGBA16161616: return BC_RGBA16161616;
1467 case zmpeg3_t::cmdl_YUV420P: return BC_YUV420P;
1468 case zmpeg3_t::cmdl_YUV422P: return BC_YUV422P;
1469 case zmpeg3_t::cmdl_YUYV: return BC_YUV422;
1470 case zmpeg3_t::cmdl_YUV888: return BC_YUV888;
1471 case zmpeg3_t::cmdl_YUVA8888: return BC_YUVA8888;
1476 const char *FileMPEG::zmpeg3_cmdl_name(int cmdl)
1478 # define CMDL(nm) #nm
1479 static const char *cmdl_name[] = {
1505 return cmdl>=0 && cmdl<lengthof(cmdl_name) ? cmdl_name[cmdl] : cmdl_name[6];
1509 int FileMPEG::read_frame(VFrame *frame)
1513 int width = mpeg3_video_width(fd,file->current_layer);
1514 int height = mpeg3_video_height(fd,file->current_layer);
1515 int stream_cmdl = mpeg3_colormodel(fd,file->current_layer);
1516 int stream_color_model = bc_colormodel(stream_cmdl);
1517 int frame_color_model = frame->get_color_model();
1518 int frame_cmdl = zmpeg3_cmdl(frame_color_model);
1519 mpeg3_show_subtitle(fd, file->current_layer, file->playback_subtitle);
1522 switch( frame_color_model ) { // check for direct copy
1525 if( stream_color_model == frame_color_model &&
1526 width == frame->get_w() && height == frame->get_h() ) {
1527 mpeg3_read_yuvframe(fd,
1528 (char*)frame->get_y(),
1529 (char*)frame->get_u(),
1530 (char*)frame->get_v(),
1531 0, 0, width, height,
1532 file->current_layer);
1537 if( frame_cmdl >= 0 ) { // supported by read_frame
1538 // cant rely on frame->get_rows(), format may not support it
1540 switch( frame_color_model ) {
1541 case BC_YUV420P: uvs = 2; break;
1542 case BC_YUV422P: uvs = 1; break;
1544 //int w = frame->get_w();
1545 int h = frame->get_h();
1546 int bpl = frame->get_bytes_per_line();
1547 int uvw = !uvs ? 0 : bpl / 2;
1548 int uvh = !uvs ? 0 : h / uvs;
1549 uint8_t *rows[h + 2*uvh], *rp;
1551 if( (rp=frame->get_y()) ) {
1552 for( int i=0; i<h; ++i, rp+=bpl ) rows[n++] = rp;
1553 rp = frame->get_u();
1554 for( int i=0; i<uvh; ++i, rp+=uvw ) rows[n++] = rp;
1555 rp = frame->get_v();
1556 for( int i=0; i<uvh; ++i, rp+=uvw ) rows[n++] = rp;
1559 rp = frame->get_data(); uvh *= 2;
1560 for( int i=0; i<h; ++i, rp+=bpl ) rows[n++] = rp;
1561 for( int i=0; i<uvh; ++i, rp+=uvw ) rows[n++] = rp;
1564 mpeg3_read_frame(fd,
1565 rows, /* start of each output row */
1566 0, 0, width, height, /* input box */
1567 frame->get_w(), /* Dimensions of output_rows */
1570 file->current_layer);
1575 mpeg3_read_yuvframe_ptr(fd, &y, &u, &v, file->current_layer);
1577 BC_CModels::transfer(frame->get_rows(), 0,
1584 0, 0, width, height,
1585 0, 0, frame->get_w(), frame->get_h(),
1597 void FileMPEG::to_streamchannel(int channel, int &stream_out, int &channel_out)
1599 int total_astreams = mpeg3_total_astreams(fd);
1600 for(stream_out = 0; stream_out < total_astreams; ++stream_out )
1602 int stream_channels = mpeg3_audio_channels(fd, stream_out);
1603 if( channel < stream_channels ) break;
1604 channel -= stream_channels;
1606 channel_out = channel;
1609 int FileMPEG::read_samples(double *buffer, int64_t len)
1612 if(len < 0) return 0;
1614 // Translate pure channel to a stream and a channel in the mpeg stream
1615 int stream, channel;
1616 to_streamchannel(file->current_channel, stream, channel);
1618 //printf("FileMPEG::read_samples 1 current_sample=%jd len=%jd channel=%d\n", file->current_sample, len, channel);
1620 mpeg3_set_sample(fd,
1621 file->current_sample,
1623 mpeg3_read_audio_d(fd,
1624 buffer, /* Pointer to pre-allocated buffer of doubles */
1625 channel, /* Channel to decode */
1626 len, /* Number of samples to decode */
1627 stream); /* Stream containing the channel */
1629 // last_sample = file->current_sample;
1638 FileMPEGVideo::FileMPEGVideo(FileMPEG *file)
1644 if(file->asset->vmpeg_cmodel == BC_YUV422P)
1646 mpeg2enc_init_buffers();
1647 mpeg2enc_set_w(file->asset->width);
1648 mpeg2enc_set_h(file->asset->height);
1649 mpeg2enc_set_rate(file->asset->frame_rate);
1653 FileMPEGVideo::~FileMPEGVideo()
1658 void FileMPEGVideo::run()
1660 if(file->asset->vmpeg_cmodel == BC_YUV422P)
1662 printf("FileMPEGVideo::run ");
1663 for(int i = 0; i < file->vcommand_line.total; i++)
1664 printf("%s ", file->vcommand_line.values[i]);
1666 mpeg2enc(file->vcommand_line.total, file->vcommand_line.values);
1672 //printf("FileMPEGVideo::run %d\n", __LINE__);
1673 file->next_frame_lock->lock("FileMPEGVideo::run");
1674 //printf("FileMPEGVideo::run %d\n", __LINE__);
1677 file->next_frame_done->unlock();
1683 //printf("FileMPEGVideo::run %d\n", __LINE__);
1684 // YUV4 sequence header
1685 if(!file->wrote_header)
1687 file->wrote_header = 1;
1689 char interlace_string[BCTEXTLEN];
1690 if(!file->asset->vmpeg_progressive)
1692 sprintf(interlace_string, file->asset->vmpeg_field_order ? "b" : "t");
1696 sprintf(interlace_string, "p");
1698 double aspect_ratio = file->asset->aspect_ratio >= 0 ?
1699 file->asset->aspect_ratio : 1.0;
1700 //printf("FileMPEGVideo::run %d\n", __LINE__);
1701 fprintf(file->mjpeg_out, "YUV4MPEG2 W%d H%d F%d:%d I%s A%d:%d C%s\n",
1702 file->asset->width, file->asset->height,
1703 (int)(file->asset->frame_rate * 1001),
1704 1001, interlace_string,
1705 (int)(aspect_ratio * 1000), 1000,
1707 //printf("FileMPEGVideo::run %d\n", __LINE__);
1710 // YUV4 frame header
1711 //printf("FileMPEGVideo::run %d\n", __LINE__);
1712 fprintf(file->mjpeg_out, "FRAME\n");
1715 //printf("FileMPEGVideo::run %d\n", __LINE__);
1716 if(!fwrite(file->mjpeg_y, file->asset->width * file->asset->height, 1, file->mjpeg_out))
1717 file->mjpeg_error = 1;
1718 //printf("FileMPEGVideo::run %d\n", __LINE__);
1719 if(!fwrite(file->mjpeg_u, file->asset->width * file->asset->height / 4, 1, file->mjpeg_out))
1720 file->mjpeg_error = 1;
1721 //printf("FileMPEGVideo::run %d\n", __LINE__);
1722 if(!fwrite(file->mjpeg_v, file->asset->width * file->asset->height / 4, 1, file->mjpeg_out))
1723 file->mjpeg_error = 1;
1724 //printf("FileMPEGVideo::run %d\n", __LINE__);
1725 fflush(file->mjpeg_out);
1727 //printf("FileMPEGVideo::run %d\n", __LINE__);
1728 file->next_frame_done->unlock();
1729 //printf("FileMPEGVideo::run %d\n", __LINE__);
1731 pclose(file->mjpeg_out);
1732 file->mjpeg_out = 0;
1747 MPEGConfigAudio::MPEGConfigAudio(BC_WindowBase *parent_window, Asset *asset)
1748 : BC_Window(_(PROGRAM_NAME ": Audio Compression"),
1749 parent_window->get_abs_cursor_x(1),
1750 parent_window->get_abs_cursor_y(1),
1759 this->parent_window = parent_window;
1760 this->asset = asset;
1763 MPEGConfigAudio::~MPEGConfigAudio()
1767 void MPEGConfigAudio::create_objects()
1773 lock_window("MPEGConfigAudio::create_objects");
1774 if(asset->format == FILE_MPEG)
1776 add_subwindow(new BC_Title(x, y, _("No options for MPEG transport stream.")));
1782 add_tool(new BC_Title(x, y, _("Layer:")));
1783 add_tool(layer = new MPEGLayer(x1, y, this));
1784 layer->create_objects();
1787 add_tool(new BC_Title(x, y, _("Kbits per second:")));
1788 add_tool(bitrate = new MPEGABitrate(x1, y, this));
1789 bitrate->create_objects();
1792 add_subwindow(new BC_OKButton(this));
1797 int MPEGConfigAudio::close_event()
1809 MPEGLayer::MPEGLayer(int x, int y, MPEGConfigAudio *gui)
1810 : BC_PopupMenu(x, y, 100, layer_to_string(gui->asset->ampeg_derivative))
1815 void MPEGLayer::create_objects()
1817 add_item(new BC_MenuItem(layer_to_string(2)));
1818 add_item(new BC_MenuItem(layer_to_string(3)));
1821 int MPEGLayer::handle_event()
1823 gui->asset->ampeg_derivative = string_to_layer(get_text());
1824 gui->bitrate->set_layer(gui->asset->ampeg_derivative);
1828 int MPEGLayer::string_to_layer(char *string)
1830 if(!strcasecmp(layer_to_string(2), string))
1832 if(!strcasecmp(layer_to_string(3), string))
1838 char* MPEGLayer::layer_to_string(int layer)
1862 MPEGABitrate::MPEGABitrate(int x, int y, MPEGConfigAudio *gui)
1866 bitrate_to_string(gui->string, gui->asset->ampeg_bitrate))
1871 void MPEGABitrate::create_objects()
1873 set_layer(gui->asset->ampeg_derivative);
1876 void MPEGABitrate::set_layer(int layer)
1878 while(total_items()) del_item(0);
1882 add_item(new BC_MenuItem("160"));
1883 add_item(new BC_MenuItem("192"));
1884 add_item(new BC_MenuItem("224"));
1885 add_item(new BC_MenuItem("256"));
1886 add_item(new BC_MenuItem("320"));
1887 add_item(new BC_MenuItem("384"));
1891 add_item(new BC_MenuItem("8"));
1892 add_item(new BC_MenuItem("16"));
1893 add_item(new BC_MenuItem("24"));
1894 add_item(new BC_MenuItem("32"));
1895 add_item(new BC_MenuItem("40"));
1896 add_item(new BC_MenuItem("48"));
1897 add_item(new BC_MenuItem("56"));
1898 add_item(new BC_MenuItem("64"));
1899 add_item(new BC_MenuItem("80"));
1900 add_item(new BC_MenuItem("96"));
1901 add_item(new BC_MenuItem("112"));
1902 add_item(new BC_MenuItem("128"));
1903 add_item(new BC_MenuItem("144"));
1904 add_item(new BC_MenuItem("160"));
1905 add_item(new BC_MenuItem("192"));
1906 add_item(new BC_MenuItem("224"));
1907 add_item(new BC_MenuItem("256"));
1908 add_item(new BC_MenuItem("320"));
1912 int MPEGABitrate::handle_event()
1914 gui->asset->ampeg_bitrate = string_to_bitrate(get_text());
1918 int MPEGABitrate::string_to_bitrate(char *string)
1920 return atol(string);
1924 char* MPEGABitrate::bitrate_to_string(char *string, int bitrate)
1926 sprintf(string, "%d", bitrate);
1938 MPEGConfigVideo::MPEGConfigVideo(BC_WindowBase *parent_window,
1940 : BC_Window(_(PROGRAM_NAME ": Video Compression"),
1941 parent_window->get_abs_cursor_x(1),
1942 parent_window->get_abs_cursor_y(1),
1951 this->parent_window = parent_window;
1952 this->asset = asset;
1956 MPEGConfigVideo::~MPEGConfigVideo()
1960 void MPEGConfigVideo::create_objects()
1966 lock_window("MPEGConfigVideo::create_objects");
1967 if(asset->format == FILE_MPEG)
1969 add_subwindow(new BC_Title(x, y, _("No options for MPEG transport stream.")));
1974 add_subwindow(new BC_Title(x, y, _("Color model:")));
1975 add_subwindow(cmodel = new MPEGColorModel(x1, y, this));
1976 cmodel->create_objects();
1979 update_cmodel_objs();
1981 add_subwindow(new BC_OKButton(this));
1986 int MPEGConfigVideo::close_event()
1993 void MPEGConfigVideo::delete_cmodel_objs()
1998 delete fixed_bitrate;
2001 delete iframe_distance;
2002 delete pframe_distance;
2003 delete top_field_first;
2007 titles.remove_all_objects();
2011 void MPEGConfigVideo::reset_cmodel()
2019 iframe_distance = 0;
2020 pframe_distance = 0;
2021 top_field_first = 0;
2027 void MPEGConfigVideo::update_cmodel_objs()
2035 delete_cmodel_objs();
2037 if(asset->vmpeg_cmodel == BC_YUV420P)
2039 add_subwindow(title = new BC_Title(x, y + 5, _("Format Preset:")));
2040 titles.append(title);
2041 add_subwindow(preset = new MPEGPreset(x1, y, this));
2042 preset->create_objects();
2046 add_subwindow(title = new BC_Title(x, y + 5, _("Derivative:")));
2047 titles.append(title);
2048 add_subwindow(derivative = new MPEGDerivative(x1, y, this));
2049 derivative->create_objects();
2052 add_subwindow(title = new BC_Title(x, y + 5, _("Bitrate:")));
2053 titles.append(title);
2054 add_subwindow(bitrate = new MPEGBitrate(x1, y, this));
2055 add_subwindow(fixed_bitrate = new MPEGFixedBitrate(x2, y, this));
2058 add_subwindow(title = new BC_Title(x, y, _("Quantization:")));
2059 titles.append(title);
2060 quant = new MPEGQuant(x1, y, this);
2061 quant->create_objects();
2062 add_subwindow(fixed_quant = new MPEGFixedQuant(x2, y, this));
2065 add_subwindow(title = new BC_Title(x, y, _("I frame distance:")));
2066 titles.append(title);
2067 iframe_distance = new MPEGIFrameDistance(x1, y, this);
2068 iframe_distance->create_objects();
2071 if(asset->vmpeg_cmodel == BC_YUV420P)
2073 add_subwindow(title = new BC_Title(x, y, _("P frame distance:")));
2074 titles.append(title);
2075 pframe_distance = new MPEGPFrameDistance(x1, y, this);
2076 pframe_distance->create_objects();
2079 add_subwindow(top_field_first = new BC_CheckBox(x, y, &asset->vmpeg_field_order, _("Bottom field first")));
2083 add_subwindow(progressive = new BC_CheckBox(x, y, &asset->vmpeg_progressive, _("Progressive frames")));
2085 add_subwindow(denoise = new BC_CheckBox(x, y, &asset->vmpeg_denoise, _("Denoise")));
2087 add_subwindow(seq_codes = new BC_CheckBox(x, y, &asset->vmpeg_seq_codes, _("Sequence start codes in every GOP")));
2103 MPEGDerivative::MPEGDerivative(int x, int y, MPEGConfigVideo *gui)
2104 : BC_PopupMenu(x, y, 150, derivative_to_string(gui->asset->vmpeg_derivative))
2109 void MPEGDerivative::create_objects()
2111 add_item(new BC_MenuItem(derivative_to_string(1)));
2112 add_item(new BC_MenuItem(derivative_to_string(2)));
2115 int MPEGDerivative::handle_event()
2117 gui->asset->vmpeg_derivative = string_to_derivative(get_text());
2121 int MPEGDerivative::string_to_derivative(char *string)
2123 if(!strcasecmp(derivative_to_string(1), string))
2125 if(!strcasecmp(derivative_to_string(2), string))
2131 char* MPEGDerivative::derivative_to_string(int derivative)
2159 MPEGPreset::MPEGPreset(int x, int y, MPEGConfigVideo *gui)
2160 : BC_PopupMenu(x, y, 200, value_to_string(gui->asset->vmpeg_preset))
2165 void MPEGPreset::create_objects()
2167 for(int i = 0; i < 10; i++)
2169 add_item(new BC_MenuItem(value_to_string(i)));
2173 int MPEGPreset::handle_event()
2175 gui->asset->vmpeg_preset = string_to_value(get_text());
2179 int MPEGPreset::string_to_value(char *string)
2181 for(int i = 0; i < 10; i++)
2183 if(!strcasecmp(value_to_string(i), string))
2189 char* MPEGPreset::value_to_string(int derivative)
2193 case 0: return _("Generic MPEG-1"); break;
2194 case 1: return _("standard VCD"); break;
2195 case 2: return _("user VCD"); break;
2196 case 3: return _("Generic MPEG-2"); break;
2197 case 4: return _("standard SVCD"); break;
2198 case 5: return _("user SVCD"); break;
2199 case 6: return _("VCD Still sequence"); break;
2200 case 7: return _("SVCD Still sequence"); break;
2201 case 8: return _("DVD NAV"); break;
2202 case 9: return _("DVD"); break;
2203 default: return _("Generic MPEG-1"); break;
2217 MPEGBitrate::MPEGBitrate(int x, int y, MPEGConfigVideo *gui)
2218 : BC_TextBox(x, y, 100, 1, gui->asset->vmpeg_bitrate)
2224 int MPEGBitrate::handle_event()
2226 gui->asset->vmpeg_bitrate = atol(get_text());
2234 MPEGQuant::MPEGQuant(int x, int y, MPEGConfigVideo *gui)
2235 : BC_TumbleTextBox(gui,
2236 (int64_t)gui->asset->vmpeg_quantization,
2246 int MPEGQuant::handle_event()
2248 gui->asset->vmpeg_quantization = atol(get_text());
2252 MPEGFixedBitrate::MPEGFixedBitrate(int x, int y, MPEGConfigVideo *gui)
2253 : BC_Radial(x, y, gui->asset->vmpeg_fix_bitrate, _("Fixed bitrate"))
2258 int MPEGFixedBitrate::handle_event()
2261 gui->asset->vmpeg_fix_bitrate = 1;
2262 gui->fixed_quant->update(0);
2266 MPEGFixedQuant::MPEGFixedQuant(int x, int y, MPEGConfigVideo *gui)
2267 : BC_Radial(x, y, !gui->asset->vmpeg_fix_bitrate, _("Fixed quantization"))
2272 int MPEGFixedQuant::handle_event()
2275 gui->asset->vmpeg_fix_bitrate = 0;
2276 gui->fixed_bitrate->update(0);
2288 MPEGIFrameDistance::MPEGIFrameDistance(int x, int y, MPEGConfigVideo *gui)
2289 : BC_TumbleTextBox(gui,
2290 (int64_t)gui->asset->vmpeg_iframe_distance,
2300 int MPEGIFrameDistance::handle_event()
2302 gui->asset->vmpeg_iframe_distance = atoi(get_text());
2312 MPEGPFrameDistance::MPEGPFrameDistance(int x, int y, MPEGConfigVideo *gui)
2313 : BC_TumbleTextBox(gui,
2314 (int64_t)gui->asset->vmpeg_pframe_distance,
2324 int MPEGPFrameDistance::handle_event()
2326 gui->asset->vmpeg_pframe_distance = atoi(get_text());
2337 MPEGColorModel::MPEGColorModel(int x, int y, MPEGConfigVideo *gui)
2338 : BC_PopupMenu(x, y, 150, cmodel_to_string(gui->asset->vmpeg_cmodel))
2343 void MPEGColorModel::create_objects()
2345 add_item(new BC_MenuItem(cmodel_to_string(BC_YUV420P)));
2346 add_item(new BC_MenuItem(cmodel_to_string(BC_YUV422P)));
2349 int MPEGColorModel::handle_event()
2351 gui->asset->vmpeg_cmodel = string_to_cmodel(get_text());
2352 gui->update_cmodel_objs();
2353 gui->show_window(1);
2357 int MPEGColorModel::string_to_cmodel(char *string)
2359 if(!strcasecmp(cmodel_to_string(BC_YUV420P), string))
2361 if(!strcasecmp(cmodel_to_string(BC_YUV422P), string))
2366 char* MPEGColorModel::cmodel_to_string(int cmodel)
2370 case BC_YUV420P: return _("YUV 4:2:0");
2371 case BC_YUV422P: return _("YUV 4:2:2");
2372 default: return _("YUV 4:2:0");