global.h
上传用户:hkgotone
上传日期:2013-02-17
资源大小:293k
文件大小:11k
源码类别:

Windows Mobile

开发平台:

C/C++

  1. /* global.h, global variables, function prototypes                          */
  2. /* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
  3. /*
  4.  * Disclaimer of Warranty
  5.  *
  6.  * These software programs are available to the user without any license fee or
  7.  * royalty on an "as is" basis.  The MPEG Software Simulation Group disclaims
  8.  * any and all warranties, whether express, implied, or statuary, including any
  9.  * implied warranties or merchantability or of fitness for a particular
  10.  * purpose.  In no event shall the copyright-holder be liable for any
  11.  * incidental, punitive, or consequential damages of any kind whatsoever
  12.  * arising from the use of these programs.
  13.  *
  14.  * This disclaimer of warranty extends to the user of these programs and user's
  15.  * customers, employees, agents, transferees, successors, and assigns.
  16.  *
  17.  * The MPEG Software Simulation Group does not represent or warrant that the
  18.  * programs furnished hereunder are free of infringement of any third-party
  19.  * patents.
  20.  *
  21.  * Commercial implementations of MPEG-1 and MPEG-2 video, including shareware,
  22.  * are subject to royalty fees to patent holders.  Many of these patents are
  23.  * general enough such that they are unavoidable regardless of implementation
  24.  * design.
  25.  *
  26.  */
  27. #include "mpeg2enc.h"
  28. /* choose between declaration (GLOBAL undefined)
  29.  * and definition (GLOBAL defined)
  30.  * GLOBAL is defined in exactly one file (mpeg2enc.c)
  31.  */
  32. #ifndef GLOBAL
  33. #define EXTERN extern
  34. #else
  35. #define EXTERN
  36. #endif
  37. /* prototypes of global functions */
  38. /* conform.c */
  39. void range_checks _ANSI_ARGS_((void));
  40. void profile_and_level_checks _ANSI_ARGS_(());
  41. /* fdctref.c */
  42. void init_fdct _ANSI_ARGS_((void));
  43. void fdct _ANSI_ARGS_((short *block));
  44. /* idct.c */
  45. void idct _ANSI_ARGS_((short *block));
  46. void init_idct _ANSI_ARGS_((void));
  47. /* motion.c */
  48. void motion_estimation _ANSI_ARGS_((unsigned char *oldorg, unsigned char *neworg,
  49.   unsigned char *oldref, unsigned char *newref, unsigned char *cur,
  50.   unsigned char *curref, int sxf, int syf, int sxb, int syb,
  51.   struct mbinfo *mbi, int secondfield, int ipflag));
  52. /* mpeg2enc.c */
  53. void error _ANSI_ARGS_((char *text));
  54. /* predict.c */
  55. void predict _ANSI_ARGS_((unsigned char *reff[], unsigned char *refb[],
  56.   unsigned char *cur[3], int secondfield, struct mbinfo *mbi));
  57. /* putbits.c */
  58. void initbits _ANSI_ARGS_((void));
  59. void putbits _ANSI_ARGS_((int val, int n));
  60. void alignbits _ANSI_ARGS_((void));
  61. int bitcount _ANSI_ARGS_((void));
  62. /* puthdr.c */
  63. void putseqhdr _ANSI_ARGS_((void));
  64. void putseqext _ANSI_ARGS_((void));
  65. void putseqdispext _ANSI_ARGS_((void));
  66. void putuserdata _ANSI_ARGS_((char *userdata));
  67. void putgophdr _ANSI_ARGS_((int frame, int closed_gop));
  68. void putpicthdr _ANSI_ARGS_((void));
  69. void putpictcodext _ANSI_ARGS_((void));
  70. void putseqend _ANSI_ARGS_((void));
  71. /* putmpg.c */
  72. void putintrablk _ANSI_ARGS_((short *blk, int cc));
  73. void putnonintrablk _ANSI_ARGS_((short *blk));
  74. void putmv _ANSI_ARGS_((int dmv, int f_code));
  75. /* putpic.c */
  76. void putpict _ANSI_ARGS_((unsigned char *frame));
  77. /* putseq.c */
  78. void putseq _ANSI_ARGS_((void));
  79. /* putvlc.c */
  80. void putDClum _ANSI_ARGS_((int val));
  81. void putDCchrom _ANSI_ARGS_((int val));
  82. void putACfirst _ANSI_ARGS_((int run, int val));
  83. void putAC _ANSI_ARGS_((int run, int signed_level, int vlcformat));
  84. void putaddrinc _ANSI_ARGS_((int addrinc));
  85. void putmbtype _ANSI_ARGS_((int pict_type, int mb_type));
  86. void putmotioncode _ANSI_ARGS_((int motion_code));
  87. void putdmv _ANSI_ARGS_((int dmv));
  88. void putcbp _ANSI_ARGS_((int cbp));
  89. /* quantize.c */
  90. int quant_intra _ANSI_ARGS_((short *src, short *dst, int dc_prec,
  91.   unsigned char *quant_mat, int mquant));
  92. int quant_non_intra _ANSI_ARGS_((short *src, short *dst,
  93.   unsigned char *quant_mat, int mquant));
  94. void iquant_intra _ANSI_ARGS_((short *src, short *dst, int dc_prec,
  95.   unsigned char *quant_mat, int mquant));
  96. void iquant_non_intra _ANSI_ARGS_((short *src, short *dst,
  97.   unsigned char *quant_mat, int mquant));
  98. /* ratectl.c */
  99. void rc_init_seq _ANSI_ARGS_((void));
  100. void rc_init_GOP _ANSI_ARGS_((int np, int nb));
  101. void rc_init_pict _ANSI_ARGS_((unsigned char *frame));
  102. void rc_update_pict _ANSI_ARGS_((void));
  103. int rc_start_mb _ANSI_ARGS_((void));
  104. int rc_calc_mquant _ANSI_ARGS_((int j));
  105. void vbv_end_of_picture _ANSI_ARGS_((void));
  106. void calc_vbv_delay _ANSI_ARGS_((void));
  107. /* readpic.c */
  108. void readframe _ANSI_ARGS_((char *fname, unsigned char *frame[]));
  109. /* stats.c */
  110. void calcSNR _ANSI_ARGS_((unsigned char *org[3], unsigned char *rec[3]));
  111. void stats _ANSI_ARGS_((void));
  112. /* transfrm.c */
  113. void transform _ANSI_ARGS_((unsigned char *pred[], unsigned char *cur[],
  114.   struct mbinfo *mbi, short blocks[][64]));
  115. void itransform _ANSI_ARGS_((unsigned char *pred[], unsigned char *cur[],
  116.   struct mbinfo *mbi, short blocks[][64]));
  117. void dct_type_estimation _ANSI_ARGS_((unsigned char *pred, unsigned char *cur,
  118.   struct mbinfo *mbi));
  119. /* writepic.c */
  120. void writeframe _ANSI_ARGS_((char *fname, unsigned char *frame[]));
  121. /* global variables */
  122. EXTERN char version[]
  123. #ifdef GLOBAL
  124.   ="mpeg2encode V1.2, 96/07/19"
  125. #endif
  126. ;
  127. EXTERN char author[]
  128. #ifdef GLOBAL
  129.   ="(C) 1996, MPEG Software Simulation Group"
  130. #endif
  131. ;
  132. /* zig-zag scan */
  133. EXTERN unsigned char zig_zag_scan[64]
  134. #ifdef GLOBAL
  135. =
  136. {
  137.   0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,
  138.   12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,
  139.   35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,
  140.   58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63
  141. }
  142. #endif
  143. ;
  144. /* alternate scan */
  145. EXTERN unsigned char alternate_scan[64]
  146. #ifdef GLOBAL
  147. =
  148. {
  149.   0,8,16,24,1,9,2,10,17,25,32,40,48,56,57,49,
  150.   41,33,26,18,3,11,4,12,19,27,34,42,50,58,35,43,
  151.   51,59,20,28,5,13,6,14,21,29,36,44,52,60,37,45,
  152.   53,61,22,30,7,15,23,31,38,46,54,62,39,47,55,63
  153. }
  154. #endif
  155. ;
  156. /* default intra quantization matrix */
  157. EXTERN unsigned char default_intra_quantizer_matrix[64]
  158. #ifdef GLOBAL
  159. =
  160. {
  161.    8, 16, 19, 22, 26, 27, 29, 34,
  162.   16, 16, 22, 24, 27, 29, 34, 37,
  163.   19, 22, 26, 27, 29, 34, 34, 38,
  164.   22, 22, 26, 27, 29, 34, 37, 40,
  165.   22, 26, 27, 29, 32, 35, 40, 48,
  166.   26, 27, 29, 32, 35, 40, 48, 58,
  167.   26, 27, 29, 34, 38, 46, 56, 69,
  168.   27, 29, 35, 38, 46, 56, 69, 83
  169. }
  170. #endif
  171. ;
  172. /* non-linear quantization coefficient table */
  173. EXTERN unsigned char non_linear_mquant_table[32]
  174. #ifdef GLOBAL
  175. =
  176. {
  177.    0, 1, 2, 3, 4, 5, 6, 7,
  178.    8,10,12,14,16,18,20,22,
  179.   24,28,32,36,40,44,48,52,
  180.   56,64,72,80,88,96,104,112
  181. }
  182. #endif
  183. ;
  184. /* non-linear mquant table for mapping from scale to code
  185.  * since reconstruction levels are not bijective with the index map,
  186.  * it is up to the designer to determine most of the quantization levels
  187.  */
  188. EXTERN unsigned char map_non_linear_mquant[113] 
  189. #ifdef GLOBAL
  190. =
  191. {
  192. 0,1,2,3,4,5,6,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,
  193. 16,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,
  194. 22,22,23,23,23,23,24,24,24,24,24,24,24,25,25,25,25,25,25,25,26,26,
  195. 26,26,26,26,26,26,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,29,
  196. 29,29,29,29,29,29,29,29,29,30,30,30,30,30,30,30,31,31,31,31,31
  197. }
  198. #endif
  199. ;
  200. /* picture data arrays */
  201. /* reconstructed frames */
  202. EXTERN unsigned char *newrefframe[3], *oldrefframe[3], *auxframe[3];
  203. /* original frames */
  204. EXTERN unsigned char *neworgframe[3], *oldorgframe[3], *auxorgframe[3];
  205. /* prediction of current frame */
  206. EXTERN unsigned char *predframe[3];
  207. /* 8*8 block data */
  208. EXTERN short (*blocks)[64];
  209. /* intra / non_intra quantization matrices */
  210. EXTERN unsigned char intra_q[64], inter_q[64];
  211. EXTERN unsigned char chrom_intra_q[64],chrom_inter_q[64];
  212. /* prediction values for DCT coefficient (0,0) */
  213. EXTERN int dc_dct_pred[3];
  214. /* macroblock side information array */
  215. EXTERN struct mbinfo *mbinfo;
  216. /* motion estimation parameters */
  217. EXTERN struct motion_data *motion_data;
  218. /* clipping (=saturation) table */
  219. EXTERN unsigned char *clp;
  220. /* name strings */
  221. EXTERN char id_string[256], tplorg[256], tplref[256];
  222. EXTERN char iqname[256], niqname[256];
  223. EXTERN char statname[256];
  224. EXTERN char errortext[256];
  225. EXTERN FILE *outfile, *statfile; /* file descriptors */
  226. EXTERN int inputtype; /* format of input frames */
  227. EXTERN int quiet; /* suppress warnings */
  228. /* coding model parameters */
  229. EXTERN int N; /* number of frames in Group of Pictures */
  230. EXTERN int M; /* distance between I/P frames */
  231. EXTERN int P; /* intra slice refresh interval */
  232. EXTERN int nframes; /* total number of frames to encode */
  233. EXTERN int frame0, tc0; /* number and timecode of first frame */
  234. EXTERN int mpeg1; /* ISO/IEC IS 11172-2 sequence */
  235. EXTERN int fieldpic; /* use field pictures */
  236. /* sequence specific data (sequence header) */
  237. EXTERN int horizontal_size, vertical_size; /* frame size (pels) */
  238. EXTERN int width, height; /* encoded frame size (pels) multiples of 16 or 32 */
  239. EXTERN int chrom_width,chrom_height,block_count;
  240. EXTERN int mb_width, mb_height; /* frame size (macroblocks) */
  241. EXTERN int width2, height2, mb_height2, chrom_width2; /* picture size */
  242. EXTERN int aspectratio; /* aspect ratio information (pel or display) */
  243. EXTERN int frame_rate_code; /* coded value of frame rate */
  244. EXTERN double frame_rate; /* frames per second */
  245. EXTERN double bit_rate; /* bits per second */
  246. EXTERN int vbv_buffer_size; /* size of VBV buffer (* 16 kbit) */
  247. EXTERN int constrparms; /* constrained parameters flag (MPEG-1 only) */
  248. EXTERN int load_iquant, load_niquant; /* use non-default quant. matrices */
  249. EXTERN int load_ciquant,load_cniquant;
  250. /* sequence specific data (sequence extension) */
  251. EXTERN int profile, level; /* syntax / parameter constraints */
  252. EXTERN int prog_seq; /* progressive sequence */
  253. EXTERN int chroma_format;
  254. EXTERN int low_delay; /* no B pictures, skipped pictures */
  255. /* sequence specific data (sequence display extension) */
  256. EXTERN int video_format; /* component, PAL, NTSC, SECAM or MAC */
  257. EXTERN int color_primaries; /* source primary chromaticity coordinates */
  258. EXTERN int transfer_characteristics; /* opto-electronic transfer char. (gamma) */
  259. EXTERN int matrix_coefficients; /* Eg,Eb,Er / Y,Cb,Cr matrix coefficients */
  260. EXTERN int display_horizontal_size, display_vertical_size; /* display size */
  261. /* picture specific data (picture header) */
  262. EXTERN int temp_ref; /* temporal reference */
  263. EXTERN int pict_type; /* picture coding type (I, P or B) */
  264. EXTERN int vbv_delay; /* video buffering verifier delay (1/90000 seconds) */
  265. /* picture specific data (picture coding extension) */
  266. EXTERN int forw_hor_f_code, forw_vert_f_code;
  267. EXTERN int back_hor_f_code, back_vert_f_code; /* motion vector ranges */
  268. EXTERN int dc_prec; /* DC coefficient precision for intra coded blocks */
  269. EXTERN int pict_struct; /* picture structure (frame, top / bottom field) */
  270. EXTERN int topfirst; /* display top field first */
  271. /* use only frame prediction and frame DCT (I,P,B,current) */
  272. EXTERN int frame_pred_dct_tab[3], frame_pred_dct;
  273. EXTERN int conceal_tab[3]; /* use concealment motion vectors (I,P,B) */
  274. EXTERN int qscale_tab[3], q_scale_type; /* linear/non-linear quantizaton table */
  275. EXTERN int intravlc_tab[3], intravlc; /* intra vlc format (I,P,B,current) */
  276. EXTERN int altscan_tab[3], altscan; /* alternate scan (I,P,B,current) */
  277. EXTERN int repeatfirst; /* repeat first field after second field */
  278. EXTERN int prog_frame; /* progressive frame */