Skip to content

Commit

Permalink
renamed Sdl to SDL
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-hek committed May 29, 2019
1 parent 8b18ea7 commit dba1611
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Membrane Multimedia Framework: Sdl element
# Membrane Multimedia Framework: SDL element

[![Hex.pm](https://img.shields.io/hexpm/v/membrane_element_sdl.svg)](https://hex.pm/packages/membrane_element_sdl)
[![API Docs](https://img.shields.io/badge/api-docs-yellow.svg?style=flat)](https://hexdocs.pm/membrane_element_sdl/)
[![CircleCI](https://circleci.com/gh/membraneframework/membrane-element-sdl.svg?style=svg)](https://circleci.com/gh/membraneframework/membrane-element-sdl)

This package provides an [Sdl](https://www.libsdl.org/)-based video player.
This package provides an [SDL](https://www.libsdl.org/)-based video player.

It is part of [Membrane Multimedia Framework](https://membraneframework.org).

Expand All @@ -28,7 +28,7 @@ The pipeline below displays a sample h264 video from the net (with use of [Hackn

```elixir
defmodule My.Pipeline do
alias Membrane.Element.{FFmpeg.H264, Hackney, Sdl}
alias Membrane.Element.{FFmpeg.H264, Hackney, SDL}
alias Membrane.Pipeline.Spec
use Membrane.Pipeline

Expand All @@ -40,7 +40,7 @@ defmodule My.Pipeline do
},
parser: %H264.Parser{framerate: {30, 1}},
decoder: H264.Decoder,
sdl: Sdl.Sink
sdl: SDL.Sink
]

links = %{
Expand Down
2 changes: 1 addition & 1 deletion bundlex.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defmodule Membrane.Element.Sdl.BundlexProject do
defmodule Membrane.Element.SDL.BundlexProject do
use Bundlex.Project

def project do
Expand Down
2 changes: 1 addition & 1 deletion lib/membrane_element_sdl.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defmodule Membrane.Element.Sdl do
defmodule Membrane.Element.SDL do
@moduledoc false
use Application

Expand Down
4 changes: 2 additions & 2 deletions lib/membrane_element_sdl/sink.ex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
defmodule Membrane.Element.Sdl.Sink do
defmodule Membrane.Element.SDL.Sink do
@moduledoc """
This module provides an [Sdl](https://www.libsdl.org/)-based video player sink.
This module provides an [SDL](https://www.libsdl.org/)-based video player sink.
"""

alias Membrane.{Buffer, Time}
Expand Down
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defmodule Membrane.Element.Sdl.MixProject do
defmodule Membrane.Element.SDL.MixProject do
use Mix.Project

@version "0.1.0"
Expand All @@ -12,9 +12,9 @@ defmodule Membrane.Element.Sdl.MixProject do
compilers: [:unifex, :bundlex] ++ Mix.compilers(),
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
description: "Membrane Multimedia Framework (Sdl Element)",
description: "Membrane Multimedia Framework (SDL Element)",
package: package(),
name: "Membrane Element: Sdl",
name: "Membrane Element: SDL",
source_url: @github_url,
docs: docs(),
homepage_url: "https://membraneframework.org",
Expand Down

0 comments on commit dba1611

Please sign in to comment.