diff options
Diffstat (limited to 'dynamicdevice.c')
-rw-r--r-- | dynamicdevice.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/dynamicdevice.c b/dynamicdevice.c index d0d642e..c17f9bc 100644 --- a/dynamicdevice.c +++ b/dynamicdevice.c @@ -1035,6 +1035,20 @@ bool cDynamicDevice::IsPlayingVideo(void) const return cDevice::IsPlayingVideo(); } +cRect cDynamicDevice::CanScaleVideo(const cRect &Rect, int Alignment) +{ + if (subDevice) + return subDevice->CanScaleVideo(Rect, Alignment); + return cDevice::CanScaleVideo(Rect, Alignment); +} + +void cDynamicDevice::ScaleVideo(const cRect &Rect) +{ + if (subDevice) + return subDevice->ScaleVideo(Rect); + return cDevice::ScaleVideo(Rect); +} + bool cDynamicDevice::HasIBPTrickSpeed(void) { if (subDevice) |