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

📄 fixedqpencoder.cpp

📁 jsvm开发代码包括抽样,编码,抽取,解码等一系列功能,可以做工具或研究用
💻 CPP
📖 第 1 页 / 共 2 页
字号:
/*
********************************************************************************

NOTE - One of the two copyright statements below may be chosen
       that applies for the software.

********************************************************************************

This software module was originally developed by

Heiko Schwarz    (Fraunhofer HHI),
Tobias Hinz      (Fraunhofer HHI),
Karsten Suehring (Fraunhofer HHI)

in the course of development of the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video
Coding) for reference purposes and its performance may not have been optimized.
This software module is an implementation of one or more tools as specified by
the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding).

Those intending to use this software module in products are advised that its
use may infringe existing patents. ISO/IEC have no liability for use of this
software module or modifications thereof.

Assurance that the originally developed software module can be used
(1) in the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) once the
ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) has been adopted; and
(2) to develop the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding):

To the extent that Fraunhofer HHI owns patent rights that would be required to
make, use, or sell the originally developed software module or portions thereof
included in the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) in a
conforming product, Fraunhofer HHI will assure the ISO/IEC that it is willing
to negotiate licenses under reasonable and non-discriminatory terms and
conditions with applicants throughout the world.

Fraunhofer HHI retains full right to modify and use the code for its own
purpose, assign or donate the code to a third party and to inhibit third
parties from using the code for products that do not conform to MPEG-related
ITU Recommendations and/or ISO/IEC International Standards.

This copyright notice must be included in all copies or derivative works.
Copyright (c) ISO/IEC 2005.

********************************************************************************

COPYRIGHT AND WARRANTY INFORMATION

Copyright 2005, International Telecommunications Union, Geneva

The Fraunhofer HHI hereby donate this source code to the ITU, with the following
understanding:
    1. Fraunhofer HHI retain the right to do whatever they wish with the
       contributed source code, without limit.
    2. Fraunhofer HHI retain full patent rights (if any exist) in the technical
       content of techniques and algorithms herein.
    3. The ITU shall make this code available to anyone, free of license or
       royalty fees.

DISCLAIMER OF WARRANTY

These software programs are available to the user without any license fee or
royalty on an "as is" basis. The ITU disclaims any and all warranties, whether
express, implied, or statutory, including any implied warranties of
merchantability or of fitness for a particular purpose. In no event shall the
contributor or the ITU be liable for any incidental, punitive, or consequential
damages of any kind whatsoever arising from the use of these programs.

This disclaimer of warranty extends to the user of these programs and user's
customers, employees, agents, transferees, successors, and assigns.

The ITU does not represent or warrant that the programs furnished hereunder are
free of infringement of any third-party patents. Commercial implementations of
ITU-T Recommendations, including shareware, may be subject to royalty fees to
patent holders. Information regarding the ITU-T patent policy is available from
the ITU Web site at http://www.itu.int.

THIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY.

********************************************************************************
*/







#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string>


#define MAX_LAYERS  10
#define USAGE(X)    {if(X) print_usage();}
#define MIN_QP       0.0
#define MAX_QP      51.0
#define DELTA_QP     6.0
#define MIN_DQP      1.0
#define MSYS_UINT_MAX 0xFFFFFFFFU

void
print_usage()
{
  printf("\nusage:\n\n");
  printf("FixedQPEncoder <ConfigFile>\n");
  printf("\n");
  exit(1);
}



typedef struct
{
  double        dLowestTarget;                    // set from config file (never changed)
  double        dHighestTarget;                   // set from config file (never changed)
  double        dMinMismatch;                     // set from config file (never changed)
  double        dMaxMismatch;                     // set from config file (never changed)
  double        dStartBaseQpResidual;             // set from config file (never changed)
  double        dStartQpModeDecision;             // set from config file (never changed)

  double        dQpModeDecision;                  // needed for encode
  double        dBaseQpResidual;                  // needed for encode
  unsigned int  uiMotionFileMode;                 // needed for encode
	unsigned int  uiNumberOfFGSLayers;              // needed for encode
  std::string   cMotionFile;                      // needed for encode
	std::string   cFGSFile;                         // needed for encode
	std::string   cOrgFile;                         // needed for encode
	std::string   cRecFile;                         // needed for encode

	int           iFGSMode;                         // needed for FGS encode
	unsigned int  uiFGSMotionRefinementMode;        // needed for FGS encode

	unsigned int  uiEntropyCodingModFlag;           // needed for encode
	unsigned int  uiInterLayerPredictionMode;       // needed for encode
	int           iBaseLayerId;                     // needed for encode

  double        dRate;                            // needed for encode
	unsigned int  uiCurrSize;                       // needed for encode
	double        dPSNR;                            // needed for encode
	unsigned int  uiCurrPSNR;                       // needed for encode
	unsigned int  uiWidth;                          // needed for encode
	unsigned int  uiHeight;                         // needed for encode

  unsigned int  uiNumIter;
}
LayerParameters;



typedef struct
{
  std::string     cLabel;                         //                   (never changed) - config file
  std::string     cEncoderBinary;                 // needed for encode (never changed) - config file
	std::string     cPSNRBinary;                    // needed for encode (never changed) - config file
  std::string     cParameterFile;                 // needed for encode (never changed) - config file
  std::string     cBitStreamFile;                 // needed for encode (never changed) - config file
  std::string     cMotionFolder;                  // needed for encode (never changed) - config file
	std::string     cFGSFolder;                     // needed for encode (never changed) - config file
  unsigned int    uiNumberOfLayers;               // needed for encode                 - config file
	unsigned int    uiNumberOfCodedLayers;          // needed for encode (never changed)
  unsigned int    uiNumberOfFrames;               //                   (never changed) - config file
	unsigned int    uiGOPSize;                      //                   (never changed) - config file
	unsigned int    uiIntraPeriod;                  //                   (never changed) - config file
  double          dFramesPerSecond;               //                   (never changed) - config file
	unsigned int    uiNumberOfIterations;           //                   (never changed) - config file
  unsigned int    uiConstrainedIntraBL;           //                   (never changed) - config file
	unsigned int    uiMode;                         //                   (never changed) - config file
  LayerParameters acLayerParameters[MAX_LAYERS];  // needed for encode                 - config file
}
EncoderParameters;







//////////////////////////////////////////////////////////////////////////
//
//   encode once and return the file size
//
//////////////////////////////////////////////////////////////////////////
void encode( EncoderParameters& rcEncoderParameters )
{
  char        acTempString[2048];
  std::string cCommandLineString;
  std::string cEchoLineString = "echo ";

  //----- general settings -----
  cCommandLineString    += rcEncoderParameters.cEncoderBinary;
  cCommandLineString    += " -pf ";
  cCommandLineString    += rcEncoderParameters.cParameterFile;
  cCommandLineString    += " -bf ";
  cCommandLineString    += rcEncoderParameters.cBitStreamFile;
  cCommandLineString    += " -numl ";
  sprintf( acTempString, "%d", rcEncoderParameters.uiNumberOfLayers );
  cCommandLineString    += acTempString;
  if( rcEncoderParameters.uiConstrainedIntraBL )
  {
    cCommandLineString  += " -bcip";
  }
  cCommandLineString    += " -frms ";
  sprintf( acTempString, "%d", rcEncoderParameters.uiNumberOfFrames );
  cCommandLineString    += acTempString;

	if( rcEncoderParameters.uiGOPSize > 0 )
	{
		cCommandLineString    += " -gop ";
		sprintf( acTempString, "%d", rcEncoderParameters.uiGOPSize );
		cCommandLineString    += acTempString;
	}
	if( rcEncoderParameters.uiIntraPeriod != MSYS_UINT_MAX )
	{
		cCommandLineString    += " -iper ";
		sprintf( acTempString, "%d", rcEncoderParameters.uiIntraPeriod );
		cCommandLineString    += acTempString;
	}

  //----- layer settings -----
  for( unsigned int uiLayer = 0; uiLayer < rcEncoderParameters.uiNumberOfLayers; uiLayer++ )
  {
    LayerParameters& rcLayer = rcEncoderParameters.acLayerParameters[uiLayer];
		if( rcLayer.uiNumberOfFGSLayers > 0 )
		{
			switch( rcLayer.iFGSMode )
			{
			case -1:
				sprintf( acTempString, " -org %u %s -rec %u %s -lqp %d %lf -rqp %u %lf -meqplp %d %lf -ecmf %u %u -mfile %u %u %s -cl %u 2 -ilpred %u %u -blid %u %d ",
					uiLayer, rcLayer.cOrgFile.c_str(), 
					uiLayer, rcLayer.cRecFile.c_str(),
					uiLayer, rcLayer.dQpModeDecision, 
					uiLayer, rcLayer.dBaseQpResidual,
					uiLayer, rcLayer.dBaseQpResidual,
					uiLayer, rcLayer.uiEntropyCodingModFlag,
					uiLayer, rcLayer.uiMotionFileMode, rcLayer.cMotionFile.c_str(),
					uiLayer,
					uiLayer, rcLayer.uiInterLayerPredictionMode,
					uiLayer, rcLayer.iBaseLayerId );
				break;

			case 0:
				sprintf( acTempString, " -org %u %s -rec %u %s -lqp %d %lf -rqp %u %lf -meqplp %d %lf -ecmf %u %u -mfile %u %u %s -cl %u 2 -ilpred %u %u -blid %u %d -anafgs %u %u %s -fgsmot %u %u ",
					uiLayer, rcLayer.cOrgFile.c_str(), 
					uiLayer, rcLayer.cRecFile.c_str(), 
					uiLayer, rcLayer.dQpModeDecision, 
					uiLayer, rcLayer.dBaseQpResidual,
					uiLayer, rcLayer.dBaseQpResidual,
					uiLayer, rcLayer.uiEntropyCodingModFlag,
					uiLayer, rcLayer.uiMotionFileMode, rcLayer.cMotionFile.c_str(),
					uiLayer,
					uiLayer, rcLayer.uiInterLayerPredictionMode,
					uiLayer, rcLayer.iBaseLayerId,
					uiLayer, rcLayer.uiNumberOfFGSLayers, rcLayer.cFGSFile.c_str(),
					uiLayer, rcLayer.uiFGSMotionRefinementMode );
				break;
			case 1:
			case 2:
				sprintf( acTempString, " -org %u %s -rec %u %s -lqp %d %lf -rqp %u %lf -meqplp %d %lf -ecmf %u %u -mfile %u %u %s -cl %u 2 -ilpred %u %u -blid %u %d -encfgs %u %lf %s -fgsmot %u %u ",
					uiLayer, rcLayer.cOrgFile.c_str(), 
					uiLayer, rcLayer.cRecFile.c_str(), 
					uiLayer, rcLayer.dQpModeDecision, 
					uiLayer, rcLayer.dBaseQpResidual,
					uiLayer, rcLayer.dBaseQpResidual,
					uiLayer, rcLayer.uiEntropyCodingModFlag,
					uiLayer, rcLayer.uiMotionFileMode, rcLayer.cMotionFile.c_str(),
					uiLayer,
					uiLayer, rcLayer.uiInterLayerPredictionMode,
					uiLayer, rcLayer.iBaseLayerId,
					uiLayer, rcLayer.dHighestTarget, rcLayer.cFGSFile.c_str(),
					uiLayer, rcLayer.uiFGSMotionRefinementMode );
				break;
			default:
				break;
			}
		}
		else
		{
			sprintf( acTempString, " -org %u %s -rec %u %s -lqp %d %lf -rqp %u %lf -meqplp %d %lf -ecmf %u %u -mfile %u %u %s -cl %u 2 -ilpred %u %u -blid %u %d ",
				uiLayer, rcLayer.cOrgFile.c_str(), 
				uiLayer, rcLayer.cRecFile.c_str(), 
				uiLayer, rcLayer.dQpModeDecision, 
				uiLayer, rcLayer.dBaseQpResidual,
				uiLayer, rcLayer.dBaseQpResidual,
				
				uiLayer, rcLayer.uiEntropyCodingModFlag,
				uiLayer, rcLayer.uiMotionFileMode, rcLayer.cMotionFile.c_str(),
				uiLayer,
				uiLayer, rcLayer.uiInterLayerPredictionMode,
				uiLayer, rcLayer.iBaseLayerId );
		}
    cCommandLineString  += acTempString;
  }

  cEchoLineString += cCommandLineString;
  cEchoLineString += "\n";
  system( cEchoLineString.c_str() );

  //----- run encoder -----
  int iResult = system( cCommandLineString.c_str() );
  if( iResult )
  {
    printf("\n\nERROR while executing \"...\"\n\n%s\n\n", cCommandLineString.c_str() );
    exit(2);
  }

	LayerParameters& rcLayer = rcEncoderParameters.acLayerParameters[rcEncoderParameters.uiNumberOfLayers-1];

  //----- get file size -----
	rcLayer.uiCurrSize = 0;
  FILE* pFile = fopen( rcEncoderParameters.cBitStreamFile.c_str(), "rb" );
  if( ! pFile )
  {
    printf( "\n\nUNEXPECTED ERROR: Cannot open file\"%s\"\n\n", rcEncoderParameters.cBitStreamFile.c_str() );
    exit(1);
  }
  fseek( pFile, 0, SEEK_END );

⌨️ 快捷键说明

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