diff options
author | Ewald Snel <esnel@users.sourceforge.net> | 2002-07-16 19:33:36 +0000 |
---|---|---|
committer | Ewald Snel <esnel@users.sourceforge.net> | 2002-07-16 19:33:36 +0000 |
commit | a680b674071a54904157cd4573cc097fbed0ada3 (patch) | |
tree | b48706bb882ad6bd571adf9732eee2a161698a33 /src/video_out/video_out_directfb.c | |
parent | ee50c49ebd1a94f1a9db19c2653b458cec26c8a7 (diff) | |
download | xine-lib-a680b674071a54904157cd4573cc097fbed0ada3.tar.gz xine-lib-a680b674071a54904157cd4573cc097fbed0ada3.tar.bz2 |
Fix unresolved symbols and replace duplicate code in video output plugins
CVS patchset: 2295
CVS date: 2002/07/16 19:33:36
Diffstat (limited to 'src/video_out/video_out_directfb.c')
-rw-r--r-- | src/video_out/video_out_directfb.c | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/src/video_out/video_out_directfb.c b/src/video_out/video_out_directfb.c index 56e9951b2..e12093e9e 100644 --- a/src/video_out/video_out_directfb.c +++ b/src/video_out/video_out_directfb.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_directfb.c,v 1.10 2002/07/15 21:42:34 esnel Exp $ + * $Id: video_out_directfb.c,v 1.11 2002/07/16 19:33:37 esnel Exp $ * * DirectFB based output plugin. * Rich Wareham <richwareham@users.sourceforge.net> @@ -125,24 +125,6 @@ typedef struct directfb_driver_s { /* - * first, some utility functions - */ -static void *my_malloc_aligned (size_t alignment, size_t size, uint8_t **chunk) { - - uint8_t *pMem; - - pMem = xine_xmalloc (size+alignment); - - *chunk = pMem; - - while ((int) pMem % alignment) - pMem++; - - return pMem; -} - - -/* * and now, the driver functions */ |