Ticket #1460: mythdvd_typos.patch

File mythdvd_typos.patch, 4.2 KB (added by Anduin Withers <awithers@…>, 18 years ago)
  • mythdvd/mythdvd/titledialog.cpp

     
    3535    disc_name = d_name;
    3636    if(disc_name.length() < 1)
    3737    {
    38         disc_name = tr("Unkown");
     38        disc_name = tr("Unknown");
    3939    }
    4040    dvd_titles = titles;
    4141
  • mythdvd/mtd/jobthread.cpp

     
    220220            if (!(m_mutex && m_mutex->locked()))
    221221            {
    222222                VERBOSE(VB_IMPORTANT,
    223                         QString("%1: Invalid mutext passed to MutexUnlocker")
     223                        QString("%1: Invalid mutex passed to MutexUnlocker")
    224224                        .arg(__FILE__));
    225225            }
    226226        }
     
    890890            }
    891891            else
    892892            {
    893                 problem("abandonded job because master control said we need to shut down");
     893                problem("abandoned job because master control said we need to shut down");
    894894                return;
    895895            }
    896896        }
  • mythdvd/mtd/dvdprobe.cpp

     
    6868    char a_string[1025];
    6969
    7070    //
    71     //  this just travels down the audio_attributes stuct
     71    //  this just travels down the audio_attributes struct
    7272    //  (defined in libdvdread) and ticks off the right
    7373    //  information
    7474    //
     
    218218    aspect_ratio = "";
    219219
    220220    letterbox = false;
    221     video_format = "unkown";
     221    video_format = "unknown";
    222222   
    223223    dvdinput_id = 0;
    224224}
     
    231231    frame_rate = fr;
    232232   
    233233    //
    234     //  These are transocde frame rate codes
     234    //  These are transcode frame rate codes
    235235    //
    236236   
    237237    if(fr > 23.0 && fr < 24.0)
  • mythdvd/mtd/mtd.cpp

     
    159159    max_concurrent_transcodings = gContext->GetNumSetting("MTDConcurrentTranscodings", 1);
    160160
    161161    //
    162     //  Create a timer to occassionally
     162    //  Create a timer to occasionally
    163163    //  clean out dead threads
    164164    //
    165165   
     
    264264            }
    265265            else
    266266            {
    267                 emit writeToLog(QString("job finished succesfully: %1").arg(job_command));
     267                emit writeToLog(QString("job finished successfully: %1").arg(job_command));
    268268            }
    269269           
    270270            //
     
    696696
    697697        if(!checkFinalFile(&final_file, ".iso"))
    698698        {
    699             emit writeToLog("Final file name is not useable. File exists? Other Pending job?");
     699            emit writeToLog("Final file name is not usable. File exists? Other Pending job?");
    700700            return;
    701701        }
    702702   
     
    723723
    724724        if(!checkFinalFile(&final_file, ".mpg"))
    725725        {
    726             emit writeToLog("Final file name is not useable. File exists? Other Pending job?");
     726            emit writeToLog("Final file name is not usable. File exists? Other Pending job?");
    727727            return;
    728728        }
    729729   
     
    750750
    751751        if(!checkFinalFile(&final_file, ".avi"))
    752752        {
    753             emit writeToLog("Final file name is not useable. File exists? Other Pending job?");
     753            emit writeToLog("Final file name is not usable. File exists? Other Pending job?");
    754754            return;
    755755        }
    756756   
     
    856856    }
    857857    else
    858858    {
    859         cerr << "mtd.o: receiving evenets I don't understand" << endl;
     859        cerr << "mtd.o: receiving events I don't understand" << endl;
    860860    }
    861861}
    862862
  • configure

     
    3131aac="no"          # compile fails w/libfaad v2.0
    3232exif="yes"
    3333newexif="yes"
    34 festival="no"     # no config detection/setup rutine
     34festival="no"     # no config detection/setup routine
    3535
    3636targetos=`uname -s`
    3737case $targetos in