Mercurial > libavcodec.hg
changeset 381:0d6178e4d503 libavcodec
* Mea culpa: it seems that I broke encoding to 8-bit pcm files. This fixes it.
author | philipjsg |
---|---|
date | Tue, 14 May 2002 02:36:23 +0000 |
parents | 975aa6fe83b8 |
children | b1663b0ffbbc |
files | pcm.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/pcm.c Sun May 12 16:06:45 2002 +0000 +++ b/pcm.c Tue May 14 02:36:23 2002 +0000 @@ -238,7 +238,7 @@ 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; }