Changeset 1367

Show
Ignore:
Timestamp:
04/25/08 11:50:39 (7 months ago)
Author:
stephen_booth
Message:

Recognize .oga as a valid extension for ogg audio files
Fixes #12

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Decoders/Decoder.m

    r1297 r1367  
    5050 
    5151        // Determine which type of converter to use and create it 
    52         if([extension isEqualToString:@"ogg"]) { 
     52        if([extension isEqualToString:@"ogg"] || [extension isEqualToString:@"oga"]) { 
    5353                // Determine the content type of the ogg stream 
    5454                OggStreamType type = oggStreamType(filename);