[SCM] opencore-amr packaging branch, master, updated. upstream/0.1.2-10-g7bf1e45

ceros-guest at users.alioth.debian.org ceros-guest at users.alioth.debian.org
Fri Sep 18 20:48:35 UTC 2009


The following commit has been merged in the master branch:
commit 32f1bc2202ea90f3c849979f3999906c2d2deeba
Author: Andres Mejia <mcitadel at gmail.com>
Date:   Mon May 18 03:55:04 2009 -0400

    Fix compiler warning.
    
    Functioning was defined but declared as 'extern'. Removed the 'extern'.
    Only place within opencore framework where 'WmfDecBytesPerFrame' and
    'If2DecBytesPerFrame' are used is within the gsm_amr source files.

diff --git a/opencore/codecs_v2/audio/gsm_amr/amr_nb/dec/src/dec_input_format_tab.cpp b/opencore/codecs_v2/audio/gsm_amr/amr_nb/dec/src/dec_input_format_tab.cpp
index a59f5fa..aaf5c25 100644
--- a/opencore/codecs_v2/audio/gsm_amr/amr_nb/dec/src/dec_input_format_tab.cpp
+++ b/opencore/codecs_v2/audio/gsm_amr/amr_nb/dec/src/dec_input_format_tab.cpp
@@ -152,7 +152,7 @@ extern "C"
     ----------------------------------------------------------------------------*/
     /* Table containing the number of core AMR data bytes for                */
     /* each codec mode for WMF input format(number excludes frame type byte) */
-    extern const Word16 WmfDecBytesPerFrame[16] =
+    const Word16 WmfDecBytesPerFrame[16] =
     {
         12, /* 4.75 */
         13, /* 5.15 */
@@ -174,7 +174,7 @@ extern "C"
 
     /* Table containing the number of core AMR data bytes for   */
     /* each codec mode for IF2 input format.                    */
-    extern const Word16 If2DecBytesPerFrame[16] =
+    const Word16 If2DecBytesPerFrame[16] =
     {
         13, /* 4.75 */
         14, /* 5.15 */

-- 
opencore-amr packaging



More information about the pkg-multimedia-commits mailing list