mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
Merge commit '26524e358147aade6e9dd18fff42d61b966bbc70'
* commit '26524e358147aade6e9dd18fff42d61b966bbc70':
rtsp: Interpret the text media type as AVMEDIA_TYPE_DATA
See: afb0e5a810
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
c6792275f4
@ -398,7 +398,7 @@ static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1,
|
||||
codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
} else if (!strcmp(st_type, "video")) {
|
||||
codec_type = AVMEDIA_TYPE_VIDEO;
|
||||
} else if (!strcmp(st_type, "application")) {
|
||||
} else if (!strcmp(st_type, "application") || !strcmp(st_type, "text")) {
|
||||
codec_type = AVMEDIA_TYPE_DATA;
|
||||
} else if (!strcmp(st_type, "text")) {
|
||||
codec_type = AVMEDIA_TYPE_SUBTITLE;
|
||||
|
Loading…
Reference in New Issue
Block a user