⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 explicit_seq.h

📁 the newest JM software by h.264 JVT official reference model.
💻 H
字号:

/*!
 *************************************************************************************
 * \file explicit_seq.h
 *
 * \brief
 *    Functions for explicit sequence support
 *
 * \author
 *     Main contributors (see contributors.h for copyright, address and affiliation details)
 *     - Alexis Michael Tourapis          <alexismt@ieee.org>
 *************************************************************************************
 */

#ifndef _EXPLICIT_SEQ_H_
#define _EXPLICIT_SEQ_H_

// Definition of structures used for explicit sequence representation
typedef struct
{
  int seq_number;
  int slice_type;
  int is_idr;
  int reference_idc;
  int frame_qp;
  int deblocking;
  int is_field;
} ExpFrameInfo;

typedef struct
{
  int no_frames;
  ExpFrameInfo *info;
} ExpSeqInfo;

extern FILE       *expSFile;
extern ExpSeqInfo *expSeq;

extern void ReadExplicitSeqFile    (ExpSeqInfo *seq_info, int coding_index);
extern void OpenExplicitSeqFile    (InputParameters *pparams);
extern void CloseExplicitSeqFile   (void);
extern void ExplicitUpdateImgParams(ExpFrameInfo *info, ImageParameters *p_img);
#endif

⌨️ 快捷键说明

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