Opens a file for writing. Call #getPacketWriter() to begin writing your data.
(OutputStream output)
| 39 | * begin writing your data. |
| 40 | */ |
| 41 | public OggFile(OutputStream output) { |
| 42 | this.out = output; |
| 43 | this.writing = true; |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Opens a file for reading in |
nothing calls this directly
no test coverage detected