[SCM] libav/experimental: fix mace duration

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:15:36 UTC 2013


The following commit has been merged in the experimental branch:
commit 4649fa90529c27520f2e9b7990dd11b47adc4465
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date:   Mon Feb 25 12:59:42 2008 +0000

    fix mace duration
    
    Originally committed as revision 12209 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/aiff.c b/libavformat/aiff.c
index 1685a30..91be89b 100644
--- a/libavformat/aiff.c
+++ b/libavformat/aiff.c
@@ -130,6 +130,10 @@ static unsigned int get_aiff_header(ByteIOContext *pb, AVCodecContext *codec,
             codec->block_align = 34*codec->channels;
             codec->frame_size = 64;
             break;
+        case CODEC_ID_MACE3:
+        case CODEC_ID_MACE6:
+            codec->frame_size = 6;
+            break;
         default:
             break;
         }

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list