From 5e0c720a4e6aba7388e97e7d75ca4d88b28788f6 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sat, 13 May 2006 23:47:29 +0000 Subject: [PATCH] fix mulaw muxing Originally committed as revision 5378 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/movenc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 350245549c..1d9f80d320 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -1624,6 +1624,7 @@ static int mov_write_packet(AVFormatContext *s, AVPacket *pkt) } } break; + case CODEC_ID_PCM_MULAW: case CODEC_ID_PCM_ALAW: samplesInChunk = size/enc->channels; break;