Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 176893
Collapse All | Expand All

(-)kmplayer-0.9.4a.old/src/kmplayerapp.cpp (-1 / +1 lines)
Lines 1827-1833 Link Here
1827
        if (m_player->settings ()->dvddevice.length () > 0)
1827
        if (m_player->settings ()->dvddevice.length () > 0)
1828
            m_options += QString(" -dvd-device ") + m_player->settings()->dvddevice;
1828
            m_options += QString(" -dvd-device ") + m_player->settings()->dvddevice;
1829
    }
1829
    }
1830
    m_recordcmd = m_options + QString (" -vop scale -zoom");
1830
    m_recordcmd = m_options + QString (" -vf scale -zoom");
1831
}
1831
}
1832
1832
1833
KDE_NO_EXPORT QString KMPlayerDVDSource::filterOptions () {
1833
KDE_NO_EXPORT QString KMPlayerDVDSource::filterOptions () {
(-)kmplayer-0.9.4a.old/src/kmplayerconfig.h (-2 / +2 lines)
Lines 136-143 Link Here
136
// postproc thingies
136
// postproc thingies
137
    bool postprocessing : 1;
137
    bool postprocessing : 1;
138
    bool disableppauto : 1;
138
    bool disableppauto : 1;
139
    bool pp_default : 1;	// -vop pp=de
139
    bool pp_default : 1;	// -vf pp=de
140
    bool pp_fast : 1;	// -vop pp=fa
140
    bool pp_fast : 1;	// -vf pp=fa
141
    bool pp_custom : 1;	// coming up
141
    bool pp_custom : 1;	// coming up
142
142
143
    bool pp_custom_hz : 1; 		// horizontal deblocking
143
    bool pp_custom_hz : 1; 		// horizontal deblocking
(-)kmplayer-0.9.4a.old/src/kmplayerpartbase.cpp (-3 / +3 lines)
Lines 1240-1250 Link Here
1240
    if (m_settings->postprocessing)
1240
    if (m_settings->postprocessing)
1241
    {
1241
    {
1242
        if (m_settings->pp_default)
1242
        if (m_settings->pp_default)
1243
            PPargs = "-vop pp=de";
1243
            PPargs = "-vf pp=de";
1244
        else if (m_settings->pp_fast)
1244
        else if (m_settings->pp_fast)
1245
            PPargs = "-vop pp=fa";
1245
            PPargs = "-vf pp=fa";
1246
        else if (m_settings->pp_custom) {
1246
        else if (m_settings->pp_custom) {
1247
            PPargs = "-vop pp=";
1247
            PPargs = "-vf pp=";
1248
            if (m_settings->pp_custom_hz) {
1248
            if (m_settings->pp_custom_hz) {
1249
                PPargs += "hb";
1249
                PPargs += "hb";
1250
                if (m_settings->pp_custom_hz_aq && \
1250
                if (m_settings->pp_custom_hz_aq && \
(-)kmplayer-0.9.4a.old/src/kmplayertvsource.cpp (-1 / +1 lines)
Lines 505-511 Link Here
505
KDE_NO_EXPORT QString KMPlayerTVSource::filterOptions () {
505
KDE_NO_EXPORT QString KMPlayerTVSource::filterOptions () {
506
    if (! m_player->settings ()->disableppauto)
506
    if (! m_player->settings ()->disableppauto)
507
        return KMPlayer::Source::filterOptions ();
507
        return KMPlayer::Source::filterOptions ();
508
    return QString ("-vop pp=lb");
508
    return QString ("-vf pp=lb");
509
}
509
}
510
510
511
KDE_NO_EXPORT bool KMPlayerTVSource::hasLength () {
511
KDE_NO_EXPORT bool KMPlayerTVSource::hasLength () {
(-)kmplayer-0.9.4a.old/src/xineplayer.cpp (-4 / +4 lines)
Lines 1183-1193 Link Here
1183
            xine_close_audio_driver (xine, ap);
1183
            xine_close_audio_driver (xine, ap);
1184
            fprintf (stderr, "audio output: %s\n", *aop);
1184
            fprintf (stderr, "audio output: %s\n", *aop);
1185
        }
1185
        }
1186
        const char *const * vops = xine_list_video_output_plugins (xine);
1186
        const char *const * vfs = xine_list_video_output_plugins (xine);
1187
        for (const char *const* vop = vops; *vop; vop++) {
1187
        for (const char *const* vf = vfs; *vf; vf++) {
1188
            xine_video_port_t * vp = xine_open_video_driver (xine, *vop, XINE_VISUAL_TYPE_NONE, 0L);
1188
            xine_video_port_t * vp = xine_open_video_driver (xine, *vf, XINE_VISUAL_TYPE_NONE, 0L);
1189
            xine_close_video_driver (xine, vp);
1189
            xine_close_video_driver (xine, vp);
1190
            fprintf (stderr, "vidio output: %s\n", *vop);
1190
            fprintf (stderr, "vidio output: %s\n", *vf);
1191
        }*/
1191
        }*/
1192
        getConfigEntries (buf);
1192
        getConfigEntries (buf);
1193
    }
1193
    }

Return to bug 176893