examples/Makefile.example: add note about missing entries

This commit is contained in:
Stefano Sabatini 2023-01-15 16:48:30 +01:00
parent 34ff361921
commit 051e1ed1e2
1 changed files with 7 additions and 1 deletions

View File

@ -11,6 +11,12 @@ CFLAGS += -Wall -g
CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS) CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS) LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
# missing the following targets, since they need special options in the FFmpeg build:
# qsv_decode
# qsv_transcode
# vaapi_encode
# vaapi_transcode
EXAMPLES=\ EXAMPLES=\
avio_http_serve_files \ avio_http_serve_files \
avio_list_dir \ avio_list_dir \
@ -30,7 +36,7 @@ EXAMPLES=\
scale_video \ scale_video \
show_metadata \ show_metadata \
transcode_aac \ transcode_aac \
transcode \ transcode
OBJS=$(addsuffix .o,$(EXAMPLES)) OBJS=$(addsuffix .o,$(EXAMPLES))