Commit a80530a6 authored by Igor Derzhavin's avatar Igor Derzhavin Committed by Carl Eugen Hoyos

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

parent 24386b17
...@@ -52,7 +52,7 @@ static int pcm_read_header(AVFormatContext *s) ...@@ -52,7 +52,7 @@ static int pcm_read_header(AVFormatContext *s)
if (mime_type && s->iformat->mime_type) { if (mime_type && s->iformat->mime_type) {
int rate = 0, channels = 0; int rate = 0, channels = 0;
size_t len = strlen(s->iformat->mime_type); 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; uint8_t *options = mime_type + len;
len = strlen(mime_type); len = strlen(mime_type);
while (options < mime_type + len) { while (options < mime_type + len) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment