According to the RTP packetization documentation, and the maximum values
listed in AST_FORMAT_LIST, we should support values > that the signed
char array that ast_codec_pref makes available to store the value. All
places in the code treat the framing field as though it were an int
array instaead of a char array anyway, so this just fixes the type of
the array.
(closes issue ASTERISK-18876)
Review: https://reviewboard.asterisk.org/r/1639/
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@348833
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
struct ast_codec_pref {
char order[sizeof(format_t) * 8];
- char framing[sizeof(format_t) * 8];
+ int framing[64]; /*!< Magic numbers are bad, but this just needs to be bigger than ARRAY_LEN(AST_FORMAT_LIST) */
};
/*!