diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-05-29 19:44:03 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-05-31 13:06:19 +0200 |
commit | 378a00087fdadcc9b34165c05cd10a1a15f3fe61 (patch) | |
tree | ecb75b2ced6439e05e58606ab352e1427dfd6f70 /libavcodec/mpegvideo.h | |
parent | 31a117a0e6d6eafdf997bfe0843f3e3d39cc0332 (diff) | |
download | ffmpeg-378a00087fdadcc9b34165c05cd10a1a15f3fe61.tar.gz |
mpegvideo: Move tables to a separate file
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 48c9cffc89..7fd4f1104f 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -88,10 +88,6 @@ enum OutputFormat { #define EXT_START_CODE 0x000001b5 #define USER_START_CODE 0x000001b2 -/* encoding scans */ -extern const uint8_t ff_alternate_horizontal_scan[64]; -extern const uint8_t ff_alternate_vertical_scan[64]; - struct MpegEncContext; /** @@ -821,10 +817,6 @@ int ff_epzs_motion_search(MpegEncContext * s, int *mx_ptr, int *my_ptr, int ff_get_mb_score(MpegEncContext * s, int mx, int my, int src_index, int ref_index, int size, int h, int add_rate); -/* mpeg12.c */ -extern const uint8_t ff_mpeg1_dc_scale_table[128]; -extern const uint8_t * const ff_mpeg2_dc_scale_table[4]; - void ff_mpeg1_encode_picture_header(MpegEncContext *s, int picture_number); void ff_mpeg1_encode_mb(MpegEncContext *s, int16_t block[8][64], |