Changeset 85a92d1fa in mythtv


Ignore:
Timestamp:
Aug 30, 2010, 11:15:06 PM (14 years ago)
Author:
Mike Dean <mdean@…>
Branches:
devel/2020-player, devel/ffmpeg-resync, devel/gpu-commflag, fixes/0.24, fixes/0.25, fixes/0.26, fixes/0.27, fixes/0.28, fixes/29, fixes/30, fixes/31, github-templates, master
Children:
695c11b6a1
Parents:
59af678ddf
Message:

Remove the AlwaysStreamFiles? setting. Fixes #8101.

git-svn-id: http://svn.mythtv.org/svn/trunk@26011 7dbf422c-18fa-0310-86e9-fd20926502f2

Location:
mythtv
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • mythtv/libs/libmyth/programinfo.cpp

    r59af678ddf r85a92d1fa  
    19751975    bool alwaysStream = gCoreContext->GetNumSetting("AlwaysStreamFiles", 0);
    19761976
    1977     if ((!alwaysStream) ||
    1978         (forceCheckLocal) ||
    1979         (hostname == gCoreContext->GetHostName()))
     1977    if ((!alwaysStream) || (forceCheckLocal))
    19801978    {
    19811979        // Check to see if the file exists locally
  • mythtv/programs/mythfrontend/globalsettings.cpp

    r59af678ddf r85a92d1fa  
    20062006    return gs;
    20072007};
    2008 
    2009 static HostCheckBox *AlwaysStreamFiles()
    2010 {
    2011     HostCheckBox *gc = new HostCheckBox("AlwaysStreamFiles");
    2012     gc->setLabel(QObject::tr("Always stream recordings from the backend"));
    2013     gc->setValue(false);
    2014     gc->setHelpText(QObject::tr(
    2015                         "If enabled, MythTV will always stream files from a "
    2016                         "remote backend instead of directly reading a "
    2017                         "recording file if it is accessible locally."));
    2018     return gc;
    2019 }
    20202008
    20212009static HostCheckBox *CCBackground()
     
    41494137    general1->addChild(columns);
    41504138    general1->addChild(LiveTVIdleTimeout());
    4151     general1->addChild(AlwaysStreamFiles());
    41524139#ifdef USING_OPENGL_VSYNC
    41534140    general1->addChild(UseOpenGLVSync());
Note: See TracChangeset for help on using the changeset viewer.