[FFmpeg-cvslog] Add ff_ prefix to ac3_common_init().

Justin Ruggles git
Fri Jan 28 03:43:31 CET 2011


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Tue Jan 25 20:07:07 2011 +0000| [dff80041e3057004838aa500392437a6999e3b41] | committer: Michael Niedermayer

Add ff_ prefix to ac3_common_init().

Signed-off-by: Mans Rullgard <mans at mansr.com>
(cherry picked from commit 4c57cde942b3d28074d0bb06e2ca200bc1098f22)

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

 libavcodec/ac3.c    |    2 +-
 libavcodec/ac3.h    |    2 +-
 libavcodec/ac3dec.c |    2 +-
 libavcodec/ac3enc.c |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavcodec/ac3.c b/libavcodec/ac3.c
index 8fa60e6..23eee52 100644
--- a/libavcodec/ac3.c
+++ b/libavcodec/ac3.c
@@ -241,7 +241,7 @@ void ff_ac3_bit_alloc_calc_bap(int16_t *mask, int16_t *psd, int start, int end,
  * note: This function must remain thread safe because it is called by the
  *       AVParser init code.
  */
-av_cold void ac3_common_init(void)
+av_cold void ff_ac3_common_init(void)
 {
 #if !CONFIG_HARDCODED_TABLES
     /* compute bin_to_band_tab from band_start_tab */
diff --git a/libavcodec/ac3.h b/libavcodec/ac3.h
index 283b134..405e3cd 100644
--- a/libavcodec/ac3.h
+++ b/libavcodec/ac3.h
@@ -115,7 +115,7 @@ typedef enum {
     EAC3_FRAME_TYPE_RESERVED
 } EAC3FrameType;
 
-void ac3_common_init(void);
+void ff_ac3_common_init(void);
 
 /**
  * Calculate the log power-spectral density of the input signal.
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index 32172dc..33c5f74 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -187,7 +187,7 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx)
     AC3DecodeContext *s = avctx->priv_data;
     s->avctx = avctx;
 
-    ac3_common_init();
+    ff_ac3_common_init();
     ac3_tables_init();
     ff_mdct_init(&s->imdct_256, 8, 1, 1.0);
     ff_mdct_init(&s->imdct_512, 9, 1, 1.0);
diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c
index f058d79..ed7a171 100644
--- a/libavcodec/ac3enc.c
+++ b/libavcodec/ac3enc.c
@@ -1815,7 +1815,7 @@ static av_cold int ac3_encode_init(AVCodecContext *avctx)
 
     avctx->frame_size = AC3_FRAME_SIZE;
 
-    ac3_common_init();
+    ff_ac3_common_init();
 
     ret = validate_options(avctx, s);
     if (ret)




More information about the ffmpeg-cvslog mailing list