OSDN Git Service

* Mea culpa: it seems that I broke encoding to 8-bit pcm files. This fixes it.
authorPhilip Gladstone <philipjsg@users.sourceforge.net>
Tue, 14 May 2002 02:36:23 +0000 (02:36 +0000)
committerPhilip Gladstone <philipjsg@users.sourceforge.net>
Tue, 14 May 2002 02:36:23 +0000 (02:36 +0000)
Originally committed as revision 493 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/pcm.c

index 83982de..13cc978 100644 (file)
@@ -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;
 }