Skip to content

Commit d303cd9

Browse files
authored
Merge pull request #763 from Ziemas/mpeg-fixup
libmpeg: cleanup and move IPU management to C
2 parents 0e8da66 + ace677e commit d303cd9

File tree

8 files changed

+2259
-5194
lines changed

8 files changed

+2259
-5194
lines changed

ee/dma/include/dma_tags.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103

104104
/** Insert anywhere, qwc at addr is sent, then ends transfer */
105105
#define DMATAG_REFE(Q,QWC,ADDR,SPR,W2,W3) \
106-
Q->dw[0] = DMATAG(qwc, 0, DMA_TAG_REFE, 0, addr, spr), \
106+
Q->dw[0] = DMATAG(QWC,0,DMA_TAG_REFE,0,ADDR,SPR), \
107107
Q->sw[2] = (u32)(W2), \
108108
Q->sw[3] = (u32)(W3)
109109

ee/mpeg/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
# Licenced under Academic Free License version 2.0
77
# Review ps2sdk README & LICENSE files for further details.
88

9-
EE_OBJS = libmpeg.o libmpeg_core.o erl-support.o
9+
EE_INCS += -I$(PS2SDKSRC)/ee/dma/include
10+
11+
EE_OBJS = libmpeg.o libmpeg_core.o libmpeg_op.o erl-support.o
1012

1113
include $(PS2SDKSRC)/Defs.make
1214
include $(PS2SDKSRC)/ee/Rules.lib.make

0 commit comments

Comments
 (0)