Browse Source

avformat/pcmdec: mime-type should be case insensitive (audio/L16)

tags/n4.2
Igor Derzhavin Carl Eugen Hoyos 7 years ago
parent
commit
a80530a627
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/pcmdec.c

+ 1
- 1
libavformat/pcmdec.c View File

@@ -52,7 +52,7 @@ static int pcm_read_header(AVFormatContext *s)
if (mime_type && s->iformat->mime_type) {
int rate = 0, channels = 0;
size_t len = strlen(s->iformat->mime_type);
if (!strncmp(s->iformat->mime_type, mime_type, len)) {
if (!av_strncasecmp(s->iformat->mime_type, mime_type, len)) {
uint8_t *options = mime_type + len;
len = strlen(mime_type);
while (options < mime_type + len) {


Loading…
Cancel
Save