gst-plugins-bad: Add fdk-aac as a dependency

This should get us the `fdkaacenc` element.

Closes #110703.

Signed-off-by: Sean Molenaar <1484494+SMillerDev@users.noreply.github.com>
Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
master
Arun Raghavan 2022-09-14 14:59:09 -04:00 committed by BrewTestBot
parent 43975f58d9
commit 1ab1fd6730
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
1 changed files with 3 additions and 0 deletions

View File

@ -27,6 +27,7 @@ class GstPluginsBad < Formula
depends_on "pkg-config" => :build
depends_on "faac"
depends_on "faad2"
depends_on "fdk-aac"
depends_on "gettext"
depends_on "gst-plugins-base"
depends_on "jpeg-turbo"
@ -65,5 +66,7 @@ class GstPluginsBad < Formula
gst = Formula["gstreamer"].opt_bin/"gst-inspect-1.0"
output = shell_output("#{gst} --plugin dvbsuboverlay")
assert_match version.to_s, output
output = shell_output("#{gst} --plugin fdkaac")
assert_match version.to_s, output
end
end