|
@@ -289,7 +289,7 @@ endef
|
289
|
289
|
define Package/libffmpeg-custom
|
290
|
290
|
$(call Package/libffmpeg/Default)
|
291
|
291
|
TITLE+= (custom)
|
292
|
|
- DEPENDS+= @DEVEL +libspeex
|
|
292
|
+ DEPENDS+= @DEVEL +libopus +libspeex
|
293
|
293
|
VARIANT:=custom
|
294
|
294
|
MENU:=1
|
295
|
295
|
endef
|
|
@@ -308,7 +308,7 @@ endef
|
308
|
308
|
define Package/libffmpeg-audio-dec
|
309
|
309
|
$(call Package/libffmpeg/Default)
|
310
|
310
|
TITLE+= (audio)
|
311
|
|
- DEPENDS+= @DEVEL +libspeex
|
|
311
|
+ DEPENDS+= @DEVEL +libopus +libspeex
|
312
|
312
|
VARIANT:=audio-dec
|
313
|
313
|
endef
|
314
|
314
|
|
|
@@ -428,6 +428,12 @@ ifeq ($(CONFIG_FFMPEG_CUSTOM_SELECT_adpcm),y)
|
428
|
428
|
|
429
|
429
|
endif
|
430
|
430
|
|
|
431
|
+ifeq ($(CONFIG_FFMPEG_CUSTOM_SELECT_libopus),y)
|
|
432
|
+ FFMPEG_CONFIGURE+= \
|
|
433
|
+ --enable-libopus --enable-decoder=libopus \
|
|
434
|
+
|
|
435
|
+endif
|
|
436
|
+
|
431
|
437
|
ifeq ($(CONFIG_FFMPEG_CUSTOM_SELECT_speex),y)
|
432
|
438
|
FFMPEG_CONFIGURE+= \
|
433
|
439
|
--enable-libspeex --enable-decoder=libspeex \
|
|
@@ -454,6 +460,7 @@ ifeq ($(BUILD_VARIANT),audio-dec)
|
454
|
460
|
$(call FFMPEG_ENABLE,demuxer,$(FFMPEG_AUDIO_DEMUXERS)) \
|
455
|
461
|
$(call FFMPEG_ENABLE,parser,$(FFMPEG_AUDIO_PARSERS)) \
|
456
|
462
|
$(call FFMPEG_ENABLE,protocol,$(FFMPEG_AUDIO_PROTOCOLS)) \
|
|
463
|
+ --enable-libopus --enable-decoder=libopus \
|
457
|
464
|
--enable-libspeex --enable-decoder=libspeex \
|
458
|
465
|
--disable-decoder=pcm_bluray,pcm_dvd \
|
459
|
466
|
|