diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2019-12-16 01:04:04 +0100 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2019-12-23 14:05:30 +0800 |
commit | 728c44b8613fdd2f75391b6575df4e9d47c24c63 (patch) | |
tree | 9f5beaa115c6e8a1609826958bec0c4d43865517 /libavformat/hlsenc.c | |
parent | 7d6637bcc4bb6d1d554e910a4afd6cf6711f8862 (diff) | |
download | ffmpeg-728c44b8613fdd2f75391b6575df4e9d47c24c63.tar.gz |
avformat/hlsenc: Fix typo in error message
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Reviewed-by: Steven Liu <lq@onvideo.cn>
Diffstat (limited to 'libavformat/hlsenc.c')
-rw-r--r-- | libavformat/hlsenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 2b87070d62..965c05c560 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -2079,7 +2079,7 @@ static int parse_cc_stream_mapstring(AVFormatContext *s) return AVERROR(EINVAL); } } else { - av_log(s, AV_LOG_ERROR, "Invalid instream ID %s, supported are CCn or SERIVICEn\n", + av_log(s, AV_LOG_ERROR, "Invalid instream ID %s, supported are CCn or SERVICEn\n", ccs->instreamid); return AVERROR(EINVAL); } |