| 120 | } |
| 121 | |
| 122 | OggDecoder* OggInputStream::getDecoder( const String& name ) const |
| 123 | { |
| 124 | for( U32 i = 0; i < mDecoders.size(); ++ i ) |
| 125 | if( name.equal( mDecoders[ i ]->getName(), String::NoCase ) ) |
| 126 | return mDecoders[ i ]; |
| 127 | |
| 128 | return NULL; |
| 129 | } |
| 130 | |
| 131 | bool OggInputStream::isAtEnd() |
| 132 | { |
no test coverage detected