diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-08-19 08:55:40 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-08-19 08:55:40 +0000 |
commit | 6ec87fbd92a8c67af5eb644d315feb62a17c36c9 (patch) | |
tree | b40f52e9f8cf815e137f4274ad8c6103821c89c8 | |
parent | 1dece0d2cda1898dc33b4f4a18766840b76831af (diff) | |
download | ffmpeg-6ec87fbd92a8c67af5eb644d315feb62a17c36c9.tar.gz |
Mark init_vlcs function as av_cold.
Originally committed as revision 14830 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mpeg12.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index bb59f5455f..088083abdc 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -152,7 +152,7 @@ static VLC mb_ptype_vlc; static VLC mb_btype_vlc; static VLC mb_pat_vlc; -static void init_vlcs(void) +static av_cold void init_vlcs(void) { static int done = 0; |