Commit 00bfd439 authored by philipjsg's avatar philipjsg

* Mea culpa: it seems that I broke encoding to 8-bit pcm files. This fixes it.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@493 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a463d148
......@@ -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;
}
......
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