1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
/* 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.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include "mpeg2enc_config.h"
#include "mpeg2enc_global.h"
/* check for (level independent) parameter limits */
VTK_MPEG2ENC_EXPORT void MPEG2_range_checks(mpeg2_struct)
struct MPEG2_structure *mpeg2_struct;
{
int i;
/* range and value checks */
if (mpeg2_struct->horizontal_size<1 || mpeg2_struct->horizontal_size>16383)
(*(mpeg2_struct->report_error))("horizontal_size must be between 1 and 16383");
if (mpeg2_struct->mpeg1 && mpeg2_struct->horizontal_size>4095)
(*(mpeg2_struct->report_error))("horizontal_size must be less than 4096 (MPEG-1)");
if ((mpeg2_struct->horizontal_size&4095)==0)
(*(mpeg2_struct->report_error))("horizontal_size must not be a multiple of 4096");
if (mpeg2_struct->chroma_format!=CHROMA444 && mpeg2_struct->horizontal_size%2 != 0)
(*(mpeg2_struct->report_error))("horizontal_size must be a even (4:2:0 / 4:2:2)");
if (mpeg2_struct->vertical_size<1 || mpeg2_struct->vertical_size>16383)
(*(mpeg2_struct->report_error))("vertical_size must be between 1 and 16383");
if (mpeg2_struct->mpeg1 && mpeg2_struct->vertical_size>4095)
(*(mpeg2_struct->report_error))("vertical size must be less than 4096 (MPEG-1)");
if ((mpeg2_struct->vertical_size&4095)==0)
(*(mpeg2_struct->report_error))("vertical_size must not be a multiple of 4096");
if (mpeg2_struct->chroma_format==CHROMA420 && mpeg2_struct->vertical_size%2 != 0)
(*(mpeg2_struct->report_error))("vertical_size must be a even (4:2:0)");
if(mpeg2_struct->fieldpic)
{
if (mpeg2_struct->vertical_size%2 != 0)
(*(mpeg2_struct->report_error))("vertical_size must be a even (field pictures)");
if (mpeg2_struct->chroma_format==CHROMA420 && mpeg2_struct->vertical_size%4 != 0)
(*(mpeg2_struct->report_error))("vertical_size must be a multiple of 4 (4:2:0 field pictures)");
}
if (mpeg2_struct->mpeg1)
{
if (mpeg2_struct->aspectratio<1 || mpeg2_struct->aspectratio>14)
(*(mpeg2_struct->report_error))("pel_aspect_ratio must be between 1 and 14 (MPEG-1)");
}
else
{
if (mpeg2_struct->aspectratio<1 || mpeg2_struct->aspectratio>4)
(*(mpeg2_struct->report_error))("aspect_ratio_information must be 1, 2, 3 or 4");
}
if (mpeg2_struct->frame_rate_code<1 || mpeg2_struct->frame_rate_code>8)
(*(mpeg2_struct->report_error))("frame_rate code must be between 1 and 8");
if (mpeg2_struct->bit_rate<=0.0)
(*(mpeg2_struct->report_error))("bit_rate must be positive");
if (mpeg2_struct->bit_rate > ((1<<30)-1)*400.0)
(*(mpeg2_struct->report_error))("bit_rate must be less than 429 Gbit/s");
if (mpeg2_struct->mpeg1 && mpeg2_struct->bit_rate > ((1<<18)-1)*400.0)
(*(mpeg2_struct->report_error))("bit_rate must be less than 104 Mbit/s (MPEG-1)");
if (mpeg2_struct->vbv_buffer_size<1 || mpeg2_struct->vbv_buffer_size>0x3ffff)
(*(mpeg2_struct->report_error))("vbv_buffer_size must be in range 1..(2^18-1)");
if (mpeg2_struct->mpeg1 && mpeg2_struct->vbv_buffer_size>=1024)
(*(mpeg2_struct->report_error))("vbv_buffer_size must be less than 1024 (MPEG-1)");
if (mpeg2_struct->chroma_format<CHROMA420 || mpeg2_struct->chroma_format>CHROMA444)
(*(mpeg2_struct->report_error))("chroma_format must be in range 1...3");
if (mpeg2_struct->video_format<0 || mpeg2_struct->video_format>4)
(*(mpeg2_struct->report_error))("video_format must be in range 0...4");
if (mpeg2_struct->color_primaries<1 || mpeg2_struct->color_primaries>7 || mpeg2_struct->color_primaries==3)
(*(mpeg2_struct->report_error))("color_primaries must be in range 1...2 or 4...7");
if (mpeg2_struct->transfer_characteristics<1 || mpeg2_struct->transfer_characteristics>7
|| mpeg2_struct->transfer_characteristics==3)
(*(mpeg2_struct->report_error))("transfer_characteristics must be in range 1...2 or 4...7");
if (mpeg2_struct->matrix_coefficients<1 || mpeg2_struct->matrix_coefficients>7 || mpeg2_struct->matrix_coefficients==3)
(*(mpeg2_struct->report_error))("matrix_coefficients must be in range 1...2 or 4...7");
if (mpeg2_struct->display_horizontal_size<0 || mpeg2_struct->display_horizontal_size>16383)
(*(mpeg2_struct->report_error))("display_horizontal_size must be in range 0...16383");
if (mpeg2_struct->display_vertical_size<0 || mpeg2_struct->display_vertical_size>16383)
(*(mpeg2_struct->report_error))("display_vertical_size must be in range 0...16383");
if (mpeg2_struct->dc_prec<0 || mpeg2_struct->dc_prec>3)
(*(mpeg2_struct->report_error))("intra_dc_precision must be in range 0...3");
for (i=0; i<mpeg2_struct->M_val; i++)
{
if (mpeg2_struct->motion_data[i].forw_hor_f_code<1 || mpeg2_struct->motion_data[i].forw_hor_f_code>9)
(*(mpeg2_struct->report_error))("f_code must be between 1 and 9");
if (mpeg2_struct->motion_data[i].forw_vert_f_code<1 || mpeg2_struct->motion_data[i].forw_vert_f_code>9)
(*(mpeg2_struct->report_error))("f_code must be between 1 and 9");
if (mpeg2_struct->mpeg1 && mpeg2_struct->motion_data[i].forw_hor_f_code>7)
(*(mpeg2_struct->report_error))("f_code must be le less than 8");
if (mpeg2_struct->mpeg1 && mpeg2_struct->motion_data[i].forw_vert_f_code>7)
(*(mpeg2_struct->report_error))("f_code must be le less than 8");
if (mpeg2_struct->motion_data[i].sxf<=0)
(*(mpeg2_struct->report_error))("search window must be positive"); /* doesn't belong here */
if (mpeg2_struct->motion_data[i].syf<=0)
(*(mpeg2_struct->report_error))("search window must be positive");
if (i!=0)
{
if (mpeg2_struct->motion_data[i].back_hor_f_code<1 || mpeg2_struct->motion_data[i].back_hor_f_code>9)
(*(mpeg2_struct->report_error))("f_code must be between 1 and 9");
if (mpeg2_struct->motion_data[i].back_vert_f_code<1 || mpeg2_struct->motion_data[i].back_vert_f_code>9)
(*(mpeg2_struct->report_error))("f_code must be between 1 and 9");
if (mpeg2_struct->mpeg1 && mpeg2_struct->motion_data[i].back_hor_f_code>7)
(*(mpeg2_struct->report_error))("f_code must be le less than 8");
if (mpeg2_struct->mpeg1 && mpeg2_struct->motion_data[i].back_vert_f_code>7)
(*(mpeg2_struct->report_error))("f_code must be le less than 8");
if (mpeg2_struct->motion_data[i].sxb<=0)
(*(mpeg2_struct->report_error))("search window must be positive");
if (mpeg2_struct->motion_data[i].syb<=0)
(*(mpeg2_struct->report_error))("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 {
int hor_f_code;
int vert_f_code;
int hor_size;
int vert_size;
int sample_rate;
int bit_rate; /* Mbit/s */
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 */
};
#define SP 5
#define MP 4
#define SNR 3
#define SPAT 2
#define HP 1
#define LL 10
#define ML 8
#define H14 6
#define HL 4
VTK_MPEG2ENC_EXPORT void MPEG2_profile_and_level_checks(mpeg2_struct)
struct MPEG2_structure *mpeg2_struct;
{
int i;
struct level_limits *maxval;
if (mpeg2_struct->profile<0 || mpeg2_struct->profile>15)
(*(mpeg2_struct->report_error))("profile must be between 0 and 15");
if (mpeg2_struct->level<0 || mpeg2_struct->level>15)
(*(mpeg2_struct->report_error))("level must be between 0 and 15");
if (mpeg2_struct->profile>=8)
{
if (!mpeg2_struct->quiet)
fprintf(stderr,"Warning: profile uses a reserved value, conformance checks skipped\n");
return;
}
if (mpeg2_struct->profile<HP || mpeg2_struct->profile>SP)
(*(mpeg2_struct->report_error))("undefined Profile");
if (mpeg2_struct->profile==SNR || mpeg2_struct->profile==SPAT)
(*(mpeg2_struct->report_error))("This encoder currently generates no scalable bitstreams");
if (mpeg2_struct->level<HL || mpeg2_struct->level>LL || mpeg2_struct->level&1)
(*(mpeg2_struct->report_error))("undefined Level");
maxval = &maxval_tab[(mpeg2_struct->level-4) >> 1];
/* check profile@level combination */
if(!profile_level_defined[mpeg2_struct->profile-1][(mpeg2_struct->level-4) >> 1])
(*(mpeg2_struct->report_error))("undefined profile@level combination");
/* profile (syntax) constraints */
if (mpeg2_struct->profile==SP && mpeg2_struct->M_val!=1)
(*(mpeg2_struct->report_error))("Simple Profile does not allow B pictures");
if (mpeg2_struct->profile!=HP && mpeg2_struct->chroma_format!=CHROMA420)
(*(mpeg2_struct->report_error))("chroma format must be 4:2:0 in specified Profile");
if (mpeg2_struct->profile==HP && mpeg2_struct->chroma_format==CHROMA444)
(*(mpeg2_struct->report_error))("chroma format must be 4:2:0 or 4:2:2 in High Profile");
if (mpeg2_struct->profile>=MP) /* SP, MP: constrained repeat_first_field */
{
if (mpeg2_struct->frame_rate_code<=2 && mpeg2_struct->repeatfirst)
(*(mpeg2_struct->report_error))("repeat_first_first must be zero");
if (mpeg2_struct->frame_rate_code<=6 && mpeg2_struct->prog_seq && mpeg2_struct->repeatfirst)
(*(mpeg2_struct->report_error))("repeat_first_first must be zero");
}
if (mpeg2_struct->profile!=HP && mpeg2_struct->dc_prec==3)
(*(mpeg2_struct->report_error))("11 bit DC precision only allowed in High Profile");
/* level (parameter value) constraints */
/* Table 8-8 */
if (mpeg2_struct->frame_rate_code>5 && mpeg2_struct->level>=ML)
(*(mpeg2_struct->report_error))("Picture rate greater than permitted in specified Level");
for (i=0; i<mpeg2_struct->M_val; i++)
{
if (mpeg2_struct->motion_data[i].forw_hor_f_code > maxval->hor_f_code)
(*(mpeg2_struct->report_error))("forward horizontal f_code greater than permitted in specified Level");
if (mpeg2_struct->motion_data[i].forw_vert_f_code > maxval->vert_f_code)
(*(mpeg2_struct->report_error))("forward vertical f_code greater than permitted in specified Level");
if (i!=0)
{
if (mpeg2_struct->motion_data[i].back_hor_f_code > maxval->hor_f_code)
(*(mpeg2_struct->report_error))("backward horizontal f_code greater than permitted in specified Level");
if (mpeg2_struct->motion_data[i].back_vert_f_code > maxval->vert_f_code)
(*(mpeg2_struct->report_error))("backward vertical f_code greater than permitted in specified Level");
}
}
/* Table 8-10 */
if (mpeg2_struct->horizontal_size > maxval->hor_size)
(*(mpeg2_struct->report_error))("Horizontal size is greater than permitted in specified Level");
if (mpeg2_struct->vertical_size > maxval->vert_size)
(*(mpeg2_struct->report_error))("Horizontal size is greater than permitted in specified Level");
/* Table 8-11 */
if (mpeg2_struct->horizontal_size*mpeg2_struct->vertical_size*mpeg2_struct->frame_rate > maxval->sample_rate)
(*(mpeg2_struct->report_error))("Sample rate is greater than permitted in specified Level");
/* Table 8-12 */
if (mpeg2_struct->bit_rate> 1.0e6 * maxval->bit_rate)
(*(mpeg2_struct->report_error))("Bit rate is greater than permitted in specified Level");
/* Table 8-13 */
if (mpeg2_struct->vbv_buffer_size > maxval->vbv_buffer_size)
(*(mpeg2_struct->report_error))("vbv_buffer_size exceeds High Level limit");
}
|