~ubuntu-branches/ubuntu/feisty/avidemux/feisty

« back to all changes in this revision

Viewing changes to avidemux/ADM_video/ADM_vidFieldUnblend.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-12-15 17:13:20 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061215171320-w79pvpehxx2fr217
Tags: 1:2.3.0-0.0ubuntu1
* Merge from debian-multimedia.org, remaining Ubuntu change:
  - desktop file,
  - no support for ccache and make -j.
* Closes Ubuntu: #69614.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
//*************************************
78
78
uint8_t vidHardPDRemoval::configure (AVDMGenericVideoStream * in)
79
79
{
80
 
int v;
81
 
        _param->show=GUI_YesNo("Metrics","Do you want to print metrics on screen ?" );
 
80
int v,w;
 
81
        _param->show=GUI_YesNo(_("Metrics"),_("Do you want to print metrics on screen ?" ));
82
82
        v=_param->threshold;
 
83
        w=_param->noise;        
83
84
        if(DIA_GetIntegerValue(&v, 2, 99,"Treshold","Treshold value (smaller = harder to match)"))
84
 
                _param->threshold=v;
85
 
 
86
 
        v=_param->noise;
87
 
        if(DIA_GetIntegerValue(&v, 2, 99,"Noise","Noise threshold"))
88
 
                _param->noise=v;
89
 
        _lastRemoved=0xFFFF;
90
 
        return 1;
 
85
        {
 
86
                if(DIA_GetIntegerValue(&w, 2, 99,"Noise","Noise threshold"))
 
87
                {
 
88
                        _param->threshold=v;
 
89
                    _param->noise=w;
 
90
                    _lastRemoved=0xFFFF;
 
91
                    return 1;
 
92
                }
 
93
        }
 
94
        return 0;
91
95
}
92
96
/*************************************/
93
97
char *vidHardPDRemoval::printConf (void)