Add support for VC1 by adding start code and adjust transfer format for H263 Signed-off-by: Huang Chaofan <chaofan.huang@nxp.com> (cherry picked from commit 5bf003ce4fda812286eb9dc2f365e2608bfd5bad)
16 lines
239 B
Makefile
16 lines
239 B
Makefile
##
|
|
## Makefile for the VPU and M0 driver
|
|
##
|
|
DEFINES += -D REBOOT=1 \
|
|
-D BOOT_ARCH=1
|
|
|
|
EXTRA_CFLAGS += $(DEFINES)
|
|
|
|
obj-y = vpu-decoder.o
|
|
vpu-decoder-objs = vpu_b0.o \
|
|
vpu_rpc.o \
|
|
insert_startcode.o
|
|
|
|
clean:
|
|
rm -rf $(vpu-decoder-objs)
|