mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/format: Remove parameters from mime type before comparission for probing
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
b8e4df46ab
commit
9b10ae5727
|
@ -261,8 +261,13 @@ int av_probe_input_buffer2(AVIOContext *pb, AVInputFormat **fmt,
|
|||
|
||||
if (pb->av_class) {
|
||||
uint8_t *mime_type_opt = NULL;
|
||||
char* semi;
|
||||
av_opt_get(pb, "mime_type", AV_OPT_SEARCH_CHILDREN, &mime_type_opt);
|
||||
pd.mime_type = (const char *)mime_type_opt;
|
||||
semi = pd.mime_type?strchr(pd.mime_type, ';'):NULL;
|
||||
if (semi) {
|
||||
*semi='\0';
|
||||
}
|
||||
}
|
||||
#if 0
|
||||
if (!*fmt && pb->av_class && av_opt_get(pb, "mime_type", AV_OPT_SEARCH_CHILDREN, &mime_type) >= 0 && mime_type) {
|
||||
|
|
Loading…
Reference in New Issue