Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/AnzoDK/RPAudio into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
AnzoDK committed Nov 9, 2020
2 parents c1d2ea2 + 1f84e6e commit 991a3d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- Dev branch [![Build Status](https://travis-ci.com/AnzoDK/RPAudio.svg?branch=dev)](https://travis-ci.com/AnzoDK/RPAudio)
- Master branch [![Build Status](https://travis-ci.com/AnzoDK/RPAudio.svg?branch=master)](https://travis-ci.com/AnzoDK/RPAudio)
### What is this?
- This is a small audio library that as of now supports OggVorbis through the Vorbisfile library, wav through a simple selfmade wav reader and mp3 through the MiniMp3 lib. AudioDevice handling is done through OpenAL so it should be both Windows and Linux compatible.
- This is a small audio library that as of now supports OggVorbis through the Vorbisfile library, wav through a simple selfmade wav reader and mp3 through the [MiniMp3 lib](https://github.com/lieff/minimp3). AudioDevice handling is done through OpenAL so it should be both Windows and Linux compatible.

### Why bother?
- Good question. The core idea is to provide a simple wrapper for OpenAL with a little extra functionallity and at the same time, I intend to use it for a small and simple game engine (mainly for 2D)
Expand Down
8 changes: 4 additions & 4 deletions includes/rpaudio.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
#include <iostream>
#include <vector>
#include <fstream>
#include "oggvorbis/ogg.h"
#include "vorbisfile/vorbisfile.h"
#include "libopenal/al.h"
#include "libopenal/alc.h"
#include <ogg/ogg.h>
#include <vorbis/vorbisfile.h>
#include <AL/al.h>
#include <AL/alc.h>
namespace rp
{
enum FileType{ogg,wav,mp3};
Expand Down

0 comments on commit 991a3d8

Please sign in to comment.