Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
FelonEkonom committed Jun 27, 2024
1 parent cfc0eca commit b713d84
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ It is a part of [Membrane Multimedia Framework](https://membrane.stream).
Add the following line to your `deps` in `mix.exs`. Run `mix deps.get`.

```elixir
{:membrane_ffmpeg_swscale_plugin, "~> 0.16.0"}
{:membrane_ffmpeg_swscale_plugin, "~> 0.16.1"}
```

The precompiled builds of the [ffmpeg](https://www.ffmpeg.org) will be pulled and linked automatically. However, should there be any problems, consider installing it manually.
Expand Down
4 changes: 2 additions & 2 deletions lib/membrane_ffmpeg_swscale/converter.ex
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ defmodule Membrane.FFmpeg.SWScale.Converter do
),
{:ok, output_converter} <-
PixelFormatConverter.Native.create(
stream_format.width,
stream_format.height,
state.output_width,
state.output_height,
:I420,
output_pixel_format
) do
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Membrane.FFmpeg.SWScale.Mixfile do
use Mix.Project

@version "0.16.0"
@version "0.16.1"
@github_url "https://github.com/membraneframework/membrane_ffmpeg_swscale_plugin"

def project do
Expand Down

0 comments on commit b713d84

Please sign in to comment.