[FFmpeg-cvslog] aiffdec: set block_duration to 1 for PCM codecs that are supported in AIFF-C

Justin Ruggles git at videolan.org
Thu Mar 22 21:12:07 CET 2012


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Wed Mar 21 14:51:50 2012 -0400| [f036342b4b24458432be20d4faa45a065c94fb69] | committer: Justin Ruggles

aiffdec: set block_duration to 1 for PCM codecs that are supported in AIFF-C

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f036342b4b24458432be20d4faa45a065c94fb69
---

 libavformat/aiffdec.c |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/libavformat/aiffdec.c b/libavformat/aiffdec.c
index 70ce017..27d42ea 100644
--- a/libavformat/aiffdec.c
+++ b/libavformat/aiffdec.c
@@ -123,6 +123,13 @@ static unsigned int get_aiff_header(AVFormatContext *s, int size,
         aiff->block_duration = 1;
     } else {
         switch (codec->codec_id) {
+        case CODEC_ID_PCM_F32BE:
+        case CODEC_ID_PCM_F64BE:
+        case CODEC_ID_PCM_S16LE:
+        case CODEC_ID_PCM_ALAW:
+        case CODEC_ID_PCM_MULAW:
+            aiff->block_duration = 1;
+            break;
         case CODEC_ID_ADPCM_IMA_QT:
             codec->block_align = 34*codec->channels;
             break;



More information about the ffmpeg-cvslog mailing list