Permalink
Browse files

Merge pull request #27 from lesderid/opus

Add support for the Opus codec
  • Loading branch information...
2 parents aa315a6 + 0d7942e commit d1ff7963027db9218f6012f3cbecaef50e861c78 @decriptor decriptor committed Jan 9, 2016
View
@@ -22,6 +22,7 @@ Contributors:
Jeroen Asselman
John Millikin
Julien Moutte
+ Les De Ridder
Marek Habersack
Mike Gemünde
Patrick Dehne
View
@@ -136,6 +136,10 @@ public static Codec GetCodec (ByteVector packet)
if (c != null)
return c;
+ c = Codecs.Opus.FromPacket (packet);
+ if (c != null)
+ return c;
+
throw new UnsupportedFormatException ("Unknown codec.");
}
Oops, something went wrong.

0 comments on commit d1ff796

Please sign in to comment.