Skip to content

Commit

Permalink
Big oops
Browse files Browse the repository at this point in the history
  • Loading branch information
kixelated committed Nov 23, 2024
1 parent 4dedc8f commit 28b9723
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Luke Curley"]
repository = "https://github.com/kixelated/web-codecs-rs"
license = "MIT OR Apache-2.0"

version = "0.3.0"
version = "0.3.1"
edition = "2021"

categories = ["wasm", "multimedia", "web-programming", "api-bindings"]
Expand Down
2 changes: 1 addition & 1 deletion src/video/decoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use wasm_bindgen::prelude::*;
use super::VideoColorSpaceConfig;
use crate::{EncodedFrame, Error, VideoFrame};

pub fn decoder() -> (VideoDecoder, VideoDecoded) {
pub fn video_decoder() -> (VideoDecoder, VideoDecoded) {
let (frames_tx, frames_rx) = mpsc::unbounded_channel();
let (closed_tx, closed_rx) = watch::channel(Ok(()));
let closed_tx2 = closed_tx.clone();
Expand Down

0 comments on commit 28b9723

Please sign in to comment.