image.h

来自「the newest JM software by h.264 JVT offi」· C头文件 代码 · 共 40 行

H
40
字号

/*!
 ************************************************************************
 * \file image.h
 *
 * \brief
 *    headers for image processing
 *
 * \author
 *    Main contributors (see contributors.h for copyright, address and affiliation details)
 *     - Karsten S黨ring                 <suehring@hhi.de> 
 *     - Inge Lille-Langoy               <inge.lille-langoy@telenor.com>
 *     - Alexis Michael Tourapis         <alexismt@ieee.org> 
 *  
 ************************************************************************
 */
#ifndef _IMAGE_H_
#define _IMAGE_H_

#include "mbuffer.h"

extern StorablePicture *enc_picture;
extern StorablePicture **enc_frame_picture;
extern StorablePicture **enc_field_picture;
extern StorablePicture *enc_frame_picture_JV[MAX_PLANE];  //!< enc_frame to be used during 4:4:4 independent mode encoding

int     encode_one_frame (ImageParameters *img);
Boolean dummy_slice_too_big(int bits_slice);
void    copy_rdopt_data (Macroblock *currMB, int field_type);       // For MB level field/frame coding tools

void    UnifiedOneForthPix (StorablePicture *s);
// For 4:4:4 independent mode
void    UnifiedOneForthPix_JV (int nplane, StorablePicture *s);
void    frame_picture (Picture *frame, ImageData *imgData, int rd_pass);
int     get_idr_flag( void );
void    write_non_vcl_nalu( void );

#endif

⌨️ 快捷键说明

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