specifics.h

来自「linux下将各类格式图片转换工具」· C头文件 代码 · 共 37 行

H
37
字号
#include "ansi.h"/*===========* * TYPES     * *===========*/typedef struct bs_def {  int num;  boolean relative;  char qscale;  BlockMV *mv;  /* defined in mtypes.h */  struct bs_def *next;} Block_Specifics;typedef struct detail_def {  int num;  char qscale;  struct detail_def *next;}  Slice_Specifics;typedef struct fsl_def {  int framenum;   int frametype;  char qscale;  Slice_Specifics *slc;  Block_Specifics *bs;  struct fsl_def *next;} FrameSpecList;void	Specifics_Init _ANSI_ARGS_((void));int     SpecLookup _ANSI_ARGS_((int fn, int typ, int num, 				BlockMV **info, int start_qs));int SpecTypeLookup _ANSI_ARGS_((int fn));

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?