Skip to content

Commit f24ab49

Browse files
committed
Merge remote-tracking branch 'upstream/master' into fancybits-upstream-merge-mar2020
2 parents 25284ef + 10c162f commit f24ab49

27 files changed

Lines changed: 30609 additions & 30361 deletions

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,8 @@ configure
2424
depcomp
2525
install-sh
2626
missing
27+
comskip.c.save-failed
28+
29+
# Eclipse IDE
30+
.cproject
31+
.project

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: c
22
os: linux
33
before_script:
4-
- sudo add-apt-repository -y ppa:jonathonf/ffmpeg-3
4+
- sudo add-apt-repository -y ppa:jonathonf/ffmpeg-4
55
- sudo apt-get update -q
66
- sudo apt-get install -y --allow-unauthenticated libargtable2-dev libsdl1.2-dev ffmpeg libavcodec-dev libavformat-dev
77
script:
@@ -12,5 +12,5 @@ after_script:
1212
- wget https://s3.amazonaws.com/tmm1/ten-copy.mkv
1313
- ./comskip ten-copy.mkv
1414
- cat ten-copy.txt
15-
- grep "9359 17920" ten-copy.txt
15+
- grep "9361 17922" ten-copy.txt
1616
- test -x comskip-gui

DDRAW.H

Lines changed: 3878 additions & 3878 deletions
Large diffs are not rendered by default.

Dockerfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
FROM alpine:3.11
2+
3+
WORKDIR /tmp
4+
5+
RUN apk --no-cache add python ffmpeg tzdata bash \
6+
&& apk --no-cache add --virtual=builddeps autoconf automake libtool git ffmpeg-dev wget tar build-base \
7+
&& wget http://prdownloads.sourceforge.net/argtable/argtable2-13.tar.gz \
8+
&& tar xzf argtable2-13.tar.gz \
9+
&& cd argtable2-13/ && ./configure && make && make install \
10+
&& cd /tmp && git clone git://github.com/erikkaashoek/Comskip.git \
11+
&& cd Comskip && ./autogen.sh && ./configure && make && make install \
12+
&& apk del builddeps \
13+
&& rm -rf /var/cache/apk/* /tmp/* /tmp/.[!.]*
14+
15+
ENTRYPOINT [ "comskip"]
16+
CMD [comskip]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ $ make
4242
There are many ways to setup a build system on Windows. These instructions use MSYS2 and MinGW-w64, but other environments should also work:
4343

4444
- Install MSYS2 by following the instructions at https://msys2.github.io/
45-
- Install the essential build tools: `pacman -S mingw-w64-i686-gcc autoconf automake libtool pkgconfig yasm`
45+
- Install the essential build tools: `pacman -S mingw-w64-i686-gcc gcc make autoconf automake libtool pkgconfig yasm`
4646
- Close the MSYS2 shell and launch a MinGW-w64 shell; this is the shell you'll use for all builds
4747
- Build FFmpeg (http://ffmpeg.org/), argtable2 (http://argtable.sourceforge.net/) and SDL2 from source and install them to /usr/local
4848
- Add /usr/local/lib/pkg-config to PKG_CONFIG_PATH (e.g., add `export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig` to ~/.bashrc, then type `source ~/.bashrc`)

appveyor.yml

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ test_script:
3030
- SET PATH=C:\projects\comskip\ffmpeg-3.3.1-win64-shared/bin;%PATH%
3131
- comskip ten-copy.mkv
3232
- cat ten-copy.txt
33-
- grep "9359\s17920" ten-copy.txt
33+
- grep "9361\s17922" ten-copy.txt

0 commit comments

Comments
 (0)