Skip to content

Commit

Permalink
chore: unify import style
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexTMjugador committed Dec 19, 2023
1 parent bd2e67a commit a6438c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/build/src/pipelines/audio/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use anyhow::Context;
use optivorbis::Remuxer;
use std::io::Cursor;
use tracing::{info_span, Instrument};
use vorbis_rs::VorbisEncoderBuilder;

use super::{
context::PipelineCtx,
Expand Down Expand Up @@ -114,7 +113,7 @@ async fn symphonia_convert(ext: &str, input: Vec<u8>) -> anyhow::Result<Vec<u8>>
probe::Hint,
};

use vorbis_rs::{VorbisBitrateManagementStrategy, VorbisEncoder};
use vorbis_rs::{VorbisBitrateManagementStrategy, VorbisEncoderBuilder};

// this symphonia decoding code is largely based on symphonia's examples:
// https://github.com/pdeljanov/Symphonia/blob/master/symphonia/examples
Expand Down

0 comments on commit a6438c7

Please sign in to comment.