View | Details | Raw Unified
Collapse All | Expand All

(-) kmplayer-0.9.4a.old/src/kmplayerapp.cpp (-1 / +1 lines)
 Lines 1827-1833    Link Here 
        if (m_player->settings ()->dvddevice.length () > 0)
        if (m_player->settings ()->dvddevice.length () > 0)
            m_options += QString(" -dvd-device ") + m_player->settings()->dvddevice;
            m_options += QString(" -dvd-device ") + m_player->settings()->dvddevice;
    }
    }
    m_recordcmd = m_options + QString (" -vop scale -zoom");
    m_recordcmd = m_options + QString (" -vf scale -zoom");
}
}
KDE_NO_EXPORT QString KMPlayerDVDSource::filterOptions () {
KDE_NO_EXPORT QString KMPlayerDVDSource::filterOptions () {
(-) kmplayer-0.9.4a.old/src/kmplayerconfig.h (-2 / +2 lines)
 Lines 136-143    Link Here 
// postproc thingies
// postproc thingies
    bool postprocessing : 1;
    bool postprocessing : 1;
    bool disableppauto : 1;
    bool disableppauto : 1;
    bool pp_default : 1;	// -vop pp=de
    bool pp_default : 1;	// -vf pp=de
    bool pp_fast : 1;	// -vop pp=fa
    bool pp_fast : 1;	// -vf pp=fa
    bool pp_custom : 1;	// coming up
    bool pp_custom : 1;	// coming up
    bool pp_custom_hz : 1; 		// horizontal deblocking
    bool pp_custom_hz : 1; 		// horizontal deblocking
(-) kmplayer-0.9.4a.old/src/kmplayerpartbase.cpp (-3 / +3 lines)
 Lines 1240-1250    Link Here 
    if (m_settings->postprocessing)
    if (m_settings->postprocessing)
    {
    {
        if (m_settings->pp_default)
        if (m_settings->pp_default)
            PPargs = "-vop pp=de";
            PPargs = "-vf pp=de";
        else if (m_settings->pp_fast)
        else if (m_settings->pp_fast)
            PPargs = "-vop pp=fa";
            PPargs = "-vf pp=fa";
        else if (m_settings->pp_custom) {
        else if (m_settings->pp_custom) {
            PPargs = "-vop pp=";
            PPargs = "-vf pp=";
            if (m_settings->pp_custom_hz) {
            if (m_settings->pp_custom_hz) {
                PPargs += "hb";
                PPargs += "hb";
                if (m_settings->pp_custom_hz_aq && \
                if (m_settings->pp_custom_hz_aq && \
(-) kmplayer-0.9.4a.old/src/kmplayertvsource.cpp (-1 / +1 lines)
 Lines 505-511    Link Here 
KDE_NO_EXPORT QString KMPlayerTVSource::filterOptions () {
KDE_NO_EXPORT QString KMPlayerTVSource::filterOptions () {
    if (! m_player->settings ()->disableppauto)
    if (! m_player->settings ()->disableppauto)
        return KMPlayer::Source::filterOptions ();
        return KMPlayer::Source::filterOptions ();
    return QString ("-vop pp=lb");
    return QString ("-vf pp=lb");
}
}
KDE_NO_EXPORT bool KMPlayerTVSource::hasLength () {
KDE_NO_EXPORT bool KMPlayerTVSource::hasLength () {
(-) kmplayer-0.9.4a.old/src/xineplayer.cpp (-4 / +4 lines)
 Lines 1183-1193    Link Here 
            xine_close_audio_driver (xine, ap);
            xine_close_audio_driver (xine, ap);
            fprintf (stderr, "audio output: %s\n", *aop);
            fprintf (stderr, "audio output: %s\n", *aop);
        }
        }
        const char *const * vops = xine_list_video_output_plugins (xine);
        const char *const * vfs = xine_list_video_output_plugins (xine);
        for (const char *const* vop = vops; *vop; vop++) {
        for (const char *const* vf = vfs; *vf; vf++) {
            xine_video_port_t * vp = xine_open_video_driver (xine, *vop, XINE_VISUAL_TYPE_NONE, 0L);
            xine_video_port_t * vp = xine_open_video_driver (xine, *vf, XINE_VISUAL_TYPE_NONE, 0L);
            xine_close_video_driver (xine, vp);
            xine_close_video_driver (xine, vp);
            fprintf (stderr, "vidio output: %s\n", *vop);
            fprintf (stderr, "vidio output: %s\n", *vf);
        }*/
        }*/
        getConfigEntries (buf);
        getConfigEntries (buf);
    }
    }