ffmpeg: fixup mpeg support in libffmpeg-mini 4735/head
authorIan Leonard <antonlacon@gmail.com>
Sat, 19 Aug 2017 17:22:26 +0000 (10:22 -0700)
committerIan Leonard <antonlacon@gmail.com>
Sat, 19 Aug 2017 18:55:18 +0000 (11:55 -0700)
The demuxers mpegps is for VOB support and mpegvideo is for raw mpeg video.
mpegps was intended to be included with libffmpeg-mini; mpegvideo was not.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
multimedia/ffmpeg/Config.in
multimedia/ffmpeg/Makefile

index 70c8ede24095d5d253b86ce178722435280b2c98..32aa0af836fec807d19f5108b17e624432723d40 100644 (file)
@@ -66,8 +66,8 @@ config FFMPEG_CUSTOM_MINIDLNA_SUPPORT
        select FFMPEG_CUSTOM_DEMUXER_matroska
        select FFMPEG_CUSTOM_DEMUXER_mov
        select FFMPEG_CUSTOM_DEMUXER_mp3
+       select FFMPEG_CUSTOM_DEMUXER_mpegps
        select FFMPEG_CUSTOM_DEMUXER_mpegts
-       select FFMPEG_CUSTOM_DEMUXER_mpegvideo
        select FFMPEG_CUSTOM_DEMUXER_ogg
        select FFMPEG_CUSTOM_PROTOCOL_file
 
@@ -383,7 +383,7 @@ config FFMPEG_CUSTOM_DEMUXER_mp3
        bool "MP3 (MPEG Audio Layer 3)"
 
 config FFMPEG_CUSTOM_DEMUXER_mpegvideo
-       bool "MPEG Video"
+       bool "MPEG Video (Raw)"
 
 config FFMPEG_CUSTOM_DEMUXER_mpegps
        bool "MPEG-2 (PS)"
index 9dda6a73ffa7b95188997418b9b84d4d3cb63b89..8a84e64d4d5ab9a66b05714892158bf0d7623bd5 100644 (file)
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=ffmpeg
 PKG_VERSION:=3.2.7
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 PKG_SOURCE_URL:=https://ffmpeg.org/releases/
@@ -144,8 +144,8 @@ FFMPEG_MINI_DEMUXERS:= \
        matroska \
        mov \
        mp3 \
+       mpegps \
        mpegts \
-       mpegvideo \
        ogg \
 
 FFMPEG_MINI_PROTOCOLS:= \