Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Gladstone <philipjsg@users.sourceforge.net>2002-05-14 06:36:23 +0400
committerPhilip Gladstone <philipjsg@users.sourceforge.net>2002-05-14 06:36:23 +0400
commit13a0314fba9470c28fbcd82377c96d87b3d32df8 (patch)
treecd06af438c6691eaabc05b55915e75e0ea6e81bd
parent0b97443a3f2e8b1ccfd365b1eca3fb9ada94f09a (diff)
* Mea culpa: it seems that I broke encoding to 8-bit pcm files. This fixes it.
Originally committed as revision 493 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/pcm.c2
1 files changed, 1 insertions, 1 deletions
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;
}