[banshee] [audio-profiles] Fix AAC bitrate calculation



commit 624d0da9a7af5e6793242af4641930b96492a0df
Author: Gabriel Burt <gabriel burt gmail com>
Date:   Mon Sep 20 15:20:22 2010 -0500

    [audio-profiles] Fix AAC bitrate calculation
    
    This profile isn't built/enabled yet (see bgo#612741) but I noticed we
    calculate the bitrate incorrectly, multiplying by 1024 instead of 1000
    as described on bgo#490060.

 data/audio-profiles/aac.xml.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/data/audio-profiles/aac.xml.in b/data/audio-profiles/aac.xml.in
index 63c76c7..63b8806 100644
--- a/data/audio-profiles/aac.xml.in
+++ b/data/audio-profiles/aac.xml.in
@@ -14,7 +14,7 @@
             (gst-construct-pipeline 
                 "audioconvert" 
                 (gst-construct-element "faac"
-                    "bitrate" (* 1024 bitrate)
+                    "bitrate" (* 1000 bitrate)
                     "outputformat" 1)
                 "ffmux_mp4")
         ]]>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]