Skip to content
This repository has been archived by the owner on Feb 9, 2018. It is now read-only.

Commit

Permalink
Removing skip() override introduced in 562fdb8.
Browse files Browse the repository at this point in the history
The method interfered with the correctness of isCompatible() and its
backwards compatibility with ps3compatible().

On top of that the comment seemed to want to force transcoding, where
in reality returning true ended up forcing streaming. To remove this
paradox and to restore control to each individual renderer
configuration the method has been removed, bringing the code in line
with all other formats.
  • Loading branch information
Raptor399 committed Jan 15, 2012
1 parent 62f04f7 commit 7675911
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/main/java/net/pms/formats/RAW.java
Expand Up @@ -102,13 +102,4 @@ public void parse(DLNAMediaInfo media, InputFile file, int type, RendererConfigu
e.printStackTrace();
}
}

/*
* Force this format to be transcoded (RAW support broken in rev 409 and earlier)
* @see net.pms.formats.Format#skip(java.lang.String, java.lang.String)
*/
@Override
public boolean skip(String extensions, String anotherSetOfExtensions) {
return true;
}
}

0 comments on commit 7675911

Please sign in to comment.