From 13a0314fba9470c28fbcd82377c96d87b3d32df8 Mon Sep 17 00:00:00 2001
From: Philip Gladstone <philipjsg@users.sourceforge.net>
Date: Tue, 14 May 2002 02:36:23 +0000
Subject: [PATCH] * 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
---
 libavcodec/pcm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c
index 83982defe37..13cc9786157 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;
 }
-- 
GitLab