[FFmpeg-cvslog] avcodec/g729_parser: Replace codec_id check by assert
Michael Niedermayer
git at videolan.org
Tue Aug 11 23:25:18 CEST 2015
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Tue Aug 11 22:53:36 2015 +0200| [8992029fc0a4dd9df16f8cb46cfb641c98fc9f6c] | committer: Michael Niedermayer
avcodec/g729_parser: Replace codec_id check by assert
A parser should never be called with a mismatching codec
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8992029fc0a4dd9df16f8cb46cfb641c98fc9f6c
---
libavcodec/g729_parser.c | 17 +++++------------
1 file changed, 5 insertions(+), 12 deletions(-)
diff --git a/libavcodec/g729_parser.c b/libavcodec/g729_parser.c
index 65e97a9..d13c990 100644
--- a/libavcodec/g729_parser.c
+++ b/libavcodec/g729_parser.c
@@ -25,6 +25,7 @@
* Splits packets into individual blocks.
*/
+#include "libavutil/avassert.h"
#include "parser.h"
#include "g729.h"
@@ -44,18 +45,10 @@ static int g729_parse(AVCodecParserContext *s1, AVCodecContext *avctx,
int next;
if (!s->block_size) {
- switch (avctx->codec_id) {
- case AV_CODEC_ID_G729:
- /* FIXME: replace this heuristic block_size with more precise estimate */
- s->block_size = (avctx->bit_rate < 8000) ? G729D_6K4_BLOCK_SIZE : G729_8K_BLOCK_SIZE;
- s->duration = avctx->frame_size;
- break;
- default:
- *poutbuf = buf;
- *poutbuf_size = buf_size;
- av_log(avctx, AV_LOG_ERROR, "Invalid codec_id\n");
- return buf_size;
- }
+ av_assert1(avctx->codec_id == AV_CODEC_ID_G729);
+ /* FIXME: replace this heuristic block_size with more precise estimate */
+ s->block_size = (avctx->bit_rate < 8000) ? G729D_6K4_BLOCK_SIZE : G729_8K_BLOCK_SIZE;
+ s->duration = avctx->frame_size;
}
if (!s->remaining)
More information about the ffmpeg-cvslog
mailing list