Skip to content

Commit

Permalink
Merge branch 'ffmpeg-gl-transition-ffmpeg/4.1' into ffmpeg-gl-transit…
Browse files Browse the repository at this point in the history
…ion-ffmpeg/4.2
  • Loading branch information
RPing committed Aug 28, 2019
2 parents 75384bc + 4e65fd6 commit f75dc29
Show file tree
Hide file tree
Showing 6 changed files with 568 additions and 10 deletions.
10 changes: 1 addition & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
language: c
sudo: false
os:
- linux
- osx
addons:
apt:
packages:
- nasm
- diffutils
compiler:
- clang
- gcc
matrix:
exclude:
- os: osx
compiler: gcc
cache:
directories:
- ffmpeg-samples
Expand All @@ -24,7 +16,7 @@ install:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install nasm; fi
script:
- mkdir -p ffmpeg-samples
- ./configure --samples=ffmpeg-samples --cc=$CC
- ./configure --samples=ffmpeg-samples --cc=$CC --enable-gpl --enable-opengl --extra-libs='-lGLEW -lglfw' --enable-filter=gltransition --disable-shared --enable-static
- make -j 8
- make fate-rsync
- make check -j 8
2 changes: 1 addition & 1 deletion libavcodec/ilbcdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ static void construct_vector (
for (j = 0; j < veclen; j++) {
a32 = SPL_MUL_16_16(*gainPtr++, cbvec0[j]);
a32 += SPL_MUL_16_16(*gainPtr++, cbvec1[j]);
a32 += SPL_MUL_16_16(*gainPtr, cbvec2[j]);
a32 += (unsigned)SPL_MUL_16_16(*gainPtr, cbvec2[j]);
gainPtr -= 2;
decvector[j] = (int)(a32 + 8192) >> 14;
}
Expand Down
1 change: 1 addition & 0 deletions libavfilter/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,7 @@ OBJS-$(CONFIG_YADIF_CUDA_FILTER) += vf_yadif_cuda.o vf_yadif_cuda.pt
OBJS-$(CONFIG_ZMQ_FILTER) += f_zmq.o
OBJS-$(CONFIG_ZOOMPAN_FILTER) += vf_zoompan.o
OBJS-$(CONFIG_ZSCALE_FILTER) += vf_zscale.o
OBJS-$(CONFIG_GLTRANSITION_FILTER) += vf_gltransition.o

OBJS-$(CONFIG_ALLRGB_FILTER) += vsrc_testsrc.o
OBJS-$(CONFIG_ALLYUV_FILTER) += vsrc_testsrc.o
Expand Down
1 change: 1 addition & 0 deletions libavfilter/allfilters.c
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,7 @@ extern AVFilter ff_vf_yadif_cuda;
extern AVFilter ff_vf_zmq;
extern AVFilter ff_vf_zoompan;
extern AVFilter ff_vf_zscale;
extern AVFilter ff_vf_gltransition;

extern AVFilter ff_vsrc_allrgb;
extern AVFilter ff_vsrc_allyuv;
Expand Down
Loading

0 comments on commit f75dc29

Please sign in to comment.