8 #include "bcwindowbase.h"
13 #include "pluginfclient.h"
14 #include "pluginserver.h"
20 #define av_filter_iterate(p) ((*(const AVFilter**)(p))=avfilter_next(*(const AVFilter **)(p)))
23 static void ff_err(int ret, const char *fmt, ...)
28 vsnprintf(msg, sizeof(msg), fmt, ap);
30 char errmsg[BCSTRLEN];
31 av_strerror(ret, errmsg, sizeof(errmsg));
32 fprintf(stderr,_("%s err: %s\n"),msg, errmsg);
35 PluginFClientConfig::PluginFClientConfig()
40 PluginFClientConfig::~PluginFClientConfig()
46 int PluginFClientConfig::equivalent(PluginFClientConfig &that)
48 PluginFClientConfig &conf = *this;
49 for( int i=0; i<that.size(); ++i ) {
50 PluginFClient_Opt *topt = conf[i], *vopt = that[i];
51 char tval[BCTEXTLEN], *tp = topt->get(tval, sizeof(tval));
52 char vval[BCTEXTLEN], *vp = vopt->get(vval, sizeof(vval));
53 int ret = tp && vp ? strcmp(tp, vp) : tp || vp ? 1 : 0;
59 void PluginFClientConfig::copy_from(PluginFClientConfig &that)
61 PluginFClientConfig &conf = *this;
62 for( int i=0; i<that.size(); ++i ) {
63 PluginFClient_Opt *vp = that[i];
64 const char *nm = vp->opt->name;
66 while( --k >= 0 && strcmp(nm, conf[k]->opt->name) );
68 PluginFClient_Opt *fopt = conf[k];
69 char str[BCTEXTLEN], *sp = vp->get(str, sizeof(str));
70 if( sp ) fopt->set(sp);
74 void PluginFClientConfig::interpolate(PluginFClientConfig &prev, PluginFClientConfig &next,
75 int64_t prev_frame, int64_t next_frame, int64_t current_frame)
80 void PluginFClientConfig::initialize(const char *name)
83 ffilt = PluginFFilter::new_ffilter(name);
84 const AVOption *opt = 0;
85 void *obj = ffilt->filter_config();
87 const AVClass *filt_class = ffilt->filter_class();
88 if( filt_class && filt_class->option ) {
89 PluginFClientConfig &conf = *this;
90 while( (opt=av_opt_next(obj, opt)) != 0 ) {
91 if( opt->type == AV_OPT_TYPE_CONST ) continue;
93 for( int i=0; !dupl && i<size(); ++i ) {
94 PluginFClient_Opt *fp = conf[i];
95 const AVOption *op = fp->opt;
96 if( op->offset != opt->offset ) continue;
97 if( op->type != opt->type ) continue;
99 if( strlen(op->name) < strlen(opt->name) )
103 PluginFClient_Opt *fopt = new PluginFClient_Opt(this, opt);
107 if( (ffilt->filter->flags & AVFILTER_FLAG_SLICE_THREADS) != 0 ) {
108 opt = av_opt_find(ffilt->fctx, "threads", NULL, 0, 0);
110 PluginFClient_Opt *fopt = new PluginFClient_Opt(this, opt);
116 int PluginFClientConfig::update()
119 PluginFClientConfig &conf = *this;
121 for( int i=0; i<size(); ++i ) {
122 PluginFClient_Opt *fopt = conf[i];
123 char val[BCTEXTLEN], *vp = fopt->get(val, sizeof(val));
124 if( !vp || !strcmp(val, fopt->item_value->get_text()) ) continue;
125 fopt->item_value->update();
131 void PluginFClientConfig::dump(FILE *fp)
133 const AVOption *opt = 0;
134 const AVClass *obj = filter_class();
135 PluginFClientConfig &conf = *this;
137 while( (opt=av_opt_next(&obj, opt)) != 0 ) {
138 if( opt->type == AV_OPT_TYPE_CONST ) continue;
140 while( --k >= 0 && strcmp(opt->name, conf[k]->opt->name) );
141 if( k < 0 ) continue;
142 PluginFClient_Opt *fopt = conf[k];
143 char val[BCTEXTLEN], *vp = fopt->get(val,sizeof(val));
144 fprintf(fp, " %s:=%s", opt->name, vp);
146 char unt[BCTEXTLEN], *up = unt;
148 fprintf(fp, "%s", unt);
155 PluginFClientReset(PluginFClientWindow *fwin, int x, int y)
156 : BC_GenericButton(x, y, _("Reset"))
162 ~PluginFClientReset()
166 int PluginFClientReset::handle_event()
168 fwin->ffmpeg->config.initialize(fwin->ffmpeg->name);
169 if( fwin->ffmpeg->config.update() > 0 )
171 fwin->ffmpeg->plugin->send_configure_change();
176 PluginFClientText(PluginFClientWindow *fwin, int x, int y, int w)
177 : BC_TextBox(x, y, w, 1, (char *)"")
187 int PluginFClientText::handle_event()
193 PluginFClientUnits(PluginFClientWindow *fwin, int x, int y, int w)
194 : BC_PopupMenu(x, y, w, "")
200 ~PluginFClientUnits()
204 int PluginFClientUnits::handle_event()
206 const char *text = get_text();
207 if( text && fwin->selected ) {
208 if( text ) fwin->selected->set(text);
209 fwin->selected->item_value->update();
211 fwin->ffmpeg->plugin->send_configure_change();
217 PluginFClientApply(PluginFClientWindow *fwin, int x, int y)
218 : BC_GenericButton(x, y, _("Apply"))
224 ~PluginFClientApply()
228 int PluginFClientApply::handle_event()
230 return fwin->update();
233 PluginFClientPot::PluginFClientPot(PluginFClientWindow *fwin, int x, int y)
234 : BC_FPot(x, y, 0.f, 0.f, 0.f)
239 int PluginFClient_Opt::get_range(float &fmn, float &fmx)
241 switch( opt->type ) {
242 case AV_OPT_TYPE_INT:
243 case AV_OPT_TYPE_INT64:
244 case AV_OPT_TYPE_DOUBLE:
245 case AV_OPT_TYPE_FLOAT: break;
248 const AVClass *filt_class = filter_class();
249 if( !filt_class || !filt_class->option ) return 1;
250 AVOptionRanges *r = 0;
251 void *obj = &filt_class;
252 if( av_opt_query_ranges(&r, obj, opt->name, AV_OPT_SEARCH_FAKE_OBJ) < 0 ) return 1;
254 if( r->nb_ranges == 1 ) {
255 fmn = r->range[0]->value_min;
256 fmx = r->range[0]->value_max;
259 av_opt_freep_ranges(&r);
263 float PluginFClient_Opt::get_float()
265 char val[BCTEXTLEN]; val[0] = 0;
266 get(val, sizeof(val));
270 void PluginFClient_Opt::set_float(float v)
272 char val[BCTEXTLEN]; val[0] = 0;
273 sprintf(val, "%f", v);
277 int PluginFClientPot::handle_event()
279 if( fwin->selected ) {
280 fwin->selected->set_float(get_value());
281 fwin->update_selected();
282 return fwin->update();
287 PluginFClientSlider::PluginFClientSlider(PluginFClientWindow *fwin, int x, int y)
288 : BC_FSlider(x, y, 0, fwin->get_w()-x-20, fwin->get_w()-x-20, 0.f, 0.f, 0.f)
293 int PluginFClientSlider::handle_event()
295 if( fwin->selected ) {
296 fwin->selected->set_float(get_value());
297 fwin->update_selected();
298 return fwin->update();
304 PluginFClient_OptPanel::
305 PluginFClient_OptPanel(PluginFClientWindow *fwin, int x, int y, int w, int h)
306 : BC_ListBox(x, y, w, h, LISTBOX_TEXT), opts(items[0]), vals(items[1])
309 update(); // init col/wid/columns
312 PluginFClient_OptPanel::
313 ~PluginFClient_OptPanel()
317 void PluginFClient_OptPanel::create_objects()
319 PluginFClientConfig &fconfig = fwin->ffmpeg->config;
320 for( int i=0; i<fconfig.size(); ++i ) {
321 PluginFClient_Opt *opt = fconfig[i];
322 opts.append(opt->item_name);
323 vals.append(opt->item_value);
327 int PluginFClient_OptPanel::cursor_leave_event()
333 void PluginFClientWindow::update(PluginFClient_Opt *opt)
335 if( selected != opt ) {
336 if( selected ) selected->item_name->set_selected(0);
338 if( selected ) selected->item_name->set_selected(1);
340 clear_box(0,0, 0,panel->get_y());
341 char str[BCTEXTLEN], *sp;
343 if( opt ) opt->types(sp);
346 if( opt ) opt->ranges(sp);
348 while( units->total_items() ) units->del_item(0);
349 ArrayList<const AVOption *> opts;
350 int n = !opt ? 0 : opt->units(opts);
351 for( int i=0; i<n; ++i )
352 units->add_item(new BC_MenuItem(opts[i]->name, 0));
353 char unit[BCSTRLEN]; strcpy(unit, "()");
354 if( units->total_items() && opt && opt->opt->unit )
355 strcpy(unit, opt->opt->unit);
356 units->set_text(unit);
357 char val[BCTEXTLEN]; val[0] = 0;
358 if( opt ) opt->get(val, sizeof(val));
361 float v = 0, fmn = 0, fmx = 0;
362 if( opt && !opt->get_range(fmn, fmx) ) v = atof(val);
363 float p = (fmx-fmn) / slider->get_w();
364 slider->set_precision(p);
365 slider->update(slider->get_w(), v, fmn, fmx);
366 pot->set_precision(p);
367 pot->update(v, fmn, fmx);
371 int PluginFClientWindow::update()
373 const char *txt = text->get_text();
374 if( txt && selected ) {
376 selected->item_value->update();
378 ffmpeg->plugin->send_configure_change();
383 void PluginFClientWindow::update_selected()
388 int PluginFClient_OptPanel::selection_changed()
390 PluginFClient_Opt *opt = 0;
391 BC_ListBoxItem *item = get_selection(0, 0);
393 PluginFClient_OptName *opt_name = (PluginFClient_OptName *)item;
397 fwin->panel->set_tooltip(!opt ? 0 : opt->tip());
398 fwin->panel->show_tooltip();
402 void *PluginFClient_Opt::filter_config()
404 return conf->filter_config();
406 const AVClass *PluginFClient_Opt::filter_class()
408 return conf->filter_class();
411 int PluginFClient_Opt::types(char *rp)
415 case AV_OPT_TYPE_FLAGS: cp = "<flags>"; break;
416 case AV_OPT_TYPE_INT: cp = "<int>"; break;
417 case AV_OPT_TYPE_INT64: cp = "<int64>"; break;
418 case AV_OPT_TYPE_DOUBLE: cp = "<double>"; break;
419 case AV_OPT_TYPE_FLOAT: cp = "<float>"; break;
420 case AV_OPT_TYPE_STRING: cp = "<string>"; break;
421 case AV_OPT_TYPE_RATIONAL: cp = "<rational>"; break;
422 case AV_OPT_TYPE_BINARY: cp = "<binary>"; break;
423 case AV_OPT_TYPE_IMAGE_SIZE: cp = "<image_size>"; break;
424 case AV_OPT_TYPE_VIDEO_RATE: cp = "<video_rate>"; break;
425 case AV_OPT_TYPE_PIXEL_FMT: cp = "<pix_fmt>"; break;
426 case AV_OPT_TYPE_SAMPLE_FMT: cp = "<sample_fmt>"; break;
427 case AV_OPT_TYPE_DURATION: cp = "<duration>"; break;
428 case AV_OPT_TYPE_COLOR: cp = "<color>"; break;
429 case AV_OPT_TYPE_CHANNEL_LAYOUT: cp = "<channel_layout>"; break;
430 default: cp = "<undef>"; break;
432 return sprintf(rp, "%s", cp);
434 int PluginFClient_Opt::scalar(double d, char *rp)
437 if( d == INT_MAX ) cp = "INT_MAX";
438 else if( d == INT_MIN ) cp = "INT_MIN";
439 else if( d == UINT32_MAX ) cp = "UINT32_MAX";
440 else if( d == (double)INT64_MAX ) cp = "I64_MAX";
441 else if( d == INT64_MIN ) cp = "I64_MIN";
442 else if( d == FLT_MAX ) cp = "FLT_MAX";
443 else if( d == FLT_MIN ) cp = "FLT_MIN";
444 else if( d == -FLT_MAX ) cp = "-FLT_MAX";
445 else if( d == -FLT_MIN ) cp = "-FLT_MIN";
446 else if( d == DBL_MAX ) cp = "DBL_MAX";
447 else if( d == DBL_MIN ) cp = "DBL_MIN";
448 else if( d == -DBL_MAX ) cp = "-DBL_MAX";
449 else if( d == -DBL_MIN ) cp = "-DBL_MIN";
450 else if( d == 0 ) cp = signbit(d) ? "-0" : "0";
451 else if( isnan(d) ) cp = signbit(d) ? "-NAN" : "NAN";
452 else if( isinf(d) ) cp = signbit(d) ? "-INF" : "INF";
453 else return sprintf(rp, "%g", d);
454 return sprintf(rp, "%s", cp);
457 int PluginFClient_Opt::ranges(char *rp)
459 const AVClass *filt_class = filter_class();
460 if( !filt_class || !filt_class->option ) return 0;
462 case AV_OPT_TYPE_INT:
463 case AV_OPT_TYPE_INT64:
464 case AV_OPT_TYPE_DOUBLE:
465 case AV_OPT_TYPE_FLOAT: break;
468 AVOptionRanges *r = 0;
469 void *obj = &filt_class;
471 if( av_opt_query_ranges(&r, obj, opt->name, AV_OPT_SEARCH_FAKE_OBJ) < 0 ) return 0;
472 for( int i=0; i<r->nb_ranges; ++i ) {
473 cp += sprintf(cp, " ("); cp += scalar(r->range[i]->value_min, cp);
474 cp += sprintf(cp, ".."); cp += scalar(r->range[i]->value_max, cp);
475 cp += sprintf(cp, ")");
477 av_opt_freep_ranges(&r);
481 int PluginFClient_Opt::units(ArrayList<const AVOption *> &opts)
483 if( !this->opt->unit ) return 0;
484 const AVClass *filt_class = filter_class();
485 if( !filt_class || !filt_class->option ) return 0;
486 void *obj = &filt_class;
487 const AVOption *opt = NULL;
488 while( (opt=av_opt_next(obj, opt)) != 0 ) {
489 if( !opt->unit ) continue;
490 if( opt->type != AV_OPT_TYPE_CONST ) continue;
491 if( strcmp(this->opt->unit, opt->unit) ) continue;
494 if( opts[i]->default_val.i64 != opt->default_val.i64 ) continue;
495 if( strlen(opts[i]->name) < strlen(opt->name) ) opts[i] = opt;
504 int PluginFClient_Opt::units(char *rp)
506 ArrayList<const AVOption *> opts;
510 cp += sprintf(cp, " [%s:", this->opt->unit);
511 for( int i=0; i<n; ++i )
512 cp += sprintf(cp, " %s", opts[i]->name);
513 cp += sprintf(cp, "]:");
517 const char *PluginFClient_Opt::tip()
522 int PluginFClient_OptPanel::update()
524 const char *cols[] = { "option", "value", };
525 const int col1_w = 150;
526 int wids[] = { col1_w, get_w()-col1_w };
527 BC_ListBox::update(&items[0], &cols[0], &wids[0], sizeof(items)/sizeof(items[0]),
528 get_xposition(), get_yposition(), get_highlighted_item());
533 PluginFClientWindow::PluginFClientWindow(PluginFClient *ffmpeg)
534 : PluginClientWindow(ffmpeg->plugin, 600, 300, 600, 300, 1)
536 this->ffmpeg = ffmpeg;
540 PluginFClientWindow::~PluginFClientWindow()
544 void PluginFClientWindow::create_objects()
546 char string[BCTEXTLEN];
549 const char *descr = ffmpeg->config.ffilt->description();
550 if( !descr ) descr = ffmpeg->config.ffilt->filter_name();
551 add_subwindow(title = new BC_Title(x, y, descr));
552 y += title->get_h() + 10;
554 sprintf(string, _("Type: "));
555 add_subwindow(title = new BC_Title(x0, y, string));
556 x0 += title->get_w() + 8;
557 add_subwindow(type = new BC_Title(x0, y, (char *)""));
559 sprintf(string, _("Range: "));
560 add_subwindow(title = new BC_Title(x0, y, string));
561 x0 += title->get_w() + 8;
562 add_subwindow(range = new BC_Title(x0, y, (char *)""));
563 int x1 = get_w() - BC_GenericButton::calculate_w(this, _("Reset")) - 8;
564 add_subwindow(reset = new PluginFClientReset(this, x1, y));
565 y += title->get_h() + 10;
567 add_subwindow(units = new PluginFClientUnits(this, x0, y, 120));
568 x0 += units->get_w() + 8;
569 x1 = get_w() - BC_GenericButton::calculate_w(this, _("Apply")) - 8;
570 add_subwindow(apply = new PluginFClientApply(this, x1, y));
571 add_subwindow(text = new PluginFClientText(this, x0, y, x1-x0 - 8));
572 y += title->get_h() + 10;
573 add_subwindow(pot = new PluginFClientPot(this, x, y));
574 x1 = x + pot->get_w() + 10;
575 add_subwindow(slider = new PluginFClientSlider(this, x1, y+10));
576 y += pot->get_h() + 10;
578 panel_x = x; panel_y = y;
579 panel_w = get_w()-10 - panel_x;
580 panel_h = get_h()-10 - panel_y;
581 panel = new PluginFClient_OptPanel(this, panel_x, panel_y, panel_w, panel_h);
582 add_subwindow(panel);
583 panel->create_objects();
584 ffmpeg->config.update();
589 void PluginFClientWindow::draw()
594 int PluginFClientWindow::resize_event(int w, int h)
596 int x = get_w() - BC_GenericButton::calculate_w(this, _("Reset")) - 8;
597 int y = reset->get_y();
598 reset->reposition_window(x, y);
599 int x1 = get_w() - BC_GenericButton::calculate_w(this, _("Apply")) - 8;
600 int y1 = units->get_y();
601 apply->reposition_window(x1, y1);
602 int x0 = units->get_x() + units->get_w() + 8;
603 int y0 = units->get_y();
604 text->reposition_window(x0,y0, x1-x0-8);
605 x1 = pot->get_x() + pot->get_w() + 10;
606 int w1 = w - slider->get_x() - 20;
607 slider->set_pointer_motion_range(w1);
608 slider->reposition_window(x1, slider->get_y(), w1, slider->get_h());
609 panel_w = get_w()-10 - panel_x;
610 panel_h = get_h()-10 - panel_y;
611 panel->reposition_window(panel_x,panel_y, panel_w, panel_h);
616 PluginFClient::PluginFClient(PluginClient *plugin, const char *name)
618 this->plugin = plugin;
622 plugin_position = -1;
623 filter_position = -1;
625 sprintf(title, "F_%s", name);
626 config.initialize(name);
627 curr_config.initialize(name);
630 PluginFClient::~PluginFClient()
635 bool PluginFClient::is_audio(const AVFilter *fp)
637 if( !fp->outputs ) return 0;
638 if( avfilter_pad_count(fp->outputs) > 1 ) return 0;
639 if( !avfilter_pad_get_name(fp->outputs, 0) ) return 0;
640 if( avfilter_pad_get_type(fp->outputs, 0) != AVMEDIA_TYPE_AUDIO ) return 0;
641 if( !fp->inputs ) return 1;
642 if( avfilter_pad_count(fp->inputs) > 1 ) return 0;
643 if( !avfilter_pad_get_name(fp->inputs, 0) ) return 0;
644 if( avfilter_pad_get_type(fp->inputs, 0) != AVMEDIA_TYPE_AUDIO ) return 0;
647 bool PluginFClient::is_video(const AVFilter *fp)
649 if( !fp->outputs ) return 0;
650 if( avfilter_pad_count(fp->outputs) > 1 ) return 0;
651 if( !avfilter_pad_get_name(fp->outputs, 0) ) return 0;
652 if( avfilter_pad_get_type(fp->outputs, 0) != AVMEDIA_TYPE_VIDEO ) return 0;
653 if( !fp->inputs ) return 1;
654 if( avfilter_pad_count(fp->inputs) > 1 ) return 0;
655 if( !avfilter_pad_get_name(fp->inputs, 0) ) return 0;
656 if( avfilter_pad_get_type(fp->inputs, 0) != AVMEDIA_TYPE_VIDEO ) return 0;
660 NEW_WINDOW_MACRO(PluginFClient, PluginFClientWindow)
662 int PluginFClient::load_configuration()
664 int64_t src_position = get_source_position();
665 KeyFrame *prev_keyframe = get_prev_keyframe(src_position);
666 config.copy_from(curr_config);
667 read_data(prev_keyframe);
668 int ret = !config.equivalent(curr_config) ? 1 : 0;
673 void PluginFClient::render_gui(void *data, int size)
675 PluginFClientConfig *conf = (PluginFClientConfig *)data;
676 config.copy_from(*conf);
677 KeyFrame *keyframe = plugin->server->get_keyframe();
682 void PluginFClient::update_gui()
684 PluginClientThread *thread = plugin->get_thread();
685 if( !thread ) return;
686 PluginFClientWindow *window = (PluginFClientWindow*)thread->get_window();
687 window->lock_window("PluginFClient::update_gui");
688 load_configuration();
689 if( config.update() > 0 )
691 window->unlock_window();
694 const char *PluginFClient::plugin_title()
699 char *PluginFClient::to_upper(char *cp, const char *sp)
702 while( *sp != 0 ) *bp++ = toupper(*sp++);
707 void PluginFClient::save_data(KeyFrame *keyframe)
710 char string[BCTEXTLEN];
712 // cause data to be stored directly in text
713 output.set_shared_output(keyframe->xbuf);
714 output.tag.set_title(to_upper(string, plugin_title()));
715 const AVClass *filt_class = config.filter_class();
716 if( filt_class && filt_class->option ) {
717 void *obj = config.filter_config();
718 const AVOption *opt = NULL;
719 while( (opt=av_opt_next(obj, opt)) != 0 ) {
721 if( av_opt_get(obj, opt->name, 0, &buf) < 0 ) continue;
722 output.tag.set_property(opt->name, (const char *)buf);
726 if( (config.ffilt->filter->flags & AVFILTER_FLAG_SLICE_THREADS) != 0 ) {
728 if( av_opt_get(config.ffilt->fctx, "threads", 0, &buf) >= 0 && buf ) {
729 output.tag.set_property("threads", (const char *)buf);
735 output.terminate_string();
738 void PluginFClient::read_data(KeyFrame *keyframe)
741 char string[BCTEXTLEN];
742 input.set_shared_input(keyframe->xbuf);
744 while( !input.read_tag() ) {
745 to_upper(string, plugin_title());
746 if( !input.tag.title_is(string) ) continue;
747 const AVClass *filt_class = config.filter_class();
748 if( filt_class && filt_class->option ) {
749 void *obj = config.filter_config();
750 const AVOption *opt = NULL;
751 while( (opt=av_opt_next(obj, opt)) != 0 ) {
752 const char *v = input.tag.get_property(opt->name);
753 if( v ) av_opt_set(obj, opt->name, v, 0);
755 if( (config.ffilt->filter->flags & AVFILTER_FLAG_SLICE_THREADS) != 0 ) {
756 const char *v = input.tag.get_property("threads");
757 if( v ) av_opt_set(config.ffilt->fctx, "threads", v, 0);
763 int PluginFClient::activate()
766 avfilter_link(fsrc, 0, ffilt->fctx, 0);
767 avfilter_link(ffilt->fctx, 0, fsink, 0);
768 int ret = avfilter_graph_config(ffilt->graph, NULL);
770 curr_config.copy_from(config);
776 void PluginFClient::reactivate()
778 delete ffilt; ffilt = 0;
782 PluginFAClient::PluginFAClient(PluginServer *server, const char *name)
783 : PluginAClient(server), PluginFClient(this, name)
787 PluginFAClient::~PluginFAClient()
791 int PluginFAClient::activate()
793 if( activated ) return activated;
794 ffilt = PluginFFilter::new_ffilter(name, &config);
796 config.copy_from(curr_config);
797 send_configure_change();
798 send_render_gui(&config, sizeof(config));
799 ffilt = PluginFFilter::new_ffilter(name, &config);
801 AVSampleFormat sample_fmt = AV_SAMPLE_FMT_FLTP;
802 int channels = PluginClient::total_in_buffers;
803 uint64_t layout = (((uint64_t)1)<<channels) - 1;
804 AVFilterGraph *graph = !ffilt ? 0 : ffilt->graph;
805 int ret = !graph ? -1 : 0;
806 if( ret >= 0 && ffilt->filter->inputs ) {
807 char args[BCTEXTLEN];
808 snprintf(args, sizeof(args),
809 "time_base=%d/%d:sample_rate=%d:sample_fmt=%s:channel_layout=0x%jx",
810 1, sample_rate, sample_rate, av_get_sample_fmt_name(sample_fmt), layout);
811 ret = avfilter_graph_create_filter(&fsrc, avfilter_get_by_name("abuffer"),
812 "in", args, NULL, graph);
815 ret = avfilter_graph_create_filter(&fsink, avfilter_get_by_name("abuffersink"),
816 "out", NULL, NULL, graph);
818 ret = av_opt_set_bin(fsink, "sample_fmts",
819 (uint8_t*)&sample_fmt, sizeof(sample_fmt), AV_OPT_SEARCH_CHILDREN);
821 ret = av_opt_set_bin(fsink, "channel_layouts",
822 (uint8_t*)&layout, sizeof(layout), AV_OPT_SEARCH_CHILDREN);
824 ret = av_opt_set_bin(fsink, "sample_rates",
825 (uint8_t*)&sample_rate, sizeof(sample_rate), AV_OPT_SEARCH_CHILDREN);
827 ret = PluginFClient::activate();
828 if( ret < 0 && activated >= 0 ) {
829 ff_err(ret, "PluginFAClient::activate: %s failed\n", plugin_title());
836 static AVRational best_frame_rate(double frame_rate)
838 static const int m1 = 1001*12, m2 = 1000*12;
839 static const int freqs[] = {
840 40*m1, 48*m1, 50*m1, 60*m1, 80*m1,120*m1, 240*m1,
841 24*m2, 30*m2, 60*m2, 12*m2, 15*m2, 48*m2, 0,
844 int freq, best_freq = 0;
845 for( int i=0; (freq = i<30*12 ? (i+1)*1001 : freqs[i-30*12]); ++i ) {
846 double framerate = (double)freq / m1;
847 double err = fabs(frame_rate/framerate - 1.);
848 if( err >= max_err ) continue;
852 return max_err < 0.0001 ?
853 (AVRational) { best_freq, m1 } :
854 (AVRational) { 0, 0 };
857 int PluginFVClient::activate(int width, int height, int color_model)
859 if( activated ) return activated;
860 ffilt = PluginFFilter::new_ffilter(name, &config);
862 config.copy_from(curr_config);
863 send_configure_change();
864 send_render_gui(&config, sizeof(config));
865 ffilt = PluginFFilter::new_ffilter(name, &config);
867 AVPixelFormat pix_fmt = color_model_to_pix_fmt(color_model);
868 AVFilterGraph *graph = !ffilt ? 0 : ffilt->graph;
869 int ret = !graph ? -1 : 0;
870 if( ret >= 0 && ffilt->filter->inputs ) {
871 curr_config.copy_from(config);
872 if( pix_fmt == AV_PIX_FMT_NB ) {
873 int bpp = BC_CModels::calculate_pixelsize(color_model) * 8;
874 int bits_per_comp = bpp / BC_CModels::components(color_model);
875 int alpha = BC_CModels::has_alpha(color_model);
876 pix_fmt = bits_per_comp > 8 ?
877 !alpha ? AV_PIX_FMT_RGB48LE : AV_PIX_FMT_RGBA64LE :
878 !alpha ? AV_PIX_FMT_RGB24 : AV_PIX_FMT_RGBA ;
880 int aspect_w = 1, aspect_h = 1; // XXX
881 AVRational best_rate = best_frame_rate(frame_rate);
882 char args[BCTEXTLEN];
883 snprintf(args, sizeof(args),
884 "video_size=%dx%d:pix_fmt=%d:time_base=%d/%d:pixel_aspect=%d/%d",
885 width, height, pix_fmt, best_rate.num, best_rate.den, aspect_w, aspect_h);
886 ret = avfilter_graph_create_filter(&fsrc, avfilter_get_by_name("buffer"),
887 "in", args, NULL, graph);
890 ret = avfilter_graph_create_filter(&fsink, avfilter_get_by_name("buffersink"),
891 "out", NULL, NULL, graph);
893 ret = av_opt_set_bin(fsink, "pix_fmts",
894 (uint8_t*)&pix_fmt, sizeof(pix_fmt), AV_OPT_SEARCH_CHILDREN);
896 ret = PluginFClient::activate();
897 if( ret < 0 && activated >= 0 ) {
898 ff_err(ret, "PluginFVClient::activate() %s\n", plugin_title());
904 int PluginFAClient::get_inchannels()
906 AVFilterContext *fctx = ffilt->fctx;
907 AVFilterLink **links = !fctx->nb_inputs ? 0 : fctx->inputs;
908 return !links ? 0 : links[0]->channels;
911 int PluginFAClient::get_outchannels()
913 AVFilterContext *fctx = ffilt->fctx;
914 AVFilterLink **links = !fctx->nb_outputs ? 0 : fctx->outputs;
915 return !links ? 0 : links[0]->channels;
918 int PluginFAClient::process_buffer(int64_t size, Samples **buffer, int64_t start_position, int sample_rate)
920 int total_in = PluginClient::total_in_buffers;
921 int total_out = PluginClient::total_out_buffers;
922 int in_channels = 0, out_channels = 0;
924 if( load_configuration() )
927 if( plugin_position != start_position )
928 filter_position = plugin_position = start_position;
931 int ret = activate();
932 if( ret >= 0 && !(frame = av_frame_alloc()) ) {
933 fprintf(stderr, "PluginFAClient::process_buffer: av_frame_alloc failed\n");
934 ret = AVERROR(ENOMEM);
937 in_channels = get_inchannels();
938 out_channels = get_outchannels();
939 frame->nb_samples = size;
940 frame->format = AV_SAMPLE_FMT_FLTP;
941 frame->channel_layout = (1<<in_channels)-1;
942 frame->sample_rate = sample_rate;
943 frame->pts = local_to_edl(filter_position);
947 while( ret >= 0 && --retry >= 0 ) {
948 ret = av_buffersink_get_frame(fsink, frame);
949 if( ret >= 0 || ret != AVERROR(EAGAIN) ) break;
950 if( !fsrc ) { ret = AVERROR(EIO); break; }
951 for( int i=0; i<total_in; ++i )
952 read_samples(buffer[i], i, sample_rate, filter_position, size);
953 filter_position += size;
954 ret = av_frame_get_buffer(frame, 0);
956 float **in_buffers = (float **)&frame->extended_data[0];
957 for(int i = 0; i < in_channels; i++) {
958 float *in_buffer = in_buffers[i];
959 int k = i < total_in ? i : 0;
960 double *in_ptr = buffer[k]->get_data();
961 for(int j = 0; j < size; j++) in_buffer[j] = in_ptr[j];
963 ret = av_buffersrc_add_frame_flags(fsrc, frame, 0);
965 if( ret >= 0 && retry < 0 )
966 ret = AVERROR(EAGAIN);
969 int nbfrs = total_out;
970 if( out_channels < nbfrs ) nbfrs = out_channels;
971 float **out_buffers = (float **)&frame->extended_data[0];
974 float *out_buffer = out_buffers[i];
975 double *out_ptr = buffer[i++]->get_data();
976 for(int j = 0; j < size; j++) out_ptr[j] = out_buffer[j];
978 while( i < total_out ) {
979 double *out_ptr = buffer[i++]->get_data();
980 bzero(out_ptr, sizeof(double) * size);
984 int64_t position = PluginFClient::get_source_position();
985 double t0 = (double)position/sample_rate, dt = 1./sample_rate;
986 for( int i=0; i<total_out; ++i ) {
987 double t = t0, *out = buffer[i]->get_data();
988 for( int k=size; --k>=0; t+=dt ) {
989 double w = int(2*t) & 1 ? 2*M_PI*440 : 2*M_PI*697;
993 ff_err(ret, "PluginFAClient::process_buffer() %s\n", plugin_title());
996 av_frame_free(&frame);
997 plugin_position += size;
1002 PluginFVClient::PluginFVClient(PluginServer *server, const char *name)
1003 : PluginVClient(server), PluginFClient(this, name)
1007 PluginFVClient::~PluginFVClient()
1011 int PluginFVClient::process_buffer(VFrame **frames, int64_t position, double frame_rate)
1013 VFrame *vframe = *frames;
1014 int width = vframe->get_w();
1015 int height = vframe->get_h();
1017 if( load_configuration() )
1020 if( plugin_position != position )
1021 filter_position = plugin_position = position;
1023 int colormodel = vframe->get_color_model();
1024 int ret = activate(width, height, colormodel);
1025 AVPixelFormat pix_fmt = fsrc ?
1026 (AVPixelFormat) fsrc->outputs[0]->format :
1027 color_model_to_pix_fmt(colormodel);
1028 if( pix_fmt <= AV_PIX_FMT_NONE || pix_fmt >= AV_PIX_FMT_NB )
1029 pix_fmt = AV_PIX_FMT_RGBA;
1032 if( ret >= 0 && !(frame = av_frame_alloc()) ) {
1033 fprintf(stderr, "PluginFVClient::process_buffer: av_frame_alloc failed\n");
1034 ret = AVERROR(ENOMEM);
1038 while( ret >= 0 && --retry >= 0 ) {
1039 ret = av_buffersink_get_frame(fsink, frame);
1040 if( ret >= 0 || ret != AVERROR(EAGAIN) ) break;
1041 if( !fsrc ) { ret = AVERROR(EIO); break; }
1042 read_frame(vframe, 0, filter_position++, frame_rate, 0);
1043 frame->format = pix_fmt;
1044 frame->width = width;
1045 frame->height = height;
1046 frame->pts = local_to_edl(position);
1047 ret = av_frame_get_buffer(frame, 32);
1048 if( ret < 0 ) break;
1049 ret = transfer_pixfmt(vframe, frame);
1050 if( ret < 0 ) break;
1051 ret = av_buffersrc_add_frame_flags(fsrc, frame, 0);
1053 if( ret >= 0 && retry < 0 )
1054 ret = AVERROR(EAGAIN);
1057 pix_fmt = (AVPixelFormat) frame->format;
1058 ret = transfer_cmodel(vframe, frame);
1061 ff_err(ret, "PluginFVClient::process_buffer() %s\n", plugin_title());
1062 if( position & 1 ) vframe->clear_frame();
1066 av_frame_free(&frame);
1067 return ret >= 0 ? 0 : 1;
1071 PluginFClient_OptName:: PluginFClient_OptName(PluginFClient_Opt *opt)
1074 set_text(opt->opt->name);
1077 PluginFClient_OptValue::PluginFClient_OptValue(PluginFClient_Opt *opt)
1083 void PluginFClient_OptValue::update()
1085 char val[BCTEXTLEN]; val[0] = 0;
1086 opt->get(val, sizeof(val));
1091 PluginFClient_Opt::PluginFClient_Opt(PluginFClientConfig *conf, const AVOption *opt)
1095 item_name = new PluginFClient_OptName(this);
1096 item_value = new PluginFClient_OptValue(this);
1099 PluginFClient_Opt::~PluginFClient_Opt()
1105 const char *PluginFClientConfig::get(const char *name)
1108 if( av_opt_get(filter_config(), name, 0, &bp) >= 0 ||
1109 av_opt_get(ffilt->fctx, name, 0, &bp) >= 0 )
1110 return (const char *)bp;
1113 char *PluginFClient_Opt::get(char *vp, int sz)
1115 const char *val = conf->get(opt->name);
1117 strncpy(vp, val, sz);
1126 void PluginFClientConfig::set(const char *name, const char *val)
1128 if( av_opt_set(filter_config(), name, val, 0) < 0 )
1129 av_opt_set(ffilt->fctx, name, val, 0);
1131 void PluginFClient_Opt::set(const char *val)
1133 conf->set(opt->name, val);
1136 void PluginFFilter::uninit()
1140 static int get_defaults(const char *name, char *args)
1143 char defaults_path[BCTEXTLEN];
1144 FFMPEG::set_option_path(defaults_path, "plugin.opts");
1145 FILE *fp = fopen(defaults_path,"r");
1147 char ff_plugin[BCSTRLEN], ff_args[BCTEXTLEN], *ap = 0;
1148 while( fgets(ff_args, sizeof(ff_args), fp) ) {
1150 if( *cp == ';' ) continue;
1151 if( *cp == '#' ) ++cp;
1152 char *bp = ff_plugin, *ep = bp + sizeof(ff_plugin)-1;
1153 while( bp < ep && *cp && *cp != '\n' && *cp != ' ' ) *bp++ = *cp++;
1155 if( !strcmp(ff_plugin, name) ) { ap = cp; break; }
1159 if( ff_args[0] == '#' ) return -1;
1160 while( *ap == ' ' ) ++ap;
1161 while( *ap && *ap != '\n' ) *args++ = *ap++;
1166 bool PluginFFilter::is_audio()
1168 return PluginFClient::is_audio(filter);
1171 bool PluginFFilter::is_video()
1173 return PluginFClient::is_video(filter);
1176 int PluginFFilter::init(const char *name, PluginFClientConfig *conf)
1178 char args[BCTEXTLEN];
1179 int ret = get_defaults(name, args);
1180 if( ret < 0 ) return 0;
1181 PluginFLogLevel errs(AV_LOG_ERROR);
1182 this->filter = avfilter_get_by_name(name);
1183 if( !this->filter ) return AVERROR(ENOENT);
1184 int flag_mask = AVFILTER_FLAG_DYNAMIC_INPUTS | AVFILTER_FLAG_DYNAMIC_OUTPUTS;
1185 if( filter->flags & flag_mask ) return AVERROR(EPERM);
1186 if( !this->is_audio() && !this->is_video() ) return AVERROR(EIO);
1187 this->graph = avfilter_graph_alloc();
1188 if( !this->graph ) return AVERROR(ENOMEM);
1189 static int inst = 0;
1190 char inst_name[BCSTRLEN];
1191 sprintf(inst_name,"%s_%d", name, ++inst);
1192 if( conf && (filter->flags & AVFILTER_FLAG_SLICE_THREADS) != 0 ) {
1193 graph->thread_type = AVFILTER_THREAD_SLICE;
1194 graph->nb_threads = atoi(conf->get("threads"));
1197 graph->thread_type = 0;
1198 graph->nb_threads = 0;
1200 fctx = avfilter_graph_alloc_filter(graph, filter, inst_name);
1201 if( !fctx ) return AVERROR(ENOMEM);
1202 fctx->thread_type = graph->thread_type; // bug in avfilter
1204 AVDictionary *opts = 0;
1205 for( int i=0; i<conf->size(); ++i ) {
1206 PluginFClient_Opt *op = conf->get(i);
1207 const char *name = op->opt->name;
1208 char val[BCTEXTLEN], *vp = op->get(val, sizeof(val));
1211 // unspecified opts cause a special behavior in some filters (lut3d)
1212 // so... if opt value is the default, skip it or no special behavior
1213 if( av_opt_get(filter_config(), name, 0, &bp) >= 0 ) {
1214 int result = strcmp((const char *)bp, vp);
1216 if( !result ) continue;
1218 av_dict_set(&opts, name, vp, 0);
1220 ret = avfilter_init_dict(fctx, &opts);
1221 av_dict_free(&opts);
1224 ret = avfilter_init_str(fctx, args);
1225 return ret < 0 ? ret : 1;
1229 PluginFFilter::PluginFFilter()
1236 PluginFFilter::~PluginFFilter()
1238 PluginFLogLevel errs(AV_LOG_ERROR);
1239 avfilter_graph_free(&graph);
1240 filter = 0; fctx = 0;
1243 PluginFFilter *PluginFFilter::new_ffilter(const char *name, PluginFClientConfig *conf)
1245 PluginFFilter *ffilt = new PluginFFilter;
1246 int ret = ffilt->init(name, conf);
1247 if( ret < 0 ) ff_err(ret, "PluginFFilter::new_ffilter(%s)\n", name);
1248 if( ret <= 0 ) { delete ffilt; ffilt = 0; }
1252 PluginClient *PluginServer::new_ffmpeg_plugin()
1254 const AVFilter *filter = avfilter_get_by_name(ff_name);
1255 if( !filter ) return 0;
1256 PluginFClient *ffmpeg =
1257 PluginFClient::is_audio(filter) ?
1258 (PluginFClient *)new PluginFAClient(this, ff_name) :
1259 PluginFClient::is_video(filter) ?
1260 (PluginFClient *)new PluginFVClient(this, ff_name) :
1262 if( !ffmpeg ) return 0;
1263 return ffmpeg->plugin;
1267 PluginServer* MWindow::new_ffmpeg_server(MWindow *mwindow, const char *name)
1269 PluginFFilter *ffilt = PluginFFilter::new_ffilter(name);
1270 if( !ffilt ) return 0;
1272 return new PluginServer(mwindow, name, PLUGIN_TYPE_FFMPEG);
1275 void MWindow::init_ffmpeg_index(MWindow *mwindow, Preferences *preferences, FILE *fp)
1277 PluginFLogLevel errs(AV_LOG_ERROR);
1278 const AVFilter *filter = 0; void *idx = 0;
1279 while( (filter=av_filter_iterate(&idx)) != 0 ) {
1280 //printf("%s\n",filter->name);
1281 PluginServer *server = new_ffmpeg_server(mwindow, filter->name);
1283 int result = server->open_plugin(1, preferences, 0, 0);
1285 server->write_table(fp, filter->name, PLUGIN_FFMPEG_ID, 0);
1286 server->close_plugin();
1289 if( result ) fprintf(fp, "#%s\n", filter->name);
1294 void MWindow::init_ffmpeg()