Skip to content

Commit

Permalink
Use OMX in OmxDecoderRenderer
Browse files Browse the repository at this point in the history
  • Loading branch information
irtimmer committed Sep 21, 2014
1 parent 6514969 commit 6d68ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/limelight/binding/video/OmxDecoderRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void decodeUnit(DecodeUnit decodeUnit) {
for (int i=0;i<units.size();i++) {
ByteBufferDescriptor bbd = units.get(i);
if (ok) {
int ret = ImxDecoder.decode(bbd.data, bbd.offset, bbd.length, i == (units.size()-1));
int ret = OmxDecoder.decode(bbd.data, bbd.offset, bbd.length, i == (units.size()-1));
if (ret != 0) {
LimeLog.severe("Error code during decode: " + ret);
ok = false;
Expand Down

0 comments on commit 6d68ab7

Please sign in to comment.