7 // work around for __STDC_CONSTANT_MACROS
11 #include "bcwindowbase.h"
12 #include "bitspopup.h"
18 #include "fileffmpeg.h"
19 #include "filesystem.h"
20 #include "indexfile.h"
21 #include "interlacemodes.h"
23 #include "mainerror.h"
24 #include "mainprogress.h"
26 #include "preferences.h"
27 #include "videodevice.inc"
33 FileFFMPEG::FileFFMPEG(Asset *asset, File *file)
34 : FileBase(asset, file)
37 if(asset->format == FILE_UNKNOWN)
38 asset->format = FILE_FFMPEG;
41 FileFFMPEG::~FileFFMPEG()
47 FFMpegConfigNum::FFMpegConfigNum(BC_Window *window,
48 int x, int y, char *title_text, int *output)
49 : BC_TumbleTextBox(window, *output, -1, INT_MAX, xS(100), y, xS(100))
51 this->window = window;
52 this->x = x; this->y = y;
53 this->title_text = title_text;
54 this->output = output;
57 FFMpegConfigNum::~FFMpegConfigNum()
61 void FFMpegConfigNum::create_objects()
63 window->add_subwindow(title = new BC_Title(x, y, title_text));
64 BC_TumbleTextBox::create_objects();
67 int FFMpegConfigNum::update_param(const char *param, const char *opts)
70 if( !FFMPEG::get_ff_option(param, opts, value) ) {
71 if( (*output = atoi(value)) < 0 ) {
76 BC_TumbleTextBox::update((int64_t)*output);
81 int FFMpegConfigNum::handle_event()
83 *output = atoi(get_text());
87 FFMpegAudioNum::FFMpegAudioNum(BC_Window *window,
88 int x, int y, char *title_text, int *output)
89 : FFMpegConfigNum(window, x, y, title_text, output)
93 int FFMpegAudioBitrate::handle_event()
95 int ret = FFMpegAudioNum::handle_event();
96 Asset *asset = window()->asset;
97 if( asset->ff_audio_bitrate > 0 )
98 window()->quality->disable();
99 else if( !window()->quality->get_textbox()->is_hidden() )
100 window()->quality->enable();
104 int FFMpegAudioQuality::handle_event()
106 int ret = FFMpegAudioNum::handle_event();
107 Asset *asset = window()->asset;
108 if( asset->ff_audio_quality >= 0 )
109 window()->bitrate->disable();
110 else if( !window()->bitrate->get_textbox()->is_hidden() )
111 window()->bitrate->enable();
115 FFMpegVideoNum::FFMpegVideoNum(BC_Window *window,
116 int x, int y, char *title_text, int *output)
117 : FFMpegConfigNum(window, x, y, title_text, output)
121 int FFMpegVideoBitrate::handle_event()
123 int ret = FFMpegVideoNum::handle_event();
124 Asset *asset = window()->asset;
125 if( asset->ff_video_bitrate > 0 )
126 window()->quality->disable();
127 else if( !window()->quality->get_textbox()->is_hidden() )
128 window()->quality->enable();
132 int FFMpegVideoQuality::handle_event()
134 int ret = FFMpegVideoNum::handle_event();
135 Asset *asset = window()->asset;
136 if( asset->ff_video_quality >= 0 )
137 window()->bitrate->disable();
138 else if( !window()->bitrate->get_textbox()->is_hidden() )
139 window()->bitrate->enable();
143 FFMpegPixelFormat::FFMpegPixelFormat(FFMPEGConfigVideo *vid_config,
144 int x, int y, int w, int list_h)
145 : BC_PopupTextBox(vid_config, 0, 0, x, y, w, list_h)
147 this->vid_config = vid_config;
150 int FFMpegPixelFormat::handle_event()
152 strncpy(vid_config->asset->ff_pixel_format, get_text(),
153 sizeof(vid_config->asset->ff_pixel_format));
157 void FFMpegPixelFormat::update_formats()
159 pixfmts.remove_all_objects();
160 char video_codec[BCSTRLEN]; video_codec[0] = 0;
161 const char *vcodec = vid_config->asset->vcodec;
162 const AVCodec *av_codec = !FFMPEG::get_codec(video_codec, "video", vcodec) ?
163 avcodec_find_encoder_by_name(video_codec) : 0;
164 const AVPixelFormat *pix_fmts = av_codec ? av_codec->pix_fmts : 0;
166 for( int i=0; pix_fmts[i]>=0; ++i ) {
167 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmts[i]);
168 if( desc ) pixfmts.append(new BC_ListBoxItem(desc->name));
171 update_list(&pixfmts);
174 FFMpegSampleFormat::FFMpegSampleFormat(FFMPEGConfigAudio *aud_config,
175 int x, int y, int w, int list_h)
176 : BC_PopupTextBox(aud_config, 0, 0, x, y, w, list_h)
178 this->aud_config = aud_config;
181 int FFMpegSampleFormat::handle_event()
183 strncpy(aud_config->asset->ff_sample_format, get_text(),
184 sizeof(aud_config->asset->ff_sample_format));
188 void FFMpegSampleFormat::update_formats()
190 samplefmts.remove_all_objects();
191 char audio_codec[BCSTRLEN]; audio_codec[0] = 0;
192 const char *acodec = aud_config->asset->acodec;
193 const AVCodec *av_codec = !FFMPEG::get_codec(audio_codec, "audio", acodec) ?
194 avcodec_find_encoder_by_name(audio_codec) : 0;
195 const AVSampleFormat *sample_fmts = av_codec ? av_codec->sample_fmts : 0;
197 for( int i=0; sample_fmts[i]>=0; ++i ) {
198 const char *name = av_get_sample_fmt_name(sample_fmts[i]);
199 if( name ) samplefmts.append(new BC_ListBoxItem(name));
202 update_list(&samplefmts);
205 void FileFFMPEG::set_options(char *cp, int len, const char *bp)
207 char *ep = cp + len-2, ch = 0;
208 while( cp < ep && *bp != 0 ) { ch = *bp++; *cp++ = ch; }
209 if( ch != '\n' ) *cp++ = '\n';
213 void FileFFMPEG::get_parameters(BC_WindowBase *parent_window,
214 Asset *asset, BC_WindowBase *&format_window,
215 int audio_options, int video_options, EDL *edl)
217 Asset *ff_asset = new Asset();
218 ff_asset->copy_from(asset, 0);
220 parent_window->get_pop_cursor(wx, wy);
221 if( audio_options ) {
222 FFMPEGConfigAudio *window = new FFMPEGConfigAudio(parent_window,
223 wx, wy, ff_asset, edl);
224 format_window = window;
225 window->create_objects();
226 if( !window->run_window() ) {
227 asset->copy_from(ff_asset,0);
228 set_options(asset->ff_audio_options,
229 sizeof(asset->ff_audio_options),
230 window->audio_options->get_text());
234 else if( video_options ) {
235 FFMPEGConfigVideo *window = new FFMPEGConfigVideo(parent_window,
236 wx, wy, ff_asset, edl);
237 format_window = window;
238 window->create_objects();
239 if( !window->run_window() ) {
240 asset->copy_from(ff_asset,0);
241 set_options(asset->ff_video_options,
242 sizeof(asset->ff_video_options),
243 window->video_options->get_text());
247 ff_asset->remove_user();
250 int FileFFMPEG::check_sig(Asset *asset)
252 char *ptr = strstr(asset->path, ".pcm");
254 ptr = strstr(asset->path, ".raw");
258 int ret = !ffmpeg.init_decoder(asset->path) &&
259 !ffmpeg.open_decoder() ? 1 : 0;
263 void FileFFMPEG::get_info(char *path, char *text, int len)
267 cp += sprintf(cp, _("file path: %s\n"), path);
270 if( stat(path, &st) < 0 ) {
271 cp += sprintf(cp, _(" err: %s\n"), strerror(errno));
275 cp += sprintf(cp, _(" %jd bytes\n"), st.st_size);
277 if( !ret ) ret = ffmpeg.init_decoder(path);
278 if( !ret ) ret = ffmpeg.open_decoder();
280 cp += sprintf(cp, _("info:\n"));
281 ffmpeg.info(cp, len-(cp-text));
284 sprintf(cp, _("== open failed\n"));
287 int FileFFMPEG::get_video_info(int track, int &pid, double &framerate,
288 int &width, int &height, char *title)
291 pid = ff->ff_video_pid(track);
292 framerate = ff->ff_frame_rate(track);
293 width = ff->ff_video_width(track);
294 height = ff->ff_video_height(track);
295 if( title ) *title = 0;
299 int FileFFMPEG::get_audio_for_video(int vstream, int astream, int64_t &channel_mask)
302 return ff->ff_audio_for_video(vstream, astream, channel_mask);
305 int FileFFMPEG::select_video_stream(Asset *asset, int vstream)
307 if( !ff || !asset->video_data ) return 1;
308 asset->width = ff->ff_video_width(vstream);
309 asset->height = ff->ff_video_height(vstream);
310 if( (asset->video_length = ff->ff_video_frames(vstream)) < 2 )
311 asset->video_length = asset->video_length < 0 ? 0 : -1;
312 asset->frame_rate = ff->ff_frame_rate(vstream);
316 int FileFFMPEG::select_audio_stream(Asset *asset, int astream)
318 if( !ff || !asset->audio_data ) return 1;
319 asset->sample_rate = ff->ff_sample_rate(astream);
320 asset->audio_length = ff->ff_audio_samples(astream);
324 int FileFFMPEG::open_file(int rd, int wr)
328 ff = new FFMPEG(this);
331 result = ff->init_decoder(asset->path);
332 if( !result ) result = ff->open_decoder();
334 int audio_channels = ff->ff_total_audio_channels();
335 if( audio_channels > 0 ) {
336 asset->audio_data = 1;
337 asset->channels = audio_channels;
338 asset->sample_rate = ff->ff_sample_rate(0);
339 asset->audio_length = ff->ff_audio_samples(0);
340 strcpy(asset->acodec, ff->ff_audio_format(0));
342 int video_layers = ff->ff_total_video_layers();
343 if( video_layers > 0 ) {
344 asset->video_data = 1;
345 asset->aspect_ratio = ff->ff_aspect_ratio(0);
346 if (!asset->interlace_mode) asset->interlace_mode = ff->ff_interlace(0);
347 if ( ff->ff_video_frames(0) > 1 ) {
348 // ff->video_probe(1);
349 if (!asset->interlace_mode && (ff->interlace_from_codec) ) asset->interlace_mode = ff->video_probe(1);
351 if( !asset->layers ) asset->layers = video_layers;
352 asset->actual_width = ff->ff_video_width(0);
353 asset->actual_height = ff->ff_video_height(0);
354 if( !asset->width ) asset->width = asset->actual_width;
355 if( !asset->height ) asset->height = asset->actual_height;
356 if( !asset->video_length &&
357 (asset->video_length = ff->ff_video_frames(0)) < 2 )
358 asset->video_length = asset->video_length < 0 ? 0 : -1;
359 if( !asset->frame_rate ) asset->frame_rate = ff->ff_frame_rate(0);
360 if( asset->ff_color_range < 0 )
361 asset->ff_color_range = ff->ff_color_range(0);
362 if( asset->ff_color_space < 0 )
363 asset->ff_color_space = ff->ff_color_space(0);
364 strcpy(asset->vcodec, ff->ff_video_codec(0));
366 IndexState *index_state = asset->index_state;
367 index_state->read_markers(file->preferences->index_directory, asset->path);
371 result = ff->init_encoder(asset->path);
372 // must be in this order or dvdauthor will fail
373 if( !result && asset->video_data )
374 result = ff->open_encoder("video", asset->vcodec);
375 if( !result && asset->audio_data )
376 result = ff->open_encoder("audio", asset->acodec);
381 int FileFFMPEG::close_file()
389 int FileFFMPEG::write_samples(double **buffer, int64_t len)
391 if( !ff || len < 0 ) return -1;
393 int ret = ff->encode(stream, buffer, len);
397 int FileFFMPEG::write_frames(VFrame ***frames, int len)
400 int ret = 0, layer = 0;
401 for(int i = 0; i < 1; i++) {
402 for(int j = 0; j < len && !ret; j++) {
403 VFrame *frame = frames[i][j];
404 ret = ff->encode(layer, frame);
411 int FileFFMPEG::read_samples(double *buffer, int64_t len)
413 if( !ff || len < 0 ) return -1;
414 int ch = file->current_channel;
415 int64_t pos = file->current_sample;
416 int ret = ff->decode(ch, pos, buffer, len);
417 if( ret > 0 ) return 0;
418 memset(buffer,0,len*sizeof(*buffer));
422 int FileFFMPEG::read_frame(VFrame *frame)
425 int layer = file->current_layer;
426 int64_t pos = asset->video_length >= 0 ? file->current_frame : 0;
427 int ret = ff->decode(layer, pos, frame);
428 frame->set_status(ret);
429 if( ret >= 0 ) return 0;
430 frame->clear_frame();
435 int64_t FileFFMPEG::get_memory_usage()
440 int FileFFMPEG::colormodel_supported(int colormodel)
446 int FileFFMPEG::get_best_colormodel(int driver, int vstream)
448 if( vstream < 0 ) vstream = 0;
449 int is_mpeg = !ff ? 0 : ff->ff_video_mpeg_color_range(vstream);
453 case PLAYBACK_X11_GL: return is_mpeg ? BC_YUV888 : BC_RGB888;
454 case PLAYBACK_X11_XV: return BC_YUV420P;
460 int FileFFMPEG::get_best_colormodel(Asset *asset, int driver)
463 // the direct X11 color model requires scaling in the codec
466 case PLAYBACK_X11_GL: return BC_RGB888;
467 case PLAYBACK_X11_XV: return BC_YUV420P;
474 FFMPEGConfigWindow::FFMPEGConfigWindow(const char *title,
475 BC_WindowBase *parent_window,
476 int x, int y, int w, int h,
477 Asset *asset, EDL *edl)
478 : BC_Window(title, x, y, w, h)
480 this->parent_window = parent_window;
485 ff_options_dialog = 0;
490 FFMPEGConfigWindow::~FFMPEGConfigWindow()
492 delete ff_options_dialog;
495 void FFMPEGConfigWindow::start(AVCodecContext *avctx)
498 ff_options_dialog->start();
501 void FFMPEGConfigWindow::start(AVFormatContext *fmt_ctx)
503 this->fmt_ctx = fmt_ctx;
504 ff_options_dialog->start();
509 FFMPEGConfigAudio::FFMPEGConfigAudio(BC_WindowBase *parent_window,
510 int x, int y, Asset *asset, EDL *edl)
511 : FFMPEGConfigWindow(_(PROGRAM_NAME ": Audio Preset"), parent_window, x, y,
512 xS(420), yS(420), asset, edl)
517 format_name = asset->fformat;
518 codec_name = asset->acodec;
519 // *** CONTEXT_HELP ***
520 context_help_set_keyword("Options for Render with FFmpeg");
523 FFMPEGConfigAudio::~FFMPEGConfigAudio()
525 lock_window("FFMPEGConfigAudio::~FFMPEGConfigAudio");
527 presets.remove_all_objects();
528 delete audio_options;
532 void FFMPEGConfigAudio::read_options()
534 const char *options = audio_options->get_text();
535 int options_len = strlen(options);
536 ff_options_dialog->load_options(options, options_len);
538 void FFMPEGConfigAudio::save_options()
540 char options[BCTEXTLEN];
541 ff_options_dialog->store_options(options, sizeof(options)-1);
542 audio_options->update(options);
545 void FFMPEGConfigAudio::load_options()
547 FFMPEG::load_audio_options(asset, edl);
550 void FFMPEGConfigAudio::create_objects()
552 int x = xS(10), y = yS(10);
553 lock_window("FFMPEGConfigAudio::create_objects");
556 char option_path[BCTEXTLEN];
557 FFMPEG::set_option_path(option_path, "audio");
558 fs.update(option_path);
559 int total_files = fs.total_files();
560 for(int i = 0; i < total_files; i++) {
561 const char *name = fs.get_entry(i)->get_name();
562 if( asset->fformat[0] != 0 ) {
563 const char *ext = strrchr(name,'.');
565 if( strcmp(asset->fformat, ++ext) ) continue;
567 presets.append(new BC_ListBoxItem(name));
570 if( asset->acodec[0] ) {
571 int k = presets.size();
572 while( --k >= 0 && strcmp(asset->acodec, presets[k]->get_text()) );
573 if( k < 0 ) asset->acodec[0] = 0;
576 if( !asset->acodec[0] && presets.size() > 0 )
577 strcpy(asset->acodec, presets[0]->get_text());
579 add_tool(new BC_Title(x, y, _("Preset:")));
581 preset_popup = new FFMPEGConfigAudioPopup(this, x, y);
582 preset_popup->create_objects();
585 bitrate = new FFMpegAudioBitrate(this, x, y, _("Bitrate:"), &asset->ff_audio_bitrate);
586 bitrate->create_objects();
587 bitrate->set_increment(1000);
588 bitrate->set_boundaries((int64_t)0, (int64_t)INT_MAX);
589 y += bitrate->get_h() + 5;
590 quality = new FFMpegAudioQuality(this, x, y, _("Quality:"), &asset->ff_audio_quality);
591 quality->create_objects();
592 quality->set_increment(1);
593 quality->set_boundaries((int64_t)-1, (int64_t)51);
594 y += quality->get_h() + yS(10);
596 add_subwindow(new BC_Title(x, y, _("Samples:")));
597 sample_format = new FFMpegSampleFormat(this, x+xS(90), y, xS(100), yS(120));
598 sample_format->create_objects();
599 if( asset->acodec[0] ) {
600 sample_format->update_formats();
601 if( !asset->ff_audio_options[0] )
604 if( !asset->ff_sample_format[0] ) strcpy(asset->ff_sample_format, _("None"));
605 sample_format->update(asset->ff_sample_format);
606 y += sample_format->get_h() + yS(10);
608 BC_Title *title = new BC_Title(x, y, _("Audio Options:"));
609 add_subwindow(title);
611 ff_options_dialog = new FFOptionsAudioDialog(this);
612 int x1 = x + title->get_w() + xS(8);
613 add_subwindow(view_audio = new FFOptionsViewAudio(this, x1, y, _("view")));
614 x1 += x + view_audio->get_w() + xS(20);
615 view_format = new FFOptionsViewFormat(this, edl, asset, x1, y, _("format"));
616 add_subwindow(view_format);
619 audio_options = new FFAudioOptions(this, x, y, get_w()-x-xS(20), 8,
620 sizeof(asset->ff_audio_options)-1, asset->ff_audio_options);
621 audio_options->create_objects();
622 add_subwindow(new BC_OKButton(this));
623 add_subwindow(new BC_CancelButton(this));
626 bitrate->update_param("cin_bitrate", asset->ff_audio_options);
627 quality->update_param("cin_quality", asset->ff_audio_options);
629 if( asset->ff_audio_bitrate > 0 ) quality->disable();
630 else if( asset->ff_audio_quality >= 0 ) bitrate->disable();
635 int FFMPEGConfigAudio::close_event()
641 FFAudioOptions::FFAudioOptions(FFMPEGConfigAudio *audio_popup,
642 int x, int y, int w, int rows, int size, char *text)
643 : BC_ScrollTextBox(audio_popup, x, y, w, rows, text, size)
645 this->audio_popup = audio_popup;
649 FFMPEGConfigAudioPopup::FFMPEGConfigAudioPopup(FFMPEGConfigAudio *popup, int x, int y)
650 : BC_PopupTextBox(popup, &popup->presets, popup->asset->acodec, x, y, xS(300), yS(300))
655 int FFMPEGConfigAudioPopup::handle_event()
657 strcpy(popup->asset->acodec, get_text());
658 popup->sample_format->update_formats();
659 Asset *asset = popup->asset;
660 asset->ff_audio_bitrate = 0; asset->ff_audio_quality = -1;
661 popup->load_options();
662 popup->audio_options->update(asset->ff_audio_options);
663 popup->audio_options->set_text_row(0);
665 popup->bitrate->update_param("cin_bitrate", asset->ff_audio_options);
666 popup->quality->update_param("cin_quality", asset->ff_audio_options);
667 popup->sample_format->update(asset->ff_sample_format);
673 FFMPEGConfigVideo::FFMPEGConfigVideo(BC_WindowBase *parent_window,
674 int x, int y, Asset *asset, EDL *edl)
675 : FFMPEGConfigWindow(_(PROGRAM_NAME ": Video Preset"), parent_window, x, y,
676 xS(420), yS(420), asset, edl)
680 format_name = asset->fformat;
681 codec_name = asset->vcodec;
686 // *** CONTEXT_HELP ***
687 context_help_set_keyword("Options for Render with FFmpeg");
690 FFMPEGConfigVideo::~FFMPEGConfigVideo()
692 lock_window("FFMPEGConfigVideo::~FFMPEGConfigVideo");
695 delete video_options;
696 presets.remove_all_objects();
700 void FFMPEGConfigVideo::read_options()
702 const char *options = video_options->get_text();
703 int options_len = strlen(options);
704 ff_options_dialog->load_options(options, options_len);
706 void FFMPEGConfigVideo::save_options()
708 char options[BCTEXTLEN];
709 ff_options_dialog->store_options(options, sizeof(options)-1);
710 video_options->update(options);
713 void FFMPEGConfigVideo::load_options()
715 FFMPEG::load_video_options(asset, edl);
718 void FFMPEGConfigVideo::create_objects()
720 int x = xS(10), y = yS(10);
721 lock_window("FFMPEGConfigVideo::create_objects");
723 add_subwindow(new BC_Title(x, y, _("Compression:")));
727 char option_path[BCTEXTLEN];
728 FFMPEG::set_option_path(option_path, "video");
729 fs.update(option_path);
730 int total_files = fs.total_files();
731 for(int i = 0; i < total_files; i++) {
732 const char *name = fs.get_entry(i)->get_name();
733 if( asset->fformat[0] != 0 ) {
734 const char *ext = strrchr(name,'.');
736 if( strcmp(asset->fformat, ++ext) ) continue;
738 presets.append(new BC_ListBoxItem(name));
741 if( asset->vcodec[0] ) {
742 int k = presets.size();
743 while( --k >= 0 && strcmp(asset->vcodec, presets[k]->get_text()) );
744 if( k < 0 ) asset->vcodec[0] = 0;
747 if( !asset->vcodec[0] && presets.size() > 0 )
748 strcpy(asset->vcodec, presets[0]->get_text());
750 preset_popup = new FFMPEGConfigVideoPopup(this, x, y);
751 preset_popup->create_objects();
753 if( asset->ff_video_bitrate > 0 && asset->ff_video_quality >= 0 ) {
754 asset->ff_video_bitrate = 0; asset->ff_video_quality = -1;
758 bitrate = new FFMpegVideoBitrate(this, x, y, _("Bitrate:"), &asset->ff_video_bitrate);
759 bitrate->create_objects();
760 bitrate->set_increment(100000);
761 bitrate->set_boundaries((int64_t)0, (int64_t)INT_MAX);
762 y += bitrate->get_h() + 5;
763 quality = new FFMpegVideoQuality(this, x, y, _("Quality:"), &asset->ff_video_quality);
764 quality->create_objects();
765 quality->set_increment(1);
766 quality->set_boundaries((int64_t)-1, (int64_t)51);
767 y += quality->get_h() + yS(10);
769 add_subwindow(new BC_Title(x, y, _("Pixels:")));
770 pixel_format = new FFMpegPixelFormat(this, x+xS(90), y, xS(100), yS(120));
771 pixel_format->create_objects();
772 if( asset->vcodec[0] ) {
773 pixel_format->update_formats();
774 if( !asset->ff_video_options[0] )
777 if( !asset->ff_pixel_format[0] ) strcpy(asset->ff_pixel_format, _("None"));
778 pixel_format->update(asset->ff_pixel_format);
779 y += pixel_format->get_h() + yS(10);
781 BC_Title *title = new BC_Title(x, y, _("Video Options:"));
782 add_subwindow(title);
784 ff_options_dialog = new FFOptionsVideoDialog(this);
785 int x1 = x + title->get_w() + 8;
786 add_subwindow(view_video = new FFOptionsViewVideo(this, x1, y, _("view")));
787 x1 += x + view_video->get_w() + xS(20);
788 view_format = new FFOptionsViewFormat(this, edl, asset, x1, y, _("format"));
789 add_subwindow(view_format);
792 video_options = new FFVideoOptions(this, x, y, get_w()-x-xS(20), 8,
793 sizeof(asset->ff_video_options)-1, asset->ff_video_options);
794 video_options->create_objects();
795 add_subwindow(new BC_OKButton(this));
796 add_subwindow(new BC_CancelButton(this));
799 bitrate->update_param("cin_bitrate", asset->ff_video_options);
800 quality->update_param("cin_quality", asset->ff_video_options);
802 if( asset->ff_video_bitrate > 0 ) quality->disable();
803 else if( asset->ff_video_quality >= 0 ) bitrate->disable();
807 int FFMPEGConfigVideo::close_event()
813 FFVideoOptions::FFVideoOptions(FFMPEGConfigVideo *video_popup,
814 int x, int y, int w, int rows, int size, char *text)
815 : BC_ScrollTextBox(video_popup, x, y, w, rows, text, size)
817 this->video_popup = video_popup;
821 FFMPEGConfigVideoPopup::FFMPEGConfigVideoPopup(FFMPEGConfigVideo *popup, int x, int y)
822 : BC_PopupTextBox(popup, &popup->presets, popup->asset->vcodec, x, y, xS(300), yS(300))
827 int FFMPEGConfigVideoPopup::handle_event()
829 strcpy(popup->asset->vcodec, get_text());
830 popup->pixel_format->update_formats();
831 Asset *asset = popup->asset;
832 asset->ff_video_bitrate = 0; asset->ff_video_quality = -1;
833 popup->load_options();
834 popup->video_options->update(asset->ff_video_options);
835 popup->video_options->set_text_row(0);
837 popup->bitrate->update_param("cin_bitrate", asset->ff_video_options);
838 popup->quality->update_param("cin_quality", asset->ff_video_options);
839 popup->pixel_format->update(asset->ff_pixel_format);
845 FFMPEGConfigFormat::FFMPEGConfigFormat(FFOptionsFormatViewDialog *view_dialog,
846 int x, int y, Asset *asset, EDL *edl)
847 : FFMPEGConfigWindow(_(PROGRAM_NAME ": Format Preset"),
848 view_dialog->view_format, x, y, xS(420), yS(300), asset, edl)
850 this->view_dialog = view_dialog;
852 format_name = asset->fformat;
854 // *** CONTEXT_HELP ***
855 context_help_set_keyword("Modifying FFmpeg Format Options");
858 FFMPEGConfigFormat::~FFMPEGConfigFormat()
860 lock_window("FFMPEGConfigFormat::~FFMPEGConfigFormat");
861 delete format_options;
865 void FFMPEGConfigFormat::read_options()
867 const char *options = format_options->get_text();
868 int options_len = strlen(options);
869 ff_options_dialog->load_options(options, options_len);
871 void FFMPEGConfigFormat::save_options()
873 char options[BCTEXTLEN];
874 ff_options_dialog->store_options(options, sizeof(options)-1);
875 format_options->update(options);
877 void FFMPEGConfigFormat::save_changes()
880 char *options = asset->ff_format_options;
881 int options_len = sizeof(asset->ff_format_options)-1;
882 ff_options_dialog->store_options(options, options_len);
885 void FFMPEGConfigFormat::load_options()
887 Asset *asset = view_dialog->view_format->asset;
888 EDL *edl = view_dialog->view_format->edl;
889 FFMPEG::load_format_options(asset, edl);
892 void FFMPEGConfigFormat::create_objects()
894 int x = xS(10), y = yS(10);
895 lock_window("FFMPEGConfigFormat::create_objects");
896 Asset *asset = view_dialog->view_format->asset;
898 add_subwindow(title = new BC_Title(x, y, _("Format:")));
899 int x1 = x + title->get_w() + 8;
900 add_subwindow(new BC_Title(x1, y, asset->fformat));
903 add_subwindow(title = new BC_Title(x, y, _("Format Options:")));
905 ff_options_dialog = new FFOptionsFormatDialog(this);
906 x1 = x + title->get_w() + 8;
907 add_subwindow(new FFOptionsFormatView(this, x1, y, _("view")));
910 format_options = new FFFormatOptions(this, x, y, get_w()-x-xS(20), 8,
911 sizeof(asset->ff_format_options)-1, asset->ff_format_options);
912 format_options->create_objects();
913 add_subwindow(new BC_OKButton(this));
914 add_subwindow(new BC_CancelButton(this));
919 int FFMPEGConfigFormat::close_event()
925 FFFormatOptions::FFFormatOptions(FFMPEGConfigFormat *format_popup,
926 int x, int y, int w, int rows, int size, char *text)
927 : BC_ScrollTextBox(format_popup, x, y, w, rows, text, size)
929 this->format_popup = format_popup;
934 FFMPEGScanProgress::FFMPEGScanProgress(IndexFile *index_file, MainProgressBar *progress_bar,
935 const char *title, int64_t length, int64_t *position, int *canceled)
938 this->index_file = index_file;
939 this->progress_bar = progress_bar;
940 strcpy(this->progress_title, title);
941 this->length = length;
942 this->position = position;
943 this->canceled = canceled;
948 FFMPEGScanProgress::~FFMPEGScanProgress()
955 void FFMPEGScanProgress::run()
958 if( progress_bar->update(*position) ) {
959 *canceled = done = 1;
962 index_file->redraw_edits(0);
967 int FileFFMPEG::get_index(IndexFile *index_file, MainProgressBar *progress_bar)
970 if( !file->preferences->ffmpeg_marker_indexes ) return 1;
972 IndexState *index_state = index_file->get_state();
973 if( index_state->index_status != INDEX_NOTTESTED ) return 0;
974 index_state->reset_index();
975 index_state->reset_markers();
976 index_state->index_status = INDEX_BUILDING;
978 for( int aidx=0; aidx<ff->ffaudio.size(); ++aidx ) {
979 FFAudioStream *aud = ff->ffaudio[aidx];
980 index_state->add_audio_stream(aud->channels, aud->length);
984 int64_t file_bytes = fs.get_size(ff->fmt_ctx->url);
985 char *index_path = index_file->index_filename;
988 int64_t scan_position = 0;
989 FFMPEGScanProgress *scan_progress = 0;
991 char progress_title[BCTEXTLEN];
992 sprintf(progress_title, _("Creating %s\n"), index_path);
993 progress_bar->update_title(progress_title, 1);
994 progress_bar->update_length(file_bytes);
995 scan_progress = new FFMPEGScanProgress(index_file,
996 progress_bar, progress_title, file_bytes,
997 &scan_position, &canceled);
1000 index_state->index_bytes = file_bytes;
1001 index_state->init_scan(file->preferences->index_size);
1003 if( ff->scan(index_state, &scan_position, &canceled) || canceled ) {
1004 index_state->reset_index();
1005 index_state->reset_markers();
1009 delete scan_progress;
1010 if( canceled ) return 1;
1012 index_state->marker_status = MARKERS_READY;
1013 return index_state->create_index(index_path, asset);
1017 FFOptions_OptPanel::
1018 FFOptions_OptPanel(FFOptionsWindow *fwin, int x, int y, int w, int h)
1019 : BC_ListBox(x, y, w, h, LISTBOX_TEXT), opts(items[0]), vals(items[1])
1022 update(); // init col/wid/columns
1025 FFOptions_OptPanel::
1026 ~FFOptions_OptPanel()
1030 void FFOptions_OptPanel::create_objects()
1032 const char *cols[] = { _("option"), _("value"), };
1033 const int col1_w = xS(150);
1034 int wids[] = { col1_w, get_w()-col1_w };
1035 BC_ListBox::update(&items[0], &cols[0], &wids[0], sizeof(items)/sizeof(items[0]));
1038 int FFOptions_OptPanel::update()
1042 FFOptions &options = fwin->options;
1043 for( int i=0; i<options.size(); ++i ) {
1044 FFOptions_Opt *opt = options[i];
1045 opts.append(opt->item_name);
1046 vals.append(opt->item_value);
1052 int FFOptions_OptPanel::cursor_leave_event()
1059 FFOptions_OptName::FFOptions_OptName(FFOptions_Opt *opt, const char *nm)
1065 FFOptions_OptName::~FFOptions_OptName()
1069 FFOptions_OptValue::FFOptions_OptValue(FFOptions_Opt *opt)
1075 void FFOptions_OptValue::update()
1078 char val[BCTEXTLEN]; val[0] = 0;
1079 opt->get(val, sizeof(val));
1083 void FFOptions_OptValue::update(const char *v)
1088 FFOptions_Opt::FFOptions_Opt(FFOptions *options, const AVOption *opt, const char *nm)
1090 this->options = options;
1092 item_name = new FFOptions_OptName(this, nm);
1093 item_value = new FFOptions_OptValue(this);
1096 FFOptions_Opt::~FFOptions_Opt()
1102 char *FFOptions_Opt::get(char *vp, int sz)
1106 if( !opt ) return cp;
1108 void *obj = (void *)options->obj;
1110 if( av_opt_get(obj, opt->name, 0, &bp) >= 0 && bp != 0 ) {
1111 const char *val = (const char *)bp;
1112 if( opt->unit && *val ) {
1114 const char *uid = unit_name(id);
1115 if( uid ) val = uid;
1117 cp = sz >= 0 ? strncpy(vp,val,sz) : strcpy(vp, val);
1118 if( sz > 0 ) vp[sz-1] = 0;
1125 void FFOptions_Opt::set(const char *val)
1127 void *obj = (void *)options->obj;
1128 if( !obj || !opt ) return;
1129 av_opt_set(obj, opt->name, val, 0);
1133 FFOptionsKindItem::FFOptionsKindItem(FFOptionsKind *kind, const char *text, int idx)
1140 FFOptionsKindItem::~FFOptionsKindItem()
1144 int FFOptionsKindItem::handle_event()
1146 FFOptionsWindow *fwin = kind->fwin;
1147 FFOptions &options = fwin->options;
1148 options.initialize(fwin, idx);
1149 kind->set_text(get_text());
1154 const char *FFOptionsKind::kinds[] = {
1155 N_("codec"), // FF_KIND_CODEC
1156 N_("format"), // FF_KIND_FORMAT
1157 N_("ffmpeg"), // FF_KIND_FFMPEG
1161 FFOptionsKind(FFOptionsWindow *fwin, int x, int y, int w)
1162 : BC_PopupMenu(x, y, w, "")
1172 void FFOptionsKind::create_objects()
1174 add_item(new FFOptionsKindItem(this, _(kinds[FF_KIND_CODEC]), FF_KIND_CODEC));
1175 add_item(new FFOptionsKindItem(this, _(kinds[FF_KIND_FFMPEG]), FF_KIND_FFMPEG));
1178 int FFOptionsKind::handle_event()
1183 void FFOptionsKind::set(int k)
1186 set_text(_(kinds[k]));
1190 FFOptionsText(FFOptionsWindow *fwin, int x, int y, int w)
1191 : BC_TextBox(x, y, w, 1, (char *)"")
1201 int FFOptionsText::handle_event()
1207 FFOptionsUnits(FFOptionsWindow *fwin, int x, int y, int w)
1208 : BC_PopupMenu(x, y, w, "")
1218 int FFOptionsUnits::handle_event()
1220 const char *text = get_text();
1221 if( text && fwin->selected ) {
1222 fwin->selected->set(text);
1223 fwin->selected->item_value->update();
1224 av_dict_set(&fwin->dialog->ff_opts,
1225 fwin->selected->item_name->get_text(),
1226 fwin->selected->item_value->get_text(), 0);
1233 FFOptionsApply(FFOptionsWindow *fwin, int x, int y)
1234 : BC_GenericButton(x, y, _("Apply"))
1244 int FFOptionsApply::handle_event()
1246 const char *text = fwin->text->get_text();
1247 if( text && fwin->selected ) {
1248 fwin->selected->set(text);
1249 fwin->selected->item_value->update();
1250 av_dict_set(&fwin->dialog->ff_opts,
1251 fwin->selected->item_name->get_text(),
1252 fwin->selected->item_value->get_text(), 0);
1258 FFOptions::FFOptions()
1263 FFOptions::~FFOptions()
1265 remove_all_objects();
1268 int FFOptions::cmpr(const void *a, const void *b)
1270 FFOptions_Opt *ap = *(FFOptions_Opt **)a;
1271 FFOptions_Opt *bp = *(FFOptions_Opt **)b;
1272 const char *vap = ap->item_name->get_text();
1273 const char *vbp = bp->item_name->get_text();
1274 return strcmp(vap, vbp);
1277 void FFOptions::initialize(FFOptionsWindow *win, int kind)
1279 remove_all_objects();
1281 const void *obj = 0;
1284 obj = (const void *)win->dialog->cfg_window->avctx->priv_data;
1286 case FF_KIND_FFMPEG:
1287 obj = (const void *)win->dialog->cfg_window->avctx;
1289 case FF_KIND_FORMAT:
1290 obj = (const void *)win->dialog->cfg_window->fmt_ctx->priv_data;
1296 FFOptions &conf = *this;
1297 const AVOption *opt = 0;
1298 while( (opt=av_opt_next(obj, opt)) != 0 ) {
1299 if( opt->type == AV_OPT_TYPE_CONST ) continue;
1301 for( int i=0; !dupl && i<size(); ++i ) {
1302 FFOptions_Opt *fopt = conf[i];
1303 const AVOption *op = fopt->opt;
1304 if( op->offset != opt->offset ) continue;
1305 if( op->type != opt->type ) continue;
1307 if( strlen(op->name) < strlen(opt->name) )
1310 if( dupl ) continue;
1311 FFOptions_Opt *fopt = new FFOptions_Opt(this, opt, opt->name);
1313 AVDictionaryEntry *elem = av_dict_get(win->dialog->ff_opts,
1314 opt->name, 0, AV_DICT_IGNORE_SUFFIX);
1315 if( elem && elem->value ) fopt->set(elem->value);
1316 char val[BCTEXTLEN], *vp = fopt->get(val, sizeof(val));
1317 fopt->item_value->update(vp);
1319 qsort(&values[0],size(),sizeof(values[0]),cmpr);
1321 win->panel->update();
1322 win->panel->set_yposition(0);
1325 int FFOptions::update()
1328 FFOptions &conf = *this;
1330 for( int i=0; i<size(); ++i ) {
1331 FFOptions_Opt *fopt = conf[i];
1332 char val[BCTEXTLEN], *vp = fopt->get(val, sizeof(val));
1333 if( !vp || !strcmp(val, fopt->item_value->get_text()) ) continue;
1334 fopt->item_value->update(val);
1340 void FFOptions::dump(FILE *fp)
1343 const AVOption *opt = 0;
1344 FFOptions &conf = *this;
1346 while( (opt=av_opt_next(obj, opt)) != 0 ) {
1347 if( opt->type == AV_OPT_TYPE_CONST ) continue;
1349 while( --k >= 0 && strcmp(opt->name, conf[k]->opt->name) );
1350 if( k < 0 ) continue;
1351 FFOptions_Opt *fopt = conf[k];
1352 char val[BCTEXTLEN], *vp = fopt->get(val,sizeof(val));
1353 fprintf(fp, " %s:=%s", opt->name, vp);
1355 char unt[BCTEXTLEN], *up = unt;
1357 fprintf(fp, "%s", unt);
1364 void FFOptionsWindow::update(FFOptions_Opt *opt)
1366 if( selected != opt ) {
1367 if( selected ) selected->item_name->set_selected(0);
1369 if( selected ) selected->item_name->set_selected(1);
1371 clear_box(0,0, 0,panel->get_y());
1372 char str[BCTEXTLEN], *sp;
1374 if( opt ) opt->types(sp);
1377 if( opt ) opt->ranges(sp);
1379 while( units->total_items() ) units->del_item(0);
1380 char unit[BCSTRLEN]; strcpy(unit, "()");
1381 if( opt && opt->opt ) {
1382 ArrayList<const char *> names;
1384 if( opt->opt->unit ) {
1385 n = opt->units(names);
1386 if( n > 0 ) strcpy(unit,opt->opt->unit);
1388 for( int i=0; i<n; ++i )
1389 units->add_item(new BC_MenuItem(names[i], 0));
1391 units->set_text(unit);
1392 char val[BCTEXTLEN]; val[0] = 0;
1393 if( opt ) opt->get(val, sizeof(val));
1399 void FFOptions_OptPanel::show_tip(const char *tip)
1402 int len = strlen(tip);
1403 if( len > (int)sizeof(tip_text)-1 ) len = sizeof(tip_text)-1;
1404 strncpy(tip_text,tip,len);
1406 int line_limit = 60;
1407 int limit2 = line_limit/2;
1408 int limit4 = line_limit/4-2;
1409 char *cp = tip_text, *dp = cp+len;
1410 int n; char *bp, *ep, *pp, *sp;
1412 for( ep=cp; ep<dp && *ep!='\n'; ++ep );
1413 // target about half remaining line, constrain line_limit
1414 if( (n=(ep-1-cp)/2) < limit2 || n > line_limit )
1416 // search for last punct, last space before line_limit
1417 for( bp=cp, pp=sp=0; --n>=0 && cp<ep; ++cp ) {
1418 if( ispunct(*cp) && isspace(*(cp+1)) ) pp = cp;
1419 else if( isspace(*cp) ) sp = cp;
1423 // first, after punctuation
1424 if( pp && pp-bp >= limit4 )
1430 // last, on next space
1432 while( cp<dp && !isspace(*cp) ) ++cp;
1439 fwin->panel->set_tooltip(tip_text);
1440 fwin->panel->show_tooltip();
1443 int FFOptions_OptPanel::selection_changed()
1445 FFOptions_Opt *opt = 0;
1446 BC_ListBoxItem *item = get_selection(0, 0);
1448 FFOptions_OptName *opt_name = (FFOptions_OptName *)item;
1449 opt = opt_name->opt;
1452 if( opt ) show_tip(opt->tip());
1457 int FFOptions_Opt::types(char *rp)
1459 const char *cp = "";
1460 if( opt ) switch (opt->type) {
1461 case AV_OPT_TYPE_FLAGS: cp = N_("<flags>"); break;
1462 case AV_OPT_TYPE_INT: cp = N_("<int>"); break;
1463 case AV_OPT_TYPE_INT64: cp = N_("<int64>"); break;
1464 case AV_OPT_TYPE_DOUBLE: cp = N_("<double>"); break;
1465 case AV_OPT_TYPE_FLOAT: cp = N_("<float>"); break;
1466 case AV_OPT_TYPE_STRING: cp = N_("<string>"); break;
1467 case AV_OPT_TYPE_RATIONAL: cp = N_("<rational>"); break;
1468 case AV_OPT_TYPE_BINARY: cp = N_("<binary>"); break;
1469 case AV_OPT_TYPE_IMAGE_SIZE: cp = N_("<image_size>"); break;
1470 case AV_OPT_TYPE_VIDEO_RATE: cp = N_("<video_rate>"); break;
1471 case AV_OPT_TYPE_PIXEL_FMT: cp = N_("<pix_fmt>"); break;
1472 case AV_OPT_TYPE_SAMPLE_FMT: cp = N_("<sample_fmt>"); break;
1473 case AV_OPT_TYPE_DURATION: cp = N_("<duration>"); break;
1474 case AV_OPT_TYPE_COLOR: cp = N_("<color>"); break;
1475 case AV_OPT_TYPE_CHANNEL_LAYOUT: cp = N_("<channel_layout>"); break;
1476 case AV_OPT_TYPE_BOOL: cp = N_("<bool>"); break;
1477 default: cp = N_("<undef>"); break;
1479 return sprintf(rp, "%s", _(cp));
1481 int FFOptions_Opt::scalar(double d, char *rp)
1484 if( d == INT_MAX ) cp = "INT_MAX";
1485 else if( d == INT_MIN ) cp = "INT_MIN";
1486 else if( d == UINT32_MAX ) cp = "UINT32_MAX";
1487 else if( d == (double)INT64_MAX ) cp = "I64_MAX";
1488 else if( d == INT64_MIN ) cp = "I64_MIN";
1489 else if( d == FLT_MAX ) cp = "FLT_MAX";
1490 else if( d == FLT_MIN ) cp = "FLT_MIN";
1491 else if( d == -FLT_MAX ) cp = "-FLT_MAX";
1492 else if( d == -FLT_MIN ) cp = "-FLT_MIN";
1493 else if( d == DBL_MAX ) cp = "DBL_MAX";
1494 else if( d == DBL_MIN ) cp = "DBL_MIN";
1495 else if( d == -DBL_MAX ) cp = "-DBL_MAX";
1496 else if( d == -DBL_MIN ) cp = "-DBL_MIN";
1497 else if( d == 0 ) cp = signbit(d) ? "-0" : "0";
1498 else if( isnan(d) ) cp = signbit(d) ? "-NAN" : "NAN";
1499 else if( isinf(d) ) cp = signbit(d) ? "-INF" : "INF";
1500 else return sprintf(rp, "%g", d);
1501 return sprintf(rp, "%s", cp);
1504 int FFOptions_Opt::ranges(char *rp)
1506 if( !opt ) return 0;
1507 void *obj = (void *)options->obj;
1508 if( !obj ) return 0;
1510 switch (opt->type) {
1511 case AV_OPT_TYPE_INT:
1512 case AV_OPT_TYPE_INT64:
1513 case AV_OPT_TYPE_DOUBLE:
1514 case AV_OPT_TYPE_FLOAT: break;
1517 AVOptionRanges *r = 0;
1519 if( av_opt_query_ranges(&r, obj, opt->name, AV_OPT_SEARCH_FAKE_OBJ) < 0 ) return 0;
1520 for( int i=0; i<r->nb_ranges; ++i ) {
1521 cp += sprintf(cp, " ("); cp += scalar(r->range[i]->value_min, cp);
1522 cp += sprintf(cp, ".."); cp += scalar(r->range[i]->value_max, cp);
1523 cp += sprintf(cp, ")");
1525 av_opt_freep_ranges(&r);
1529 int FFOptions_Opt::units(ArrayList<const char *> &names)
1531 if( !opt || !opt->unit ) return 0;
1532 const void *obj = options->obj;
1533 if( !obj ) return 0;
1535 ArrayList<const AVOption *> opts;
1536 const AVOption *opt = NULL;
1537 while( (opt=av_opt_next(obj, opt)) != 0 ) {
1538 if( !opt->unit ) continue;
1539 if( opt->type != AV_OPT_TYPE_CONST ) continue;
1540 if( strcmp(this->opt->unit, opt->unit) ) continue;
1541 int i = opts.size();
1543 if( opts[i]->default_val.i64 != opt->default_val.i64 ) continue;
1544 if( strlen(opts[i]->name) < strlen(opt->name) ) opts[i] = opt;
1547 if( i >= 0 ) continue;
1551 for( int i=0; i<opts.size(); ++i )
1552 names.append(opts[i]->name);
1554 return names.size();
1557 int FFOptions_Opt::units(char *rp)
1559 ArrayList<const char *> names;
1560 int n = units(names);
1563 cp += sprintf(cp, " [%s:", this->opt->unit);
1564 for( int i=0; i<n; ++i )
1565 cp += sprintf(cp, " %s", names[i]);
1566 cp += sprintf(cp, "]:");
1570 const char *FFOptions_Opt::unit_name(int id)
1572 if( !opt || !opt->unit ) return 0;
1573 const void *obj = options->obj;
1574 if( !obj ) return 0;
1576 const char *ret = 0;
1577 const AVOption *opt = NULL;
1578 while( (opt=av_opt_next(obj, opt)) != 0 ) {
1579 if( !opt->unit ) continue;
1580 if( opt->type != AV_OPT_TYPE_CONST ) continue;
1581 if( strcmp(this->opt->unit, opt->unit) ) continue;
1582 if( opt->default_val.i64 != id ) continue;
1583 if( !ret ) { ret = opt->name; continue; }
1584 if( strlen(ret) < strlen(opt->name) ) ret = opt->name;
1590 const char *FFOptions_Opt::tip()
1592 return !opt ? 0 : opt->help;
1596 FFOptionsWindow::FFOptionsWindow(FFOptionsDialog *dialog, int x, int y)
1597 : BC_Window(_(PROGRAM_NAME ": Options"), x, y, xS(640), yS(400))
1599 this->dialog = dialog;
1602 // *** CONTEXT_HELP ***
1603 context_help_set_keyword("Modifying FFmpeg Format Options");
1606 FFOptionsWindow::~FFOptionsWindow()
1610 void FFOptionsWindow::create_objects()
1612 int xs8 = xS(8), xs10 = xS(10);
1614 lock_window("FFOptionsWindow::create_objects");
1616 const char *format_name = dialog->cfg_window->format_name;
1617 const char *codec_name = dialog->cfg_window->codec_name;
1618 int x0 = xs10, y0 = ys10;
1620 add_subwindow(title = new BC_Title(x, y, _("Format: ")));
1621 x += title->get_w();
1622 add_subwindow(new BC_Title(x, y, format_name));
1625 add_subwindow(title = new BC_Title(x, y, _("Codec: ")));
1626 x += title->get_w();
1627 add_subwindow(new BC_Title(x, y, codec_name));
1629 x = x0; y += title->get_h() + ys10; y0 = y;
1630 add_subwindow(title = new BC_Title(x, y, _("Type: ")));
1631 x += title->get_w() + xs8;
1632 add_subwindow(type = new BC_Title(x, y, (char *)""));
1634 add_subwindow(title = new BC_Title(x, y, _("Range: ")));
1635 x += title->get_w() + xs8;
1636 add_subwindow(range = new BC_Title(x, y, (char *)""));
1638 x = x0; y += title->get_h() + ys10;
1639 add_subwindow(units = new FFOptionsUnits(this, x, y, xS(120)));
1640 x += units->get_w() + xs8;
1641 int x1 = get_w() - BC_GenericButton::calculate_w(this, _("Apply")) - xs8;
1642 add_subwindow(text = new FFOptionsText(this, x, y, x1-x - xs8));
1643 add_subwindow(apply = new FFOptionsApply(this, x1, y));
1644 y += units->get_h() + ys10;
1646 add_subwindow(kind = new FFOptionsKind(this, x1, y0, apply->get_w()));
1647 kind->create_objects();
1648 const char *kind_text = _("Kind:");
1649 x1 -= BC_Title::calculate_w(this, kind_text) + xs8;
1650 add_subwindow(kind_title = new BC_Title(x1, y0, kind_text));
1653 panel_x = x0; panel_y = y0;
1654 panel_w = get_w()-xs10 - panel_x;
1655 panel_h = get_h()-ys10 - panel_y - BC_OKButton::calculate_h();
1656 panel = new FFOptions_OptPanel(this, panel_x, panel_y, panel_w, panel_h);
1657 add_subwindow(panel);
1658 add_subwindow(new BC_OKButton(this));
1659 add_subwindow(new BC_CancelButton(this));
1660 panel->create_objects();
1661 int k = codec_name ? FF_KIND_CODEC : FF_KIND_FORMAT;
1662 options.initialize(this, k);
1670 void FFOptionsWindow::draw()
1675 int FFOptionsWindow::resize_event(int w, int h)
1677 int xs8 = xS(8), xs10 = xS(10);
1680 int x0 = w - xs8 - kind->get_w();
1681 int y0 = kind->get_y();
1682 kind->reposition_window(x0, y0);
1683 x0 -= kind_title->get_w() + xs8;
1684 kind_title->reposition_window(x0, y0);
1686 int x1 = get_w() - apply->get_w() - xs8;
1687 int y1 = units->get_y();
1688 apply->reposition_window(x1, y1);
1689 int x0 = units->get_x() + units->get_w() + xs8;
1690 int y0 = units->get_y();
1691 text->reposition_window(x0,y0, x1-x0-xs8);
1692 panel_w = get_w()-xs10 - panel_x;
1693 panel_h = get_h()-ys10 - panel_y - BC_OKButton::calculate_h();
1694 panel->reposition_window(panel_x,panel_y, panel_w, panel_h);
1698 FFOptionsDialog::FFOptionsDialog(FFMPEGConfigWindow *cfg_window)
1701 this->cfg_window = cfg_window;
1706 FFOptionsDialog::~FFOptionsDialog()
1709 av_dict_free(&ff_opts);
1712 void FFOptionsDialog::load_options(const char *bp, int len)
1714 av_dict_free(&ff_opts);
1715 char line[BCTEXTLEN];
1716 char key[BCSTRLEN], val[BCTEXTLEN];
1717 const char *dp = bp + len-1;
1719 while( bp < dp && *bp != 0 ) {
1721 char *cp = line, *ep = cp+sizeof(line)-1;
1722 while( *bp && cp<ep && (*cp=*bp++)!='\n' ) ++cp;
1724 if( line[0] == '#' ) {
1725 sprintf(key,"#%d", no);
1726 av_dict_set(&ff_opts, key, line, 0);
1729 if( line[0] == '\n' ) continue;
1730 if( FFMPEG::scan_option_line(line, key, val) ) continue;
1731 av_dict_set(&ff_opts, key, val, 0);
1735 void FFOptionsDialog::store_options(char *cp, int len)
1737 char *ep = cp + len-1;
1738 AVDictionaryEntry *elem = 0;
1739 while( (elem=av_dict_get(ff_opts, "", elem, AV_DICT_IGNORE_SUFFIX)) != 0 ) {
1740 if( elem->key[0] == '#' ) {
1741 cp += snprintf(cp,ep-cp, "%s\n", elem->value);
1744 cp += snprintf(cp,ep-cp, "%s=%s\n", elem->key, elem->value);
1750 void FFOptionsDialog::start()
1752 if( options_window ) {
1753 options_window->lock_window("FFOptionsDialog::start");
1754 options_window->raise_window();
1755 options_window->unlock_window();
1758 cfg_window->get_pop_cursor(wx, wy);
1759 cfg_window->read_options();
1760 BC_DialogThread::start();
1763 BC_Window* FFOptionsDialog::new_gui()
1765 options_window = new FFOptionsWindow(this, wx, wy);
1766 options_window->create_objects();
1767 return options_window;
1770 void FFOptionsDialog::handle_done_event(int result)
1773 cfg_window->lock_window("FFMPEGConfigFormat::save_options");
1774 cfg_window->save_options();
1775 cfg_window->unlock_window();
1780 FFOptionsAudioDialog::FFOptionsAudioDialog(FFMPEGConfigAudio *aud_config)
1781 : FFOptionsDialog(aud_config)
1783 this->aud_config = aud_config;
1786 FFOptionsAudioDialog::~FFOptionsAudioDialog()
1791 void FFOptionsAudioDialog::update_options(const char *options)
1793 aud_config->lock_window("FFOptionsAudioDialog::update_options");
1794 aud_config->audio_options->update(options);
1795 aud_config->unlock_window();
1798 FFOptionsVideoDialog::FFOptionsVideoDialog(FFMPEGConfigVideo *vid_config)
1799 : FFOptionsDialog(vid_config)
1801 this->vid_config = vid_config;
1804 FFOptionsVideoDialog::~FFOptionsVideoDialog()
1809 void FFOptionsVideoDialog::update_options(const char *options)
1811 vid_config->lock_window("FFOptionsVideoDialog::update_options");
1812 vid_config->video_options->update(options);
1813 vid_config->unlock_window();
1816 FFOptionsFormatDialog::FFOptionsFormatDialog(FFMPEGConfigFormat *fmt_config)
1817 : FFOptionsDialog(fmt_config)
1819 this->fmt_config = fmt_config;
1822 FFOptionsFormatDialog::~FFOptionsFormatDialog()
1827 void FFOptionsFormatDialog::update_options(const char *options)
1829 fmt_config->lock_window("FFOptionsFormatDialog::update_options");
1830 fmt_config->format_options->update(options);
1831 fmt_config->unlock_window();
1835 FFOptionsViewAudio::FFOptionsViewAudio(FFMPEGConfigAudio *aud_config,
1836 int x, int y, const char *text)
1837 : BC_GenericButton(x, y, text)
1839 this->aud_config = aud_config;
1843 FFOptionsViewAudio::~FFOptionsViewAudio()
1845 avcodec_free_context(&avctx);
1848 int FFOptionsViewAudio::handle_event()
1851 Asset *asset = aud_config->asset;
1852 const char *name = asset->acodec;
1853 char audio_format[BCSTRLEN]; audio_format[0] = 0;
1854 char audio_codec[BCSTRLEN]; audio_codec[0] = 0;
1855 const AVCodec *codec = !ret &&
1856 !FFMPEG::get_format(audio_format, "audio", name) &&
1857 !FFMPEG::get_codec(audio_codec, "audio", name) ?
1858 avcodec_find_encoder_by_name(audio_codec) : 0;
1859 if( !ret && !codec ) {
1860 eprintf(_("no codec named: %s: %s"), name, audio_codec);
1863 avcodec_free_context(&avctx);
1864 if( !ret && !(avctx = avcodec_alloc_context3(codec)) ) {
1865 eprintf(_("no codec context: %s: %s"), name, audio_codec);
1869 aud_config->start(avctx);
1873 FFOptionsViewVideo::FFOptionsViewVideo(FFMPEGConfigVideo *vid_config,
1874 int x, int y, const char *text)
1875 : BC_GenericButton(x, y, text)
1877 this->vid_config = vid_config;
1881 FFOptionsViewVideo::~FFOptionsViewVideo()
1883 avcodec_free_context(&avctx);
1886 int FFOptionsViewVideo::handle_event()
1889 Asset *asset = vid_config->asset;
1890 const char *name = asset->vcodec;
1891 char video_format[BCSTRLEN]; video_format[0] = 0;
1892 char video_codec[BCSTRLEN]; video_codec[0] = 0;
1893 const AVCodec *codec = !ret &&
1894 !FFMPEG::get_format(video_format, "video", name) &&
1895 !FFMPEG::get_codec(video_codec, "video", name) ?
1896 avcodec_find_encoder_by_name(video_codec) : 0;
1897 if( !ret && !codec ) {
1898 eprintf(_("no codec named: %s: %s"), name, video_codec);
1901 avcodec_free_context(&avctx);
1902 if( !ret && !(avctx = avcodec_alloc_context3(codec)) ) {
1903 eprintf(_("no codec context: %s: %s"), name, video_codec);
1908 vid_config->start(avctx);
1912 FFOptionsViewFormat::FFOptionsViewFormat(FFMPEGConfigWindow *cfg_window,
1913 EDL *edl, Asset *asset, int x, int y, const char *text)
1914 : BC_GenericButton(x, y, text)
1916 this->cfg_window = cfg_window;
1918 this->asset = asset;
1922 FFOptionsViewFormat::~FFOptionsViewFormat()
1924 delete format_dialog;
1927 int FFOptionsViewFormat::handle_event()
1929 delete format_dialog;
1931 get_pop_cursor(wx, wy);
1932 format_dialog = new FFOptionsFormatViewDialog(this, wx, wy);
1933 format_dialog->start();
1938 FFOptionsFormatView::FFOptionsFormatView(FFMPEGConfigFormat *fmt_config,
1939 int x, int y, const char *text)
1940 : BC_GenericButton(x, y, text)
1942 this->fmt_config = fmt_config;
1946 FFOptionsFormatView::~FFOptionsFormatView()
1948 avformat_free_context(fmt_ctx);
1951 int FFOptionsFormatView::handle_event()
1953 Asset *asset = fmt_config->asset;
1954 char *format_name = asset->fformat;
1955 char replace_name0[] = "mov";
1956 char replace_name1[] = "mpegts";
1957 char replace_name2[] = "matroska";
1958 if (!strcmp(format_name, "qt"))
1959 format_name = replace_name0; // fixup
1960 if (!strcmp(format_name, "m2ts"))
1961 format_name = replace_name1; // fixup
1962 if (!strcmp(format_name, "mkv"))
1963 format_name = replace_name2; // fixup
1964 avformat_free_context(fmt_ctx); fmt_ctx = 0;
1965 int ret = avformat_alloc_output_context2(&fmt_ctx, 0, format_name, 0);
1966 if( ret || !fmt_ctx ) {
1967 eprintf(_("no format named: %s"), format_name);
1971 fmt_config->start(fmt_ctx);
1975 FFOptionsFormatViewDialog::FFOptionsFormatViewDialog(FFOptionsViewFormat *view_format,
1978 this->view_format = view_format;
1984 FFOptionsFormatViewDialog::~FFOptionsFormatViewDialog()
1989 BC_Window *FFOptionsFormatViewDialog::new_gui()
1991 cfg_window = new FFMPEGConfigFormat(this, wx, wy,
1992 view_format->asset, view_format->edl);
1993 cfg_window->create_objects();
1994 cfg_window->read_options();
1998 void FFOptionsFormatViewDialog::handle_done_event(int result)
2001 cfg_window->save_changes();