diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-12-02 20:24:02 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-12-02 20:24:02 +0100 |
commit | b58c1dd63268e6805fd3423bdecb8f4530e1cae2 (patch) | |
tree | f5103eae89c6f802faf1fd7887872e7567caf81c /libavcodec/dvdata.h | |
parent | 6f9be8120d2933268733eded5d6c0eb92341e788 (diff) | |
parent | 21710ea82118c9d19bea9277b2a85a33096fdd95 (diff) | |
download | ffmpeg-b58c1dd63268e6805fd3423bdecb8f4530e1cae2.tar.gz |
Merge commit '21710ea82118c9d19bea9277b2a85a33096fdd95'
* commit '21710ea82118c9d19bea9277b2a85a33096fdd95':
dv: Move DV VLC data tables out of header file
Conflicts:
libavcodec/dv_vlc_data.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dvdata.h')
-rw-r--r-- | libavcodec/dvdata.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/dvdata.h b/libavcodec/dvdata.h index cb580029dd..8c120df722 100644 --- a/libavcodec/dvdata.h +++ b/libavcodec/dvdata.h @@ -31,4 +31,11 @@ extern const int ff_dv_iweight_1080_c[64]; extern const int ff_dv_iweight_720_y[64]; extern const int ff_dv_iweight_720_c[64]; +#define NB_DV_VLC 409 + +extern const uint16_t ff_dv_vlc_bits[NB_DV_VLC]; +extern const uint8_t ff_dv_vlc_len[NB_DV_VLC]; +extern const uint8_t ff_dv_vlc_run[NB_DV_VLC]; +extern const uint8_t ff_dv_vlc_level[NB_DV_VLC]; + #endif /* AVCODEC_DVDATA_H */ |