mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-02 13:02:13 +00:00
Interpret valueless attributes in AMR ftmp lines as being 1
Originally committed as revision 22631 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6e69f6c47f
commit
9dff2308ba
@ -142,6 +142,15 @@ static int amr_parse_sdp_line(AVFormatContext *s, int st_index,
|
||||
while (*p && *p == ' ') p++; /* strip trailing spaces */
|
||||
|
||||
while (ff_rtsp_next_attr_and_value(&p, attr, sizeof(attr), value, sizeof(value))) {
|
||||
/* Some AMR SDP configurations contain "octet-align", without
|
||||
* the trailing =1. Therefore, if the value is empty,
|
||||
* interpret it as "1".
|
||||
*/
|
||||
if (!strcmp(value, "")) {
|
||||
av_log(s, AV_LOG_WARNING, "AMR fmtp attribute %s had "
|
||||
"nonstandard empty value\n", attr);
|
||||
strcpy(value, "1");
|
||||
}
|
||||
if (!strcmp(attr, "octet-align"))
|
||||
octet_align = atoi(value);
|
||||
else if (!strcmp(attr, "crc"))
|
||||
|
Loading…
Reference in New Issue
Block a user