diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-04-20 16:16:52 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-04-20 16:16:52 +0000 |
commit | 59cf08ce90abec5a5f88cc077e7ade5f89c4c18c (patch) | |
tree | ad3008c2e1f87f2848804b7220eefa23221354fc /libavcodec/utils.c | |
parent | fab219971e9d532bb9aac0134331b760bc90cb69 (diff) | |
download | ffmpeg-59cf08ce90abec5a5f88cc077e7ade5f89c4c18c.tar.gz |
fixed static init
Originally committed as revision 1799 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 5e1fbee173..156ceddd20 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -555,7 +555,7 @@ void avcodec_init(void) return; inited = 1; - //dsputil_init(); + dsputil_static_init(); } /* this can be called after seeking and before trying to decode the next keyframe */ |