X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsonitus%2Fdata%2Ffilter%2FLameMp3Encoder.java;h=77df8aa06f157c9a9b0a7238e95978ca7ebdc303;hb=c548332c486d812bfce23a9121219bf86ecc5588;hp=85675ce705e3e6c1b8afc370d9158c1674b79c78;hpb=e3a09df0969d06b9794ec2850d47a5522640eb26;p=sonitus.git diff --git a/src/main/java/net/pterodactylus/sonitus/data/filter/LameMp3Encoder.java b/src/main/java/net/pterodactylus/sonitus/data/filter/LameMp3Encoder.java index 85675ce..77df8aa 100644 --- a/src/main/java/net/pterodactylus/sonitus/data/filter/LameMp3Encoder.java +++ b/src/main/java/net/pterodactylus/sonitus/data/filter/LameMp3Encoder.java @@ -23,6 +23,7 @@ import net.pterodactylus.sonitus.data.Metadata; import com.google.common.base.Optional; import com.google.common.collect.ImmutableList; +import com.google.common.eventbus.EventBus; /** * {@link ExternalMp3Encoder} implementation that uses LAME to encode MP3s. @@ -66,30 +67,36 @@ public class LameMp3Encoder extends ExternalMp3Encoder { /** * Creates a new LAME MP3 encoder. * + * @param eventBus + * The event bus * @param binary * The location of the binary * @param preset * The preset to use */ - public LameMp3Encoder(String binary, Preset preset) { - this(binary, preset, -1); + public LameMp3Encoder(EventBus eventBus, String binary, Preset preset) { + this(eventBus, binary, preset, -1); } /** * Creates a new LAME MP3 encoder. * + * @param eventBus + * The event bus * @param binary * The location of the binary * @param bitrate * The bitrate to encode to (in kbps) */ - public LameMp3Encoder(String binary, int bitrate) { - this(binary, null, bitrate); + public LameMp3Encoder(EventBus eventBus, String binary, int bitrate) { + this(eventBus, binary, null, bitrate); } /** * Creates a new LAME MP3 encoder. * + * @param eventBus + * The event bus * @param binary * The location of the binary * @param preset @@ -97,7 +104,8 @@ public class LameMp3Encoder extends ExternalMp3Encoder { * @param bitrate * The bitrate to encode to (in kbps) */ - private LameMp3Encoder(String binary, Preset preset, int bitrate) { + private LameMp3Encoder(EventBus eventBus, String binary, Preset preset, int bitrate) { + super(eventBus, "LAME Encoder"); this.binary = binary; this.preset = Optional.fromNullable(preset); this.bitrate = (bitrate < 0) ? Optional.absent() : Optional.of(bitrate);