diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-30 13:24:10 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-11-06 17:41:26 +0100 |
commit | 83dfc21a212cc0b03d1db17df072bfe7c4a3333a (patch) | |
tree | bf4c612518664c32a9e2749446128949d2e15b35 /libavcodec/msmpeg4data.h | |
parent | 8f7bf45895ced0b19295ba3d93470afa7d810f28 (diff) | |
download | ffmpeg-83dfc21a212cc0b03d1db17df072bfe7c4a3333a.tar.gz |
avcodec/msmpeg4dec: Factor initializing VLCs shared with VC-1 out
It will be useful in the following commits.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/msmpeg4data.h')
-rw-r--r-- | libavcodec/msmpeg4data.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/msmpeg4data.h b/libavcodec/msmpeg4data.h index 4f904d7610..ccbfde36f7 100644 --- a/libavcodec/msmpeg4data.h +++ b/libavcodec/msmpeg4data.h @@ -48,6 +48,8 @@ typedef struct MVTable { } MVTable; FF_VISIBILITY_PUSH_HIDDEN +void ff_msmp4_vc1_vlcs_init_once(void); + #define MSMP4_MB_INTRA_VLC_BITS 9 extern VLC ff_msmp4_mb_i_vlc; #define MSMP4_DC_VLC_BITS 9 |