diff options
author | Jochen Dolze <vdr@dolze.de> | 2011-02-19 19:18:11 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2011-02-19 19:18:11 +0100 |
commit | be6394b8c94aae459e71f2e67d0aa3e5ee181336 (patch) | |
tree | 896cc926e8ce4a75ff8f1f3ab53d36ed6d080aaf /command/streaminfo.cpp | |
parent | d98d610825cf9e3d283428e6c1791f7a0f03f649 (diff) | |
download | vdr-plugin-markad-be6394b8c94aae459e71f2e67d0aa3e5ee181336.tar.gz vdr-plugin-markad-be6394b8c94aae459e71f2e67d0aa3e5ee181336.tar.bz2 |
Fixed bug with negative marks on VDR-1.6
Diffstat (limited to 'command/streaminfo.cpp')
-rw-r--r-- | command/streaminfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/command/streaminfo.cpp b/command/streaminfo.cpp index 602916e..874ba8f 100644 --- a/command/streaminfo.cpp +++ b/command/streaminfo.cpp @@ -603,7 +603,7 @@ unsigned BitRateExtL: { if (fps!=maContext->Video.Info.FramesPerSecond) { - maContext->Video.Info.FramesPerSecond=-fps; + maContext->Video.Info.FramesPerSecond=fps; } } } |