diff --git a/.travis.yml b/.travis.yml
index c59c5a04..c79c35eb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,4 +32,4 @@ before_install:
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then brew install yasm; fi
script: |
- travis_wait cargo build --verbose --features "build"
+ travis_wait cargo build --examples --verbose --features "build"
diff --git a/Cargo.toml b/Cargo.toml
index 008a4904..e345bad0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ffmpeg4"
-version = "0.4.0"
+version = "0.4.3"
build = "build.rs"
authors = [
@@ -97,7 +97,7 @@ version = "0.22"
optional = true
[dependencies.ffmpeg4-sys]
-version = "4.2"
-default-features = false
-# Temporary change it
+version = "4.3"
git = "https://github.com/bacek/rust-ffmpeg4-sys"
+branch = "release/4.3"
+default-features = false
diff --git a/src/software/resampling/context.rs b/src/software/resampling/context.rs
index 67a7c215..730176ec 100644
--- a/src/software/resampling/context.rs
+++ b/src/software/resampling/context.rs
@@ -112,16 +112,10 @@ impl Context {
output: &mut frame::Audio,
) -> Result