diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c index 83982defe3..13cc978615 100644 --- a/libavcodec/pcm.c +++ b/libavcodec/pcm.c @@ -238,7 +238,7 @@ static int encode_frame(AVCodecContext *avctx, return -1; } avctx->key_frame = 1; - avctx->frame_size = (dst - frame) / (sample_size * avctx->channels); + //avctx->frame_size = (dst - frame) / (sample_size * avctx->channels); return dst - frame; }