aboutsummaryrefslogtreecommitdiff
path: root/multimedia/tosvcd/files/patch-decode.c
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-01-16 05:08:57 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-01-16 05:08:57 +0000
commitdf3e7e93b8317ece24fbe7d0c9e4aa1ebb0feca0 (patch)
tree1d9ecedb74d255866c8e1e5df9db0f2739a8ba66 /multimedia/tosvcd/files/patch-decode.c
parentc31f9d6cf28e3aa831ff2390ee3ab6ea031dbc76 (diff)
Notes
Diffstat (limited to 'multimedia/tosvcd/files/patch-decode.c')
-rw-r--r--multimedia/tosvcd/files/patch-decode.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/multimedia/tosvcd/files/patch-decode.c b/multimedia/tosvcd/files/patch-decode.c
deleted file mode 100644
index 9c13da9dfde4..000000000000
--- a/multimedia/tosvcd/files/patch-decode.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- decode.c.orig Fri Oct 25 16:01:13 2002
-+++ decode.c Fri Oct 25 16:01:31 2002
-@@ -21,7 +21,7 @@
- Mpeg2dec::Mpeg2dec(uint32_t mm_accel)
- {
- config.flags = mm_accel;
-- picture = (picture_t*)memalign (16, sizeof (picture_t));
-+ picture = (picture_t*)malloc(sizeof (picture_t));
- memset(picture, 0, sizeof (picture_t));
- frames = 0;
- frame_ptr[0] = 0;
-@@ -66,7 +66,7 @@
- int size = width() * height() / 4;
- if (frames)
- free(frames);
-- frames = (unsigned char*)memalign(64, size*18);
-+ frames = (unsigned char*)malloc(size*18);
- unsigned char* alloc = frames;
-
- for (int i = 0; i < 3; i++) {