add proper ff_ prefix to new extern symbols

Originally committed as revision 9479 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs
2007-07-05 09:21:55 +00:00
parent 56be950afa
commit eaa7557c73
5 changed files with 85 additions and 85 deletions

View File

@@ -31,20 +31,20 @@
#include <stdint.h>
#include "mpegvideo.h"
extern const uint16_t vlc_dc_lum_code[12];
extern const unsigned char vlc_dc_lum_bits[12];
extern const uint16_t vlc_dc_chroma_code[12];
extern const unsigned char vlc_dc_chroma_bits[12];
extern const uint16_t ff_mpeg12_vlc_dc_lum_code[12];
extern const unsigned char ff_mpeg12_vlc_dc_lum_bits[12];
extern const uint16_t ff_mpeg12_vlc_dc_chroma_code[12];
extern const unsigned char ff_mpeg12_vlc_dc_chroma_bits[12];
extern RLTable rl_mpeg1;
extern RLTable rl_mpeg2;
extern RLTable ff_rl_mpeg1;
extern RLTable ff_rl_mpeg2;
extern const uint8_t mbAddrIncrTable[36][2];
extern const uint8_t mbPatTable[64][2];
extern const uint8_t ff_mpeg12_mbAddrIncrTable[36][2];
extern const uint8_t ff_mpeg12_mbPatTable[64][2];
extern const uint8_t mbMotionVectorTable[17][2];
extern const uint8_t ff_mpeg12_mbMotionVectorTable[17][2];
extern const float mpeg1_aspect[16];
extern const AVRational mpeg2_aspect[16];
extern const float ff_mpeg1_aspect[16];
extern const AVRational ff_mpeg2_aspect[16];
#endif // AVCODEC_MPEG12DATA_H