conform.cc
来自「Motion JPEG编解码器源代码」· CC 代码 · 共 307 行
CC
307 行
/* conform.c, conformance checks *//* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. *//* * Disclaimer of Warranty * * These software programs are available to the user without any license fee or * royalty on an "as is" basis. The MPEG Software Simulation Group disclaims * any and all warranties, whether express, implied, or statuary, including any * implied warranties or merchantability or of fitness for a particular * purpose. In no event shall the copyright-holder 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 MPEG Software Simulation Group does not represent or warrant that the * programs furnished hereunder are free of infringement of any third-party * patents. * * Commercial implementations of MPEG-1 and MPEG-2 video, including shareware, * are subject to royalty fees to patent holders. Many of these patents are * general enough such that they are unavoidable regardless of implementation * design. * *//* Modifications and enhancements (C) 2003 Andrew Stevens *//* These modifications are free software; you can redistribute it * and/or modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. * */#include "config.h"#include <stdlib.h>#include "mjpeg_logging.h"#include "encoderparams.hh"/* check for (level independent) parameter limits */void EncoderParams::RangeChecks(){ int i; /* range and value checks */ if (horizontal_size<1 || horizontal_size>16383) mjpeg_error_exit1("horizontal_size must be between 1 and 16383"); if (mpeg1 && horizontal_size>4095) mjpeg_error_exit1("horizontal_size must be less than 4096 (MPEG-1)"); if ((horizontal_size&4095)==0) mjpeg_error_exit1("horizontal_size must not be a multiple of 4096"); if ( horizontal_size%2 != 0) mjpeg_error_exit1("horizontal_size must be a even (4:2:0 / 4:2:2)"); if (vertical_size<1 || vertical_size>16383) mjpeg_error_exit1("vertical_size must be between 1 and 16383"); if (mpeg1 && vertical_size>4095) mjpeg_error_exit1("vertical size must be less than 4096 (MPEG-1)"); if ((vertical_size&4095)==0) mjpeg_error_exit1("vertical_size must not be a multiple of 4096"); if (vertical_size%2 != 0) mjpeg_error_exit1("vertical_size must be a even (4:2:0)"); if(fieldpic) { if (vertical_size%2 != 0) mjpeg_error_exit1("vertical_size must be a even (field pictures)"); if ( vertical_size%4 != 0) mjpeg_error_exit1("vertical_size must be a multiple of 4 (4:2:0 field pictures)"); } if (mpeg1) { if (aspectratio<1 || aspectratio>14) mjpeg_error_exit1("pel_aspect_ratio must be between 1 and 14 (MPEG-1)"); } else { if (aspectratio<1 || aspectratio>4) mjpeg_error_exit1("aspect_ratio_information must be 1, 2, 3 or 4"); } if (frame_rate_code<1 || frame_rate_code>8) mjpeg_error_exit1("frame_rate code must be between 1 and 8"); if (bit_rate<=0.0) mjpeg_error_exit1("bit_rate must be positive"); if (bit_rate > ((1<<30)-1)*400.0) mjpeg_error_exit1("bit_rate must be less than 429 Gbit/s"); if (mpeg1 && bit_rate > ((1<<18)-1)*400.0) mjpeg_error_exit1("bit_rate must be less than 104 Mbit/s (MPEG-1)"); if (vbv_buffer_code<1 || vbv_buffer_code>0x3ffff) mjpeg_error_exit1("vbv_buffer_size must be in range 1..(2^18-1)"); if (mpeg1 && vbv_buffer_code>=1024) mjpeg_error_exit1("vbv_buffer_size must be less than 1024 (MPEG-1)"); if (video_format<0 || video_format>5) mjpeg_error_exit1("video_format must be in range 0...5"); if (color_primaries<1 || color_primaries>7 || color_primaries==3) mjpeg_error_exit1("color_primaries must be in range 1...2 or 4...7"); if (transfer_characteristics<1 || transfer_characteristics>7 || transfer_characteristics==3) mjpeg_error_exit1("transfer_characteristics must be in range 1...2 or 4...7"); if (matrix_coefficients<1 || matrix_coefficients>7 || matrix_coefficients==3) mjpeg_error_exit1("matrix_coefficients must be in range 1...2 or 4...7"); if (display_horizontal_size<0 || display_horizontal_size>16383) mjpeg_error_exit1("display_horizontal_size must be in range 0...16383"); if (display_vertical_size<0 || display_vertical_size>16383) mjpeg_error_exit1("display_vertical_size must be in range 0...16383"); if (dc_prec<0 || dc_prec>3) mjpeg_error_exit1("intra_dc_precision must be in range 0...3"); for (i=0; i<M; i++) { if (motion_data[i].forw_hor_f_code<1 || motion_data[i].forw_hor_f_code>9) mjpeg_error_exit1("f_code x must be between 1 and 9"); if (motion_data[i].forw_vert_f_code<1 || motion_data[i].forw_vert_f_code>9) mjpeg_error_exit1("f_code y must be between 1 and 9"); if (mpeg1 && motion_data[i].forw_hor_f_code>7) mjpeg_error_exit1("f_code x must be less than 8"); if (mpeg1 && motion_data[i].forw_vert_f_code>7) mjpeg_error_exit1("f_code y must be less than 8"); if (motion_data[i].sxf<=0) mjpeg_error_exit1("search window must be positive"); /* doesn't belong here */ if (motion_data[i].syf<=0) mjpeg_error_exit1("search window must be positive"); if (i!=0) { if (motion_data[i].back_hor_f_code<1 || motion_data[i].back_hor_f_code>9) mjpeg_error_exit1("f_code must be between 1 and 9"); if (motion_data[i].back_vert_f_code<1 || motion_data[i].back_vert_f_code>9) mjpeg_error_exit1("f_code must be between 1 and 9"); if (mpeg1 && motion_data[i].back_hor_f_code>7) mjpeg_error_exit1("f_code must be le less than 8"); if (mpeg1 && motion_data[i].back_vert_f_code>7) mjpeg_error_exit1("f_code must be le less than 8"); if (motion_data[i].sxb<=0) mjpeg_error_exit1("search window must be positive"); if (motion_data[i].syb<=0) mjpeg_error_exit1("search window must be positive"); } }}/* identifies valid profile / level combinations */static char profile_level_defined[5][4] ={/* HL H-14 ML LL */ {1, 1, 1, 0}, /* HP */ {0, 1, 0, 0}, /* Spat */ {0, 0, 1, 1}, /* SNR */ {1, 1, 1, 1}, /* MP */ {0, 0, 1, 0} /* SP */};static struct level_limits { unsigned int hor_f_code; unsigned int vert_f_code; unsigned int hor_size; unsigned int vert_size; unsigned int sample_rate; unsigned int bit_rate; /* Mbit/s */ unsigned int vbv_buffer_size; /* 16384 bit steps */} maxval_tab[4] ={ {9, 5, 1920, 1152, 62668800, 80, 597}, /* HL */ {9, 5, 1440, 1152, 47001600, 60, 448}, /* H-14 */ {8, 5, 720, 576, 10368000, 15, 112}, /* ML */ {7, 4, 352, 288, 3041280, 4, 29} /* LL */};static const int SP = 5;static const int MP = 4;static const int SNR = 3;static const int SPAT= 2;static const int HP = 1;static const int LL = 10;static const int ML = 8;static const int H14= 6;static const int HL = 4;void EncoderParams::ProfileAndLevelChecks(){ int i; struct level_limits *maxval; if (profile<0 || profile>15) mjpeg_error_exit1("profile must be between 0 and 15"); if (level<0 || level>15) mjpeg_error_exit1("level must be between 0 and 15"); if (profile>=8) { mjpeg_warn("profile uses a reserved value, conformance checks skipped"); return; } if (profile<HP || profile>SP) mjpeg_error_exit1("undefined Profile"); if (profile==SNR || profile==SPAT) mjpeg_error_exit1("This encoder currently generates no scalable bitstreams"); if (level<HL || level>LL || level&1) mjpeg_error_exit1("undefined Level"); maxval = &maxval_tab[(level-4) >> 1]; /* check profile@level combination */ if(!profile_level_defined[profile-1][(level-4) >> 1]) mjpeg_error_exit1("undefined profile@level combination"); /* profile (syntax) constraints */ if (profile==SP && M!=1) mjpeg_error_exit1("Simple Profile does not allow B pictures"); if (profile!=HP && dc_prec==3) mjpeg_error_exit1("11 bit DC precision only allowed in High Profile"); /* level (parameter value) constraints */ /* Table 8-8 */ if (frame_rate_code>5 && level>=ML) mjpeg_error_exit1("Picture rate greater than permitted in specified Level"); for (i=0; i<M; i++) { if (motion_data[i].forw_hor_f_code > maxval->hor_f_code) mjpeg_error_exit1("forward horizontal f_code greater than permitted in specified Level"); if (motion_data[i].forw_vert_f_code > maxval->vert_f_code) mjpeg_error_exit1("forward vertical f_code greater than permitted in specified Level"); if (i!=0) { if (motion_data[i].back_hor_f_code > maxval->hor_f_code) mjpeg_error_exit1("backward horizontal f_code greater than permitted in specified Level"); if (motion_data[i].back_vert_f_code > maxval->vert_f_code) mjpeg_error_exit1("backward vertical f_code greater than permitted in specified Level"); } } if (!ignore_constraints) { /* Table 8-10 */ if (horizontal_size > maxval->hor_size) mjpeg_error_exit1("Horizontal size is greater than permitted in specified Level"); if (vertical_size > maxval->vert_size) mjpeg_error_exit1("Vertical size is greater than permitted in specified Level"); /* Table 8-11 */ if (horizontal_size*vertical_size*frame_rate > maxval->sample_rate) mjpeg_error_exit1("Sample rate is greater than permitted in specified Level"); } /* Table 8-12 */ if (bit_rate> 1.0e6 * maxval->bit_rate) mjpeg_error_exit1("Bit rate is greater than permitted in specified Level"); /* Table 8-13 */ if (vbv_buffer_code > maxval->vbv_buffer_size) mjpeg_error_exit1("vbv_buffer_size exceeds High Level limit");}/* * Local variables: * c-file-style: "stroustrup" * tab-width: 4 * indent-tabs-mode: nil * End: */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?