Skip to content

Commit

Permalink
given access to reposition decoder
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitriy R authored and Dmitriy R committed Jul 3, 2013
1 parent cb576dd commit bd5fd61
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="src/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
5 changes: 5 additions & 0 deletions src/java/org/kc7bfi/jflac/FLACDecoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -866,6 +866,11 @@ private void readZeroPadding() throws IOException, FrameDecodeException {
public long getSamplesDecoded() {
return samplesDecoded;
}

public void setSamplesDecoded(long samples) {
samplesDecoded = samples;
}

/**
* @return Returns the number of bad frames decoded.
*/
Expand Down

0 comments on commit bd5fd61

Please sign in to comment.