Add a parameter to disable openH264 decoder while buildind
This commit is contained in:
parent
6551e39421
commit
af21714721
3 changed files with 6 additions and 2 deletions
3
Makefile
3
Makefile
|
@ -44,6 +44,7 @@ endif
|
|||
NDK_DEBUG=0
|
||||
BUILD_VIDEO=1
|
||||
BUILD_OPENH264=1
|
||||
ENABLE_OPENH264_DECODER=1
|
||||
BUILD_UPNP=1
|
||||
BUILD_AMRNB=full # 0, light or full
|
||||
BUILD_AMRWB=1
|
||||
|
@ -399,7 +400,7 @@ prepare-sources: build-ffmpeg build-x264 build-openh264 prepare-ilbc build-vpx p
|
|||
|
||||
GENERATE_OPTIONS = NDK_DEBUG=$(NDK_DEBUG) BUILD_FOR_X86=$(BUILD_FOR_X86) \
|
||||
BUILD_AMRNB=$(BUILD_AMRNB) BUILD_AMRWB=$(BUILD_AMRWB) BUILD_SILK=$(BUILD_SILK) BUILD_G729=$(BUILD_G729) BUILD_OPUS=$(BUILD_OPUS) \
|
||||
BUILD_VIDEO=$(BUILD_VIDEO) BUILD_X264=$(BUILD_X264) BUILD_OPENH264=$(BUILD_OPENH264) BUILD_MATROSKA=$(BUILD_MATROSKA) \
|
||||
BUILD_VIDEO=$(BUILD_VIDEO) BUILD_X264=$(BUILD_X264) BUILD_OPENH264=$(BUILD_OPENH264) ENABLE_OPENH264_DECODER=$(ENABLE_OPENH264_DECODER) BUILD_MATROSKA=$(BUILD_MATROSKA) \
|
||||
BUILD_UPNP=$(BUILD_UPNP) BUILD_ZRTP=$(BUILD_ZRTP) BUILD_WEBRTC_AECM=$(BUILD_WEBRTC_AECM) BUILD_WEBRTC_ISAC=$(BUILD_WEBRTC_ISAC)
|
||||
|
||||
|
||||
|
|
3
README
3
README
|
@ -65,6 +65,9 @@ BUILD_VIDEO
|
|||
BUILD_OPENH264
|
||||
values: 0 (don't build openH264) or 1 (build openH264), default value: 1
|
||||
|
||||
ENABLE_OPENH264_DECODER
|
||||
values: 0 (disable openh264 decoder) or 1 (enable openh264 decoder), default value: 1
|
||||
|
||||
BUILD_X264
|
||||
values: 0 (don't build x264) or 1 (build x264), default value: 0
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 9c177be0d2ca08bf0c09fd78c2990f793731f7aa
|
||||
Subproject commit 5ba043abf7c68fc2d3a36b3cfdb19dc19fd498c7
|
Loading…
Reference in a new issue