Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Capitalized some lowercase extensions, to match all the others.
  • Loading branch information
icculus committed Jan 31, 2009
1 parent 1eab5f1 commit 49531d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion decoders/quicktime.c
Expand Up @@ -76,7 +76,7 @@ static int QT_seek(Sound_Sample *sample, Uint32 ms);

#define QT_MAX_INPUT_BUFFER (32*1024) /* Maximum size of internal buffer (internal->buffer_size) */

static const char *extensions_quicktime[] = { "mov", NULL };
static const char *extensions_quicktime[] = { "MOV", NULL };
const Sound_DecoderFunctions __Sound_DecoderFunctions_QuickTime =
{
{
Expand Down
2 changes: 1 addition & 1 deletion decoders/speex.c
Expand Up @@ -67,7 +67,7 @@ static Uint32 SPEEX_read(Sound_Sample *sample);
static int SPEEX_rewind(Sound_Sample *sample);
static int SPEEX_seek(Sound_Sample *sample, Uint32 ms);

static const char *extensions_speex[] = { "spx", NULL };
static const char *extensions_speex[] = { "SPX", NULL };
const Sound_DecoderFunctions __Sound_DecoderFunctions_SPEEX =
{
{
Expand Down

0 comments on commit 49531d1

Please sign in to comment.