| 3099 | } |
| 3100 | |
| 3101 | LVStreamRef LVCreateBufferedStream( LVStreamRef stream, int bufSize ) |
| 3102 | { |
| 3103 | if ( stream.isNull() || bufSize < 512 ) |
| 3104 | return stream; |
| 3105 | return LVStreamRef( new LVCachedStream( stream, bufSize ) ); |
| 3106 | } |
| 3107 | |
| 3108 | lvsize_t LVPumpStream( LVStreamRef out, LVStreamRef in ) |
| 3109 | { |