mirror of
https://projects.vdr-developer.org/git/vdr-plugin-softhddevice.git
synced 2023-10-10 19:16:51 +02:00
Compile with vdr 2.1.10
This commit is contained in:
parent
2ceeb6db40
commit
1d06c5ba59
@ -1,3 +1,10 @@
|
|||||||
|
User johns
|
||||||
|
Date:
|
||||||
|
|
||||||
|
Compile with vdr 2.1.10.
|
||||||
|
Fix bug: AVCodecContext.framerate not supported.
|
||||||
|
Use video stream frame rate for A/V sync.
|
||||||
|
|
||||||
User Antti Seppälä
|
User Antti Seppälä
|
||||||
Date: Thu Oct 16 14:15:15 CEST 2014
|
Date: Thu Oct 16 14:15:15 CEST 2014
|
||||||
|
|
||||||
|
@ -496,7 +496,7 @@ void cSoftOsd::Flush(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
LOCK_PIXMAPS;
|
LOCK_PIXMAPS;
|
||||||
while ((pm = RenderPixmaps())) {
|
while ((pm = (dynamic_cast < cPixmapMemory * >(RenderPixmaps())))) {
|
||||||
int x;
|
int x;
|
||||||
int y;
|
int y;
|
||||||
int w;
|
int w;
|
||||||
@ -513,7 +513,7 @@ void cSoftOsd::Flush(void)
|
|||||||
#endif
|
#endif
|
||||||
OsdDrawARGB(x, y, w, h, pm->Data());
|
OsdDrawARGB(x, y, w, h, pm->Data());
|
||||||
|
|
||||||
delete pm;
|
DestroyPixmap(pm);
|
||||||
}
|
}
|
||||||
Dirty = 0;
|
Dirty = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user