Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ee/mpeg/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Licenced under Academic Free License version 2.0
# Review ps2sdk README & LICENSE files for further details.

EE_OBJS = libmpeg.o libmpeg_core_c.o erl-support.o
EE_OBJS = libmpeg.o libmpeg_core.o erl-support.o

include $(PS2SDKSRC)/Defs.make
include $(PS2SDKSRC)/ee/Rules.lib.make
Expand Down
2 changes: 1 addition & 1 deletion ee/mpeg/samples/mpeg.c
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ static void* InitCB ( void* apParam, MPEGSequenceInfo* apInfo ) {
q++;
PACK_GIFTAG(q, GS_SET_UV( 0, 0 ), GS_REG_UV );
q++;
PACK_GIFTAG(q, GS_SET_XYZ( 0, 0, 0 ), GS_REG_XYZ2 );
PACK_GIFTAG(q, GS_SET_XYZ( (2048 << 4), (2048 << 4), 0 ), GS_REG_XYZ2 );
q++;
PACK_GIFTAG(q, GS_SET_UV( apInfo -> m_Width << 4, apInfo -> m_Height << 4 ), GS_REG_UV );
q++;
Expand Down
Loading