x264_gtk_more.c
资源名称:chapter15.rar [点击查看]
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:21k
源码类别:
Audio
开发平台:
Visual C++
- /*****************************************************************************
- * x264_gtk_more.c: h264 gtk encoder frontend
- *****************************************************************************
- * Copyright (C) 2006 Vincent Torri
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111, USA.
- *****************************************************************************/
- #include <gtk/gtk.h>
- #include "x264_gtk_i18n.h"
- #include "x264_gtk_private.h"
- /* Callbacks */
- static void x264_more_deblocking_filter (GtkToggleButton *button,
- gpointer user_data);
- static void x264_more_cabac (GtkToggleButton *button,
- gpointer user_data);
- static void x264_more_mixed_ref (GtkToggleButton *button,
- gpointer user_data);
- GtkWidget *
- x264_more_page (X264_Gui_Config *config)
- {
- GtkWidget *vbox;
- GtkWidget *frame;
- GtkWidget *hbox;
- GtkWidget *table;
- GtkWidget *eb;
- GtkWidget *label;
- GtkObject *adj;
- GtkRequisition size;
- GtkRequisition size2;
- GtkRequisition size3;
- GtkRequisition size4;
- GtkRequisition size5;
- GtkTooltips *tooltips;
- tooltips = gtk_tooltips_new ();
- label = gtk_entry_new_with_max_length (3);
- gtk_widget_size_request (label, &size);
- gtk_widget_destroy (GTK_WIDGET (label));
- label = gtk_check_button_new_with_label (_("Deblocking Filter"));
- gtk_widget_size_request (label, &size2);
- gtk_widget_destroy (GTK_WIDGET (label));
- label = gtk_label_new (_("Partition decision"));
- gtk_widget_size_request (label, &size3);
- gtk_widget_destroy (GTK_WIDGET (label));
- label = gtk_label_new (_("Threshold"));
- gtk_widget_size_request (label, &size5);
- gtk_widget_destroy (GTK_WIDGET (label));
- vbox = gtk_vbox_new (FALSE, 0);
- gtk_container_set_border_width (GTK_CONTAINER (vbox), 6);
- /* Motion Estimation */
- frame = gtk_frame_new (_("Motion Estimation"));
- gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, TRUE, 6);
- gtk_widget_show (frame);
- table = gtk_table_new (5, 3, TRUE);
- gtk_table_set_row_spacings (GTK_TABLE (table), 6);
- gtk_table_set_col_spacings (GTK_TABLE (table), 6);
- gtk_container_set_border_width (GTK_CONTAINER (table), 6);
- gtk_container_add (GTK_CONTAINER (frame), table);
- gtk_widget_show (table);
- eb = gtk_event_box_new ();
- gtk_event_box_set_visible_window (GTK_EVENT_BOX (eb), FALSE);
- gtk_tooltips_set_tip (tooltips, eb,
- _("Partition decision - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), eb,
- 0, 1, 0, 1);
- gtk_widget_show (eb);
- label = gtk_label_new (_("Partition decision"));
- gtk_widget_set_size_request (label, size2.width, size3.height);
- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
- gtk_container_add (GTK_CONTAINER (eb), label);
- gtk_widget_show (label);
- config->more.motion_estimation.partition_decision = gtk_combo_box_new_text ();
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.motion_estimation.partition_decision),
- _("1 (Fastest)"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.motion_estimation.partition_decision),
- "2");
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.motion_estimation.partition_decision),
- "3");
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.motion_estimation.partition_decision),
- "4");
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.motion_estimation.partition_decision),
- _("5 (High quality)"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.motion_estimation.partition_decision),
- _("6 (RDO)"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.motion_estimation.partition_decision),
- _("6b (RDO on B frames)"));
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.motion_estimation.partition_decision,
- 1, 3, 0, 1);
- gtk_widget_show (config->more.motion_estimation.partition_decision);
- eb = gtk_event_box_new ();
- gtk_event_box_set_visible_window (GTK_EVENT_BOX (eb), FALSE);
- gtk_tooltips_set_tip (tooltips, eb,
- _("Method - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), eb,
- 0, 1, 1, 2);
- gtk_widget_show (eb);
- label = gtk_label_new (_("Method"));
- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
- gtk_container_add (GTK_CONTAINER (eb), label);
- gtk_widget_show (label);
- config->more.motion_estimation.method = gtk_combo_box_new_text ();
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.motion_estimation.method),
- _("Diamond Search"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.motion_estimation.method),
- _("Hexagonal Search"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.motion_estimation.method),
- _("Uneven Multi-Hexagon"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.motion_estimation.method),
- _("Exhaustive search"));
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.motion_estimation.method,
- 1, 3, 1, 2);
- gtk_widget_show (config->more.motion_estimation.method);
- eb = gtk_event_box_new ();
- gtk_event_box_set_visible_window (GTK_EVENT_BOX (eb), FALSE);
- gtk_tooltips_set_tip (tooltips, eb,
- _("Range - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), eb,
- 0, 1, 2, 3);
- gtk_widget_show (eb);
- label = gtk_label_new (_("Range"));
- gtk_widget_size_request (label, &size4);
- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
- gtk_container_add (GTK_CONTAINER (eb), label);
- gtk_widget_show (label);
- config->more.motion_estimation.range = gtk_entry_new_with_max_length (3);
- gtk_widget_set_size_request (config->more.motion_estimation.range,
- 20, size.height);
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.motion_estimation.range,
- 1, 2, 2, 3);
- gtk_widget_show (config->more.motion_estimation.range);
- config->more.motion_estimation.chroma_me = gtk_check_button_new_with_label (_("Chroma ME"));
- gtk_tooltips_set_tip (tooltips, config->more.motion_estimation.chroma_me,
- _("Chroma ME - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.motion_estimation.chroma_me,
- 2, 3, 2, 3);
- gtk_widget_show (config->more.motion_estimation.chroma_me);
- eb = gtk_event_box_new ();
- gtk_event_box_set_visible_window (GTK_EVENT_BOX (eb), FALSE);
- gtk_tooltips_set_tip (tooltips, eb,
- _("Max Ref. frames - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), eb,
- 0, 1, 3, 4);
- gtk_widget_show (eb);
- label = gtk_label_new (_("Max Ref. frames"));
- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
- gtk_container_add (GTK_CONTAINER (eb), label);
- gtk_widget_show (label);
- config->more.motion_estimation.max_ref_frames = gtk_entry_new_with_max_length (3);
- gtk_widget_set_size_request (config->more.motion_estimation.max_ref_frames,
- 20, size.height);
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.motion_estimation.max_ref_frames,
- 1, 2, 3, 4);
- gtk_widget_show (config->more.motion_estimation.max_ref_frames);
- config->more.motion_estimation.mixed_refs = gtk_check_button_new_with_label (_("Mixed Refs"));
- gtk_tooltips_set_tip (tooltips, config->more.motion_estimation.mixed_refs,
- _("Mixed Refs - description"),
- "");
- g_signal_connect (G_OBJECT (config->more.motion_estimation.mixed_refs),
- "toggled",
- G_CALLBACK (x264_more_mixed_ref), config);
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.motion_estimation.mixed_refs,
- 2, 3, 3, 4);
- gtk_widget_show (config->more.motion_estimation.mixed_refs);
- config->more.motion_estimation.fast_pskip = gtk_check_button_new_with_label (_("Fast P skip"));
- gtk_tooltips_set_tip (tooltips, config->more.motion_estimation.fast_pskip,
- _("Fast P skip - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.motion_estimation.fast_pskip,
- 0, 1, 4, 5);
- gtk_widget_show (config->more.motion_estimation.fast_pskip);
- config->more.motion_estimation.dct_decimate = gtk_check_button_new_with_label (_("DCT decimate"));
- gtk_tooltips_set_tip (tooltips, config->more.motion_estimation.dct_decimate,
- _("DCT decimate - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.motion_estimation.dct_decimate,
- 1, 2, 4, 5);
- gtk_widget_show (config->more.motion_estimation.dct_decimate);
- /* Misc. Options */
- frame = gtk_frame_new (_("Misc. Options"));
- gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, TRUE, 6);
- gtk_widget_show (frame);
- table = gtk_table_new (5, 4, FALSE);
- gtk_table_set_row_spacings (GTK_TABLE (table), 6);
- gtk_table_set_col_spacings (GTK_TABLE (table), 6);
- gtk_container_set_border_width (GTK_CONTAINER (table), 6);
- gtk_container_add (GTK_CONTAINER (frame), table);
- gtk_widget_show (table);
- eb = gtk_event_box_new ();
- gtk_event_box_set_visible_window (GTK_EVENT_BOX (eb), FALSE);
- gtk_tooltips_set_tip (tooltips, eb,
- _("Sample Aspect Ratio - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), eb,
- 0, 1, 0, 1);
- gtk_widget_show (eb);
- label = gtk_label_new (_("Sample Aspect Ratio"));
- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
- gtk_container_add (GTK_CONTAINER (eb), label);
- gtk_widget_show (label);
- hbox = gtk_hbox_new (TRUE, 6);
- gtk_table_attach_defaults (GTK_TABLE (table), hbox,
- 1, 2, 0, 1);
- gtk_widget_show (hbox);
- config->more.misc.sample_ar_x = gtk_entry_new_with_max_length (3);
- gtk_widget_set_size_request (config->more.misc.sample_ar_x, 25, size.height);
- gtk_box_pack_start (GTK_BOX (hbox), config->more.misc.sample_ar_x, FALSE, TRUE, 0);
- gtk_widget_show (config->more.misc.sample_ar_x);
- config->more.misc.sample_ar_y = gtk_entry_new_with_max_length (3);
- gtk_widget_set_size_request (config->more.misc.sample_ar_y, 25, size.height);
- gtk_box_pack_start (GTK_BOX (hbox), config->more.misc.sample_ar_y, FALSE, TRUE, 0);
- gtk_widget_show (config->more.misc.sample_ar_y);
- eb = gtk_event_box_new ();
- gtk_event_box_set_visible_window (GTK_EVENT_BOX (eb), FALSE);
- gtk_tooltips_set_tip (tooltips, eb,
- _("Threads - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), eb,
- 2, 3, 0, 1);
- gtk_widget_show (eb);
- label = gtk_label_new (_("Threads"));
- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
- gtk_container_add (GTK_CONTAINER (eb), label);
- gtk_widget_show (label);
- adj = gtk_adjustment_new (1.0, 1.0, 4.0, 1.0, 1.0, 1.0);
- config->more.misc.threads = gtk_spin_button_new (GTK_ADJUSTMENT (adj), 1.0, 0);
- gtk_widget_set_size_request (config->more.misc.threads, size5.width, size.height);
- gtk_table_attach_defaults (GTK_TABLE (table),
- config->more.misc.threads,
- 3, 4, 0, 1);
- gtk_widget_show (config->more.misc.threads);
- config->more.misc.cabac = gtk_check_button_new_with_label (_("CABAC"));
- gtk_widget_set_size_request (config->more.misc.cabac, size5.width, size.height);
- gtk_tooltips_set_tip (tooltips, config->more.misc.cabac,
- _("CABAC - description"),
- "");
- g_signal_connect (G_OBJECT (config->more.misc.cabac),
- "toggled",
- G_CALLBACK (x264_more_cabac), config);
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.misc.cabac,
- 0, 1, 1, 2);
- gtk_widget_show (config->more.misc.cabac);
- eb = gtk_event_box_new ();
- gtk_event_box_set_visible_window (GTK_EVENT_BOX (eb), FALSE);
- gtk_tooltips_set_tip (tooltips, eb,
- _("Trellis - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), eb,
- 1, 2, 1, 2);
- gtk_widget_show (eb);
- label = gtk_label_new (_("Trellis"));
- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
- gtk_container_add (GTK_CONTAINER (eb), label);
- gtk_widget_show (label);
- config->more.misc.trellis = gtk_combo_box_new_text ();
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.misc.trellis),
- _("Disabled"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.misc.trellis),
- _("Enabled (once)"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.misc.trellis),
- _("Enabled (mode decision)"));
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.misc.trellis,
- 2, 4, 1, 2);
- gtk_widget_show (config->more.misc.trellis);
- eb = gtk_event_box_new ();
- gtk_event_box_set_visible_window (GTK_EVENT_BOX (eb), FALSE);
- gtk_tooltips_set_tip (tooltips, eb,
- _("Noise reduction - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), eb,
- 0, 1, 2, 3);
- gtk_widget_show (eb);
- label = gtk_label_new (_("Noise reduction"));
- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
- gtk_container_add (GTK_CONTAINER (eb), label);
- gtk_widget_show (label);
- config->more.misc.noise_reduction = gtk_entry_new_with_max_length (3);
- gtk_widget_set_size_request (config->more.misc.noise_reduction, size5.width, size.height);
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.misc.noise_reduction,
- 1, 2, 2, 3);
- gtk_widget_show (config->more.misc.noise_reduction);
- config->more.misc.df.deblocking_filter = gtk_check_button_new_with_label (_("Deblocking Filter"));
- gtk_tooltips_set_tip (tooltips, config->more.misc.df.deblocking_filter,
- _("Deblocking Filter - description"),
- "");
- g_signal_connect (G_OBJECT (config->more.misc.df.deblocking_filter),
- "toggled",
- G_CALLBACK (x264_more_deblocking_filter), config);
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.misc.df.deblocking_filter,
- 0, 1, 3, 4);
- gtk_widget_show (config->more.misc.df.deblocking_filter);
- eb = gtk_event_box_new ();
- gtk_event_box_set_visible_window (GTK_EVENT_BOX (eb), FALSE);
- gtk_tooltips_set_tip (tooltips, eb,
- _("Strength - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), eb,
- 1, 2, 3, 4);
- gtk_widget_show (eb);
- label = gtk_label_new (_("Strength"));
- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
- gtk_widget_set_size_request (label, size5.width, size4.height);
- gtk_container_add (GTK_CONTAINER (eb), label);
- gtk_widget_show (label);
- config->more.misc.df.strength = gtk_hscale_new_with_range (-6.0, 6.0, 1.0);
- gtk_widget_size_request (config->more.misc.df.strength, &size4);
- gtk_scale_set_digits (GTK_SCALE (config->more.misc.df.strength), 0);
- gtk_scale_set_value_pos (GTK_SCALE (config->more.misc.df.strength), GTK_POS_RIGHT);
- // gtk_widget_set_size_request (config->more.misc.df.strength, size5.width, size4.height);
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.misc.df.strength,
- 2, 4, 3, 4);
- gtk_widget_show (config->more.misc.df.strength);
- eb = gtk_event_box_new ();
- gtk_event_box_set_visible_window (GTK_EVENT_BOX (eb), FALSE);
- gtk_tooltips_set_tip (tooltips, eb,
- _("Threshold - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), eb,
- 1, 2, 4, 5);
- gtk_widget_show (eb);
- label = gtk_label_new (_("Threshold"));
- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
- gtk_widget_set_size_request (label, size5.width, size4.height);
- gtk_container_add (GTK_CONTAINER (eb), label);
- gtk_widget_show (label);
- config->more.misc.df.threshold = gtk_hscale_new_with_range (-6.0, 6.0, 1.0);
- gtk_scale_set_digits (GTK_SCALE (config->more.misc.df.threshold), 0);
- gtk_scale_set_value_pos (GTK_SCALE (config->more.misc.df.threshold), GTK_POS_RIGHT);
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.misc.df.threshold,
- 2, 4, 4, 5);
- gtk_widget_show (config->more.misc.df.threshold);
- /* Debug */
- frame = gtk_frame_new (_("Debug"));
- gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, TRUE, 6);
- gtk_widget_show (frame);
- table = gtk_table_new (2, 2, TRUE);
- gtk_table_set_row_spacings (GTK_TABLE (table), 6);
- gtk_container_set_border_width (GTK_CONTAINER (table), 6);
- gtk_container_add (GTK_CONTAINER (frame), table);
- gtk_widget_show (table);
- eb = gtk_event_box_new ();
- gtk_event_box_set_visible_window (GTK_EVENT_BOX (eb), FALSE);
- gtk_tooltips_set_tip (tooltips, eb,
- _("Log level - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), eb,
- 0, 1, 0, 1);
- gtk_widget_show (eb);
- label = gtk_label_new (_("Log level"));
- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
- gtk_container_add (GTK_CONTAINER (eb), label);
- gtk_widget_show (label);
- config->more.debug.log_level = gtk_combo_box_new_text ();
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.debug.log_level),
- _("None"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.debug.log_level),
- _("Error"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.debug.log_level),
- _("Warning"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.debug.log_level),
- _("Info"));
- gtk_combo_box_append_text (GTK_COMBO_BOX (config->more.debug.log_level),
- _("Debug"));
- gtk_table_attach_defaults (GTK_TABLE (table), config->more.debug.log_level,
- 1, 2, 0, 1);
- gtk_widget_show (config->more.debug.log_level);
- eb = gtk_event_box_new ();
- gtk_event_box_set_visible_window (GTK_EVENT_BOX (eb), FALSE);
- gtk_tooltips_set_tip (tooltips, eb,
- _("FourCC - description"),
- "");
- gtk_table_attach_defaults (GTK_TABLE (table), eb,
- 0, 1, 1, 2);
- gtk_widget_show (eb);
- label = gtk_label_new ("FourCC");
- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
- gtk_container_add (GTK_CONTAINER (eb), label);
- gtk_widget_show (label);
- config->more.debug.fourcc = gtk_entry_new_with_max_length (4);
- gtk_table_attach_defaults (GTK_TABLE (table),
- config->more.debug.fourcc,
- 1, 2, 1, 2);
- gtk_widget_set_sensitive (config->more.debug.fourcc, FALSE);
- gtk_widget_show (config->more.debug.fourcc);
- return vbox;
- }
- /* Callbacks */
- static void
- x264_more_deblocking_filter (GtkToggleButton *button,
- gpointer user_data)
- {
- X264_Gui_Config *config;
- config = (X264_Gui_Config *)user_data;
- if (gtk_toggle_button_get_active (button)) {
- gtk_widget_set_sensitive (config->more.misc.df.strength, TRUE);
- gtk_widget_set_sensitive (config->more.misc.df.threshold, TRUE);
- }
- else {
- gtk_widget_set_sensitive (config->more.misc.df.strength, FALSE);
- gtk_widget_set_sensitive (config->more.misc.df.threshold, FALSE);
- }
- }
- static void
- x264_more_cabac (GtkToggleButton *button,
- gpointer user_data)
- {
- X264_Gui_Config *config;
- config = (X264_Gui_Config *)user_data;
- if (gtk_toggle_button_get_active (button))
- gtk_widget_set_sensitive (config->more.misc.trellis, TRUE);
- else
- gtk_widget_set_sensitive (config->more.misc.trellis, FALSE);
- }
- static void
- x264_more_mixed_ref (GtkToggleButton *button,
- gpointer user_data)
- {
- X264_Gui_Config *config;
- config = (X264_Gui_Config *)user_data;
- if (gtk_toggle_button_get_active (button)) {
- const gchar *text;
- gint val;
- text = gtk_entry_get_text (GTK_ENTRY (config->more.motion_estimation.max_ref_frames));
- val = (gint)g_ascii_strtoull (text, NULL, 10);
- if (val < 2)
- gtk_entry_set_text (GTK_ENTRY (config->more.motion_estimation.max_ref_frames), "2");
- }
- }