Navigation Menu

Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
idekker committed Jun 24, 2012
2 parents 7d41fc8 + 3cb4695 commit 4e51f7d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions project/VS2010Express/XBMC for Windows.sln
Expand Up @@ -607,6 +607,7 @@ Global
{C04B0FB1-667D-4F1C-BDAE-A07CDFFA74A3}.Release|Win32.ActiveCfg = Release|Win32
{C04B0FB1-667D-4F1C-BDAE-A07CDFFA74A3}.Release|Win32.Build.0 = Release|Win32
{87DA0A1E-3F33-4927-A5E5-2D58F2C58E17}.Debug (DirectX)|Win32.ActiveCfg = Debug|Win32
{87DA0A1E-3F33-4927-A5E5-2D58F2C58E17}.Debug (DirectX)|Win32.Build.0 = Debug|Win32
{87DA0A1E-3F33-4927-A5E5-2D58F2C58E17}.Debug (OpenGL)|Win32.ActiveCfg = Debug|Win32
{87DA0A1E-3F33-4927-A5E5-2D58F2C58E17}.Debug|Win32.ActiveCfg = Debug|Win32
{87DA0A1E-3F33-4927-A5E5-2D58F2C58E17}.Debug|Win32.Build.0 = Debug|Win32
Expand Down
11 changes: 10 additions & 1 deletion xbmc/pvrclients/mythtv-cmyth/client.cpp
Expand Up @@ -409,7 +409,7 @@ PVR_ERROR GetAddonCapabilities(PVR_ADDON_CAPABILITIES *pCapabilities)
pCapabilities->bHandlesDemuxing = false;
pCapabilities->bSupportsChannelScan = false;
pCapabilities->bSupportsRecordingPlayCount = true;

pCapabilities->bSupportsLastPlayedPosition = false; //TODO: add it as mythtv does support it.
return PVR_ERROR_NO_ERROR;
}

Expand Down Expand Up @@ -547,6 +547,15 @@ PVR_ERROR SetRecordingPlayCount(const PVR_RECORDING &recording, int count)
return g_client->SetRecordingPlayCount(recording, count);
}

PVR_ERROR SetRecordingLastPlayedPosition(const PVR_RECORDING &recording, int lastplayedposition)
{
return PVR_ERROR_NOT_IMPLEMENTED;
}

int GetRecordingLastPlayedPosition(const PVR_RECORDING &recording)
{
return PVR_ERROR_NOT_IMPLEMENTED;
}
/*******************************************/
/** PVR Timer Functions **/

Expand Down

0 comments on commit 4e51f7d

Please sign in to comment.