Esempio n. 1
0
void PlayerSubtitle::setAutoLoad(bool value)
{
    if (m_auto == value)
        return;
    m_auto = value;
    emit autoLoadChanged(value);
}
Esempio n. 2
0
void QDeclarativeMediaBase::setAutoLoad(bool autoLoad)
{
    if (m_autoLoad == autoLoad)
        return;

    m_autoLoad = autoLoad;
    emit autoLoadChanged();
}
Esempio n. 3
0
void AVFilterSubtitle::setAutoLoad(bool value)
{
    if (m_auto == value)
        return;
    m_auto = value;
    emit autoLoadChanged(value);
    if (!m_player || !m_auto)
        return;
    connect(m_player, SIGNAL(started()), SLOT(onPlayerStart()));
}