~ubuntu-branches/ubuntu/jaunty/avidemux/jaunty

« back to all changes in this revision

Viewing changes to avidemux/ADM_userInterfaces/ADM_GTK/ADM_dialog/DIA_xvid4.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2009-02-17 23:41:46 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20090217234146-eakx254awuch4wgw
Tags: 1:2.4.4-0.0ubuntu1
* Merge from debian multimedia, Ubuntu remaining changes:
  - debian/control:
    + Build-Depends on newer libx264-dev.
    + Don't Build-Depends on ccache and libamrnb-dev.
    + Build-Depends on libpulse-dev.
    + Fixed small typo in avidemux description.
  - Don't use ccache.
  - Drop patch to fix build with newer x264, it has been merged by upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
448
448
      {  //Intra
449
449
          col=i%8;
450
450
          row=i>>3;
451
 
          spinbutton1_adj = gtk_adjustment_new (intra[i], 8, 255, 1, 10, 10);
 
451
          spinbutton1_adj = gtk_adjustment_new (intra[i], 8, 255, 1, 10, 0);
452
452
          intraCell[i]=spinbutton1 = gtk_spin_button_new (GTK_ADJUSTMENT (spinbutton1_adj), 1, 0);
453
453
     //     gtk_widget_show (spinbutton1);
454
454
          gtk_table_attach (GTK_TABLE (WID(tableIntra)), spinbutton1, col, col+1, row, row+1,
461
461
      {  //Inter
462
462
          col=i%8;
463
463
          row=i>>3;
464
 
          spinbutton1_adj = gtk_adjustment_new (inter[i], 1, 255, 1, 10, 10);
 
464
          spinbutton1_adj = gtk_adjustment_new (inter[i], 1, 255, 1, 10, 0);
465
465
          interCell[i]=spinbutton1 = gtk_spin_button_new (GTK_ADJUSTMENT (spinbutton1_adj), 1, 0);
466
466
      //    gtk_widget_show (spinbutton1);
467
467
          gtk_table_attach (GTK_TABLE (WID(tableInter)), spinbutton1, col, col+1, row, row+1,
792
792
  gtk_tooltips_set_tip (tooltips, entryEntry, QT_TR_NOOP("Target video bitrate"), NULL);
793
793
  gtk_entry_set_width_chars (GTK_ENTRY (entryEntry), 10);
794
794
 
795
 
  spinbuttonQuant_adj = gtk_adjustment_new (4, 1, 31, 1, 10, 10);
 
795
  spinbuttonQuant_adj = gtk_adjustment_new (4, 1, 31, 1, 10, 0);
796
796
  spinbuttonQuant = gtk_spin_button_new (GTK_ADJUSTMENT (spinbuttonQuant_adj), 1, 0);
797
797
  gtk_widget_show (spinbuttonQuant);
798
798
  gtk_box_pack_start (GTK_BOX (vbox22), spinbuttonQuant, FALSE, FALSE, 0);
974
974
  gtk_widget_show (labelIFrameIntervalMin);
975
975
  gtk_box_pack_start (GTK_BOX (hbox9), labelIFrameIntervalMin, FALSE, FALSE, 0);
976
976
 
977
 
  spinbuttonIMinPeriod_adj = gtk_adjustment_new (1, 1, 9, 1, 10, 10);
 
977
  spinbuttonIMinPeriod_adj = gtk_adjustment_new (1, 1, 9, 1, 10, 0);
978
978
  spinbuttonIMinPeriod = gtk_spin_button_new (GTK_ADJUSTMENT (spinbuttonIMinPeriod_adj), 1, 0);
979
979
  gtk_widget_show (spinbuttonIMinPeriod);
980
980
  gtk_box_pack_start (GTK_BOX (hbox9), spinbuttonIMinPeriod, FALSE, FALSE, 0);
984
984
  gtk_widget_show (labelIFrameIntervalMax);
985
985
  gtk_box_pack_start (GTK_BOX (hbox9), labelIFrameIntervalMax, FALSE, FALSE, 0);
986
986
 
987
 
  spinbuttonIMaxPeriod_adj = gtk_adjustment_new (250, 1, 500, 1, 10, 10);
 
987
  spinbuttonIMaxPeriod_adj = gtk_adjustment_new (250, 1, 500, 1, 10, 0);
988
988
  spinbuttonIMaxPeriod = gtk_spin_button_new (GTK_ADJUSTMENT (spinbuttonIMaxPeriod_adj), 1, 0);
989
989
  gtk_widget_show (spinbuttonIMaxPeriod);
990
990
  gtk_box_pack_start (GTK_BOX (hbox9), spinbuttonIMaxPeriod, FALSE, FALSE, 0);
1007
1007
  gtk_widget_show (labelNumberOfBFrames);
1008
1008
  gtk_box_pack_start (GTK_BOX (hbox11), labelNumberOfBFrames, FALSE, FALSE, 0);
1009
1009
 
1010
 
  spinbuttonBFrame_adj = gtk_adjustment_new (1, 0, 3, 1, 1, 1);
 
1010
  spinbuttonBFrame_adj = gtk_adjustment_new (1, 0, 3, 1, 1, 0);
1011
1011
  spinbuttonBFrame = gtk_spin_button_new (GTK_ADJUSTMENT (spinbuttonBFrame_adj), 1, 0);
1012
1012
  gtk_widget_show (spinbuttonBFrame);
1013
1013
  gtk_box_pack_start (GTK_BOX (hbox11), spinbuttonBFrame, FALSE, FALSE, 0);
1049
1049
  gtk_box_pack_start (GTK_BOX (hbox_par1), checkbutton_par_asinput, FALSE, FALSE, 10);
1050
1050
  gtk_tooltips_set_tip (tooltips, checkbutton_par_asinput, QT_TR_NOOP("Get PAR from input video file"), NULL);
1051
1051
 
1052
 
  spinbutton_par_width_adj = gtk_adjustment_new (1, 1, 255, 1, 1, 1);
 
1052
  spinbutton_par_width_adj = gtk_adjustment_new (1, 1, 255, 1, 1, 0);
1053
1053
  spinbutton_par_width = gtk_spin_button_new (GTK_ADJUSTMENT (spinbutton_par_width_adj), 1, 0);
1054
1054
  gtk_widget_show (spinbutton_par_width);
1055
1055
  gtk_box_pack_start (GTK_BOX (hbox_par1), spinbutton_par_width, FALSE, FALSE, 0);
1060
1060
  gtk_box_pack_start (GTK_BOX (hbox_par1), label_par1, FALSE, FALSE, 2);
1061
1061
  gtk_label_set_justify (GTK_LABEL (label_par1), GTK_JUSTIFY_CENTER);
1062
1062
 
1063
 
  spinbutton_par_height_adj = gtk_adjustment_new (1, 1, 255, 1, 1, 1);
 
1063
  spinbutton_par_height_adj = gtk_adjustment_new (1, 1, 255, 1, 1, 0);
1064
1064
  spinbutton_par_height = gtk_spin_button_new (GTK_ADJUSTMENT (spinbutton_par_height_adj), 1, 0);
1065
1065
  gtk_widget_show (spinbutton_par_height);
1066
1066
  gtk_box_pack_start (GTK_BOX (hbox_par1), spinbutton_par_height, FALSE, FALSE, 0);
1176
1176
  gtk_widget_show (vbox12);
1177
1177
  gtk_box_pack_start (GTK_BOX (hbox14), vbox12, FALSE, FALSE, 0);
1178
1178
 
1179
 
  spinbuttonIMin_adj = gtk_adjustment_new (2, 1, 31, 1, 10, 10);
 
1179
  spinbuttonIMin_adj = gtk_adjustment_new (2, 1, 31, 1, 10, 0);
1180
1180
  spinbuttonIMin = gtk_spin_button_new (GTK_ADJUSTMENT (spinbuttonIMin_adj), 1, 0);
1181
1181
  gtk_widget_show (spinbuttonIMin);
1182
1182
  gtk_box_pack_start (GTK_BOX (vbox12), spinbuttonIMin, FALSE, FALSE, 0);
1183
1183
  gtk_tooltips_set_tip (tooltips, spinbuttonIMin, QT_TR_NOOP("Minimum quantizer allowed for I-frames"), NULL);
1184
1184
 
1185
 
  spinbuttonPMin_adj = gtk_adjustment_new (2, 1, 31, 1, 10, 10);
 
1185
  spinbuttonPMin_adj = gtk_adjustment_new (2, 1, 31, 1, 10, 0);
1186
1186
  spinbuttonPMin = gtk_spin_button_new (GTK_ADJUSTMENT (spinbuttonPMin_adj), 1, 0);
1187
1187
  gtk_widget_show (spinbuttonPMin);
1188
1188
  gtk_box_pack_start (GTK_BOX (vbox12), spinbuttonPMin, FALSE, FALSE, 0);
1189
1189
  gtk_tooltips_set_tip (tooltips, spinbuttonPMin, QT_TR_NOOP("Minimum quantizer allowed for P-frames"), NULL);
1190
1190
 
1191
 
  spinbuttonBMin_adj = gtk_adjustment_new (2, 1, 31, 1, 10, 10);
 
1191
  spinbuttonBMin_adj = gtk_adjustment_new (2, 1, 31, 1, 10, 0);
1192
1192
  spinbuttonBMin = gtk_spin_button_new (GTK_ADJUSTMENT (spinbuttonBMin_adj), 1, 0);
1193
1193
  gtk_widget_show (spinbuttonBMin);
1194
1194
  gtk_box_pack_start (GTK_BOX (vbox12), spinbuttonBMin, FALSE, FALSE, 0);
1217
1217
  gtk_widget_show (vbox14);
1218
1218
  gtk_box_pack_start (GTK_BOX (hbox14), vbox14, FALSE, FALSE, 0);
1219
1219
 
1220
 
  spinbuttonIMax_adj = gtk_adjustment_new (31, 1, 31, 1, 10, 10);
 
1220
  spinbuttonIMax_adj = gtk_adjustment_new (31, 1, 31, 1, 10, 0);
1221
1221
  spinbuttonIMax = gtk_spin_button_new (GTK_ADJUSTMENT (spinbuttonIMax_adj), 1, 0);
1222
1222
  gtk_widget_show (spinbuttonIMax);
1223
1223
  gtk_box_pack_start (GTK_BOX (vbox14), spinbuttonIMax, FALSE, FALSE, 0);
1224
1224
  gtk_tooltips_set_tip (tooltips, spinbuttonIMax, QT_TR_NOOP("Maximum quantizer allowed for I-frames"), NULL);
1225
1225
 
1226
 
  spinbuttonPMax_adj = gtk_adjustment_new (31, 1, 31, 1, 10, 10);
 
1226
  spinbuttonPMax_adj = gtk_adjustment_new (31, 1, 31, 1, 10, 0);
1227
1227
  spinbuttonPMax = gtk_spin_button_new (GTK_ADJUSTMENT (spinbuttonPMax_adj), 1, 0);
1228
1228
  gtk_widget_show (spinbuttonPMax);
1229
1229
  gtk_box_pack_start (GTK_BOX (vbox14), spinbuttonPMax, FALSE, FALSE, 0);
1230
1230
  gtk_tooltips_set_tip (tooltips, spinbuttonPMax, QT_TR_NOOP("Maximum quantizer allowed for P-frames"), NULL);
1231
1231
 
1232
 
  spinbuttonBMax_adj = gtk_adjustment_new (31, 1, 31, 1, 10, 10);
 
1232
  spinbuttonBMax_adj = gtk_adjustment_new (31, 1, 31, 1, 10, 0);
1233
1233
  spinbuttonBMax = gtk_spin_button_new (GTK_ADJUSTMENT (spinbuttonBMax_adj), 1, 0);
1234
1234
  gtk_widget_show (spinbuttonBMax);
1235
1235
  gtk_box_pack_start (GTK_BOX (vbox14), spinbuttonBMax, FALSE, FALSE, 0);