Commit dbe5f017 authored by Michael Niedermayer's avatar Michael Niedermayer

amrnbdec: we dont want dtx samples anymore and give the user a hint towards how to play such files.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e78f9681
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment