mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avformat/tedcaptionsdec: add () to protect the argument of ERR_CODE()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
61eb602d27
commit
527f1d22a1
@ -51,7 +51,7 @@ static const AVClass tedcaptions_demuxer_class = {
|
||||
|
||||
#define HEX_DIGIT_TEST(c) (BETWEEN(c, '0', '9') || BETWEEN((c) | 32, 'a', 'z'))
|
||||
#define HEX_DIGIT_VAL(c) ((c) <= '9' ? (c) - '0' : ((c) | 32) - 'a' + 10)
|
||||
#define ERR_CODE(c) (c < 0 ? c : AVERROR_INVALIDDATA)
|
||||
#define ERR_CODE(c) ((c) < 0 ? (c) : AVERROR_INVALIDDATA)
|
||||
|
||||
static void av_bprint_utf8(AVBPrint *bp, unsigned c)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user