Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion VCA2/centos-7.4/ffmpeg+gst+dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN yum install -y -q libass-devel freetype-devel SDL2-devel libxcb-devel libvdpau-devel texinfo zlib-devel openssl-devel

Expand All @@ -522,7 +523,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion VCA2/centos-7.4/ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN yum install -y -q SDL2-devel libxcb-devel libvdpau-devel zlib-devel openssl-devel

Expand All @@ -283,7 +284,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion VCA2/centos-7.5/ffmpeg+gst+dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN yum install -y -q libass-devel freetype-devel SDL2-devel libxcb-devel libvdpau-devel texinfo zlib-devel openssl-devel

Expand All @@ -522,7 +523,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion VCA2/centos-7.5/ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN yum install -y -q SDL2-devel libxcb-devel libvdpau-devel zlib-devel openssl-devel

Expand All @@ -283,7 +284,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion VCA2/centos-7.6/ffmpeg+gst+dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN yum install -y -q libass-devel freetype-devel SDL2-devel libxcb-devel libvdpau-devel texinfo zlib-devel openssl-devel

Expand All @@ -522,7 +523,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion VCA2/centos-7.6/ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN yum install -y -q SDL2-devel libxcb-devel libvdpau-devel zlib-devel openssl-devel

Expand All @@ -283,7 +284,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion VCA2/ubuntu-16.04/ffmpeg+gst+dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y -q --no-install-recommends libass-dev libfreetype6-dev libvdpau-dev libsdl2-dev libxcb1-dev libxcb-shm0-dev libxcb-xfixes0-dev texinfo zlib1g-dev libssl-dev

Expand All @@ -505,7 +506,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion VCA2/ubuntu-16.04/ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y -q --no-install-recommends libvdpau-dev libsdl2-dev libxcb1-dev libxcb-shm0-dev libxcb-xfixes0-dev zlib1g-dev libssl-dev

Expand All @@ -275,7 +276,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion VCA2/ubuntu-18.04/ffmpeg+gst+dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y -q --no-install-recommends libass-dev libfreetype6-dev libvdpau-dev libsdl2-dev libxcb1-dev libxcb-shm0-dev libxcb-xfixes0-dev texinfo zlib1g-dev libssl-dev

Expand All @@ -507,7 +508,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion VCA2/ubuntu-18.04/ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y -q --no-install-recommends libvdpau-dev libsdl2-dev libxcb1-dev libxcb-shm0-dev libxcb-xfixes0-dev zlib1g-dev libssl-dev

Expand All @@ -275,7 +276,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion Xeon/centos-7.4/dldt+ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN yum install -y -q zlib-devel openssl-devel

Expand All @@ -312,7 +313,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion Xeon/centos-7.4/ffmpeg+gst+dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN yum install -y -q libass-devel freetype-devel SDL2-devel libxcb-devel texinfo zlib-devel openssl-devel

Expand All @@ -514,7 +515,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion Xeon/centos-7.4/ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN yum install -y -q zlib-devel openssl-devel

Expand All @@ -231,7 +232,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion Xeon/centos-7.5/dldt+ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN yum install -y -q zlib-devel openssl-devel

Expand All @@ -312,7 +313,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
4 changes: 3 additions & 1 deletion Xeon/centos-7.5/ffmpeg+gst+dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,7 @@ ARG FFMPEG_MA_PATCH_REPO_06=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/
ARG FFMPEG_MA_PATCH_REPO_07=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0007-Refine-features-of-IE-filters.patch
ARG FFMPEG_MA_PATCH_REPO_08=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0008-fixed-extra-comma-in-iemetadata.patch
ARG FFMPEG_MA_PATCH_REPO_09=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0009-add-source-as-option-source-url-calculate-nano-times.patch
ARG FFMPEG_MA_PATCH_REPO_10=https://raw.githubusercontent.com/VCDP/FFmpeg-patch/master/media-analytics/0010-fixed-buffer-overflow-issue-in-iemetadata.patch

RUN yum install -y -q libass-devel freetype-devel SDL2-devel libxcb-devel texinfo zlib-devel openssl-devel

Expand All @@ -513,7 +514,8 @@ RUN wget -O - ${FFMPEG_REPO} | tar xz && mv FFmpeg-${FFMPEG_VER} FFmpeg && \
wget -O - ${FFMPEG_MA_PATCH_REPO_06} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_07} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_08} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1;
wget -O - ${FFMPEG_MA_PATCH_REPO_09} | patch -p1 && \
wget -O - ${FFMPEG_MA_PATCH_REPO_10} | patch -p1;

# Patch FFmpeg source for SVT-HEVC
RUN cd /home/FFmpeg && \
Expand Down
Loading