Compile with vdr 2.1.10

This commit is contained in:
Johns 2015-02-12 10:30:50 +01:00
parent 2ceeb6db40
commit 1d06c5ba59
2 changed files with 9 additions and 2 deletions

View File

@ -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

View File

@ -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;
} }