~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to doc/examples/Makefile

  • Committer: Henrik Rydgård
  • Date: 2014-01-03 10:44:32 UTC
  • Revision ID: git-v1:87c6c126784b1718bfa448ecf2e6a9fef781eb4e
Update our ffmpeg snapshot to a clone of the official repository.

This is because Maxim's at3plus support has been officially merged!

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
13
13
 
14
14
EXAMPLES=       decoding_encoding                  \
15
 
                demuxing                           \
 
15
                demuxing_decoding                  \
16
16
                filtering_video                    \
17
17
                filtering_audio                    \
18
18
                metadata                           \
19
19
                muxing                             \
20
20
                resampling_audio                   \
21
21
                scaling_video                      \
 
22
                transcode_aac                      \
22
23
 
23
24
OBJS=$(addsuffix .o,$(EXAMPLES))
24
25