diff mpeg12.c @ 7630:d6390123201d libavcodec

Rename ff_init_vlcs function to the more descriptive name ff_mpeg12_init_vlcs. Now that it is exported, this should avoid confusion and name clashes.
author diego
date Wed, 20 Aug 2008 17:05:14 +0000
parents 1d04f38681bd
children 53fb5eb360d5
line wrap: on
line diff
--- a/mpeg12.c	Wed Aug 20 16:59:26 2008 +0000
+++ b/mpeg12.c	Wed Aug 20 17:05:14 2008 +0000
@@ -148,7 +148,7 @@
 static VLC mb_btype_vlc;
 static VLC mb_pat_vlc;
 
-av_cold void ff_init_vlcs(void)
+av_cold void ff_mpeg12_init_vlcs(void)
 {
     static int done = 0;
 
@@ -1194,7 +1194,7 @@
     s->mpeg_enc_ctx.flags= avctx->flags;
     s->mpeg_enc_ctx.flags2= avctx->flags2;
     ff_mpeg12_common_init(&s->mpeg_enc_ctx);
-    ff_init_vlcs();
+    ff_mpeg12_init_vlcs();
 
     s->mpeg_enc_ctx_allocated = 0;
     s->mpeg_enc_ctx.picture_number = 0;