rtp: Fix case typo in H263+ mime.

http://tools.ietf.org/html/rfc3555#section-4.2.6 says the canonical
mime subtype is "H263-1998", not "h263-1998". Original code was added
in r183101 on 2009-03-19 02:26:50 +0100.

This fixes issues with Polycom phones.

ASTERISK-23665 #close
ASTERISK-23665 #comment Patch r3529.patch uploaded by Guillaume Maudoux, backported by me.
Review: https://reviewboard.asterisk.org/r/3529/


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@413787 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Walter Doekes
2014-05-13 13:28:05 +00:00
parent 3dace58a49
commit 228d5c9052

View File

@@ -124,7 +124,7 @@ static const struct ast_rtp_mime_type {
{{1, AST_FORMAT_PNG}, "video", "PNG", 90000},
{{1, AST_FORMAT_H261}, "video", "H261", 90000},
{{1, AST_FORMAT_H263}, "video", "H263", 90000},
{{1, AST_FORMAT_H263_PLUS}, "video", "h263-1998", 90000},
{{1, AST_FORMAT_H263_PLUS}, "video", "H263-1998", 90000},
{{1, AST_FORMAT_H264}, "video", "H264", 90000},
{{1, AST_FORMAT_MP4_VIDEO}, "video", "MP4V-ES", 90000},
{{1, AST_FORMAT_T140RED}, "text", "RED", 1000},