[SCM] libav/experimental: 24bit pcm support

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


The following commit has been merged in the experimental branch:
commit 822617cd509570ba54167dad1447a7c35856acf9
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date:   Mon Feb 2 10:58:33 2009 +0000

    24bit pcm support
    
    Originally committed as revision 16942 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
index fe90965..7a4746b 100644
--- a/libavformat/mxfenc.c
+++ b/libavformat/mxfenc.c
@@ -83,6 +83,7 @@ static const struct {
     int index;
 } mxf_essence_mappings[] = {
     { CODEC_ID_MPEG2VIDEO, 0 },
+    { CODEC_ID_PCM_S24LE,  1 },
     { CODEC_ID_PCM_S16LE,  1 },
     { 0 }
 };
@@ -708,7 +709,7 @@ static void mxf_write_generic_sound_desc(AVFormatContext *s, AVStream *st, const
     put_be32(pb, st->codec->channels);
 
     mxf_write_local_tag(pb, 4, 0x3D01);
-    put_be32(pb, st->codec->bits_per_coded_sample);
+    put_be32(pb, av_get_bits_per_sample(st->codec->codec_id));
 }
 
 static void mxf_write_wav_common_desc(AVFormatContext *s, AVStream *st, const UID key, unsigned size)

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list