From dbe5f0172b4f123b15bc8ada82dd17b13c4bbbd7 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 28 Jun 2011 22:23:52 +0200 Subject: amrnbdec: we dont want dtx samples anymore and give the user a hint towards how to play such files. Signed-off-by: Michael Niedermayer --- libavcodec/amrnbdec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/amrnbdec.c b/libavcodec/amrnbdec.c index 55dc8b05f5..e0b6332065 100644 --- a/libavcodec/amrnbdec.c +++ b/libavcodec/amrnbdec.c @@ -936,7 +936,8 @@ static int amrnb_decode_frame(AVCodecContext *avctx, void *data, int *data_size, p->cur_frame_mode = unpack_bitstream(p, buf, buf_size); if (p->cur_frame_mode == MODE_DTX) { - av_log_missing_feature(avctx, "dtx mode", 1); + av_log_missing_feature(avctx, "dtx mode", 0); + av_log(avctx, AV_LOG_INFO, "Note: libopencore_amrnb supports dtx\n"); return -1; } -- cgit v1.2.3