Search found 2 matches

by The_Fearless
Tue Jul 31, 2007 1:18 am
Forum: PSP Development
Topic: Problem with linking FFMPEG's libraries
Replies: 2
Views: 2148

mmm... I'm using this makefile to build my program: TARGET = main OBJS = main.o INCDIR = CFLAGS = -O2 -G0 -Wall CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti ASFLAGS = $(CFLAGS) LIBDIR = LIBS = -lavcodec -lavformat -lavutil -lz -lavutil -lm PSPSDK=$(shell psp...
by The_Fearless
Tue Jul 31, 2007 12:45 am
Forum: PSP Development
Topic: Problem with linking FFMPEG's libraries
Replies: 2
Views: 2148

Problem with linking FFMPEG's libraries

Hi, I'm trying to use FFMPEG in a program, but i've got a problem... I can compile the 4 libraries, and i want to use them in this program (that's just the first version, it'll be a video player): #include <pspkernel.h> #include <pspdebug.h> #include <pspctrl.h> #include <stdlib.h> #include <string....