mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/gsm_parser: Replace codec_id check by assert
A parser should never be called with a mismatching codec Found-by: Ganesh Ajjanagadde <gajjanag@mit.edu> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
107e54c5bf
commit
542562e5ab
@ -25,6 +25,7 @@
|
||||
* Splits packets into individual blocks.
|
||||
*/
|
||||
|
||||
#include "libavutil/avassert.h"
|
||||
#include "parser.h"
|
||||
#include "gsm.h"
|
||||
|
||||
@ -55,10 +56,7 @@ static int gsm_parse(AVCodecParserContext *s1, AVCodecContext *avctx,
|
||||
s->duration = GSM_FRAME_SIZE * 2;
|
||||
break;
|
||||
default:
|
||||
*poutbuf = buf;
|
||||
*poutbuf_size = buf_size;
|
||||
av_log(avctx, AV_LOG_ERROR, "Invalid codec_id\n");
|
||||
return buf_size;
|
||||
av_assert0(0);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user