conform.c
上传用户:hkgotone
上传日期:2013-02-17
资源大小:293k
文件大小:9k
源码类别:

Windows Mobile

开发平台:

C/C++

  1. /* conform.c, conformance checks                                            */
  2. /* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
  3. /*
  4.  * Disclaimer of Warranty
  5.  *
  6.  * These software programs are available to the user without any license fee or
  7.  * royalty on an "as is" basis.  The MPEG Software Simulation Group disclaims
  8.  * any and all warranties, whether express, implied, or statuary, including any
  9.  * implied warranties or merchantability or of fitness for a particular
  10.  * purpose.  In no event shall the copyright-holder be liable for any
  11.  * incidental, punitive, or consequential damages of any kind whatsoever
  12.  * arising from the use of these programs.
  13.  *
  14.  * This disclaimer of warranty extends to the user of these programs and user's
  15.  * customers, employees, agents, transferees, successors, and assigns.
  16.  *
  17.  * The MPEG Software Simulation Group does not represent or warrant that the
  18.  * programs furnished hereunder are free of infringement of any third-party
  19.  * patents.
  20.  *
  21.  * Commercial implementations of MPEG-1 and MPEG-2 video, including shareware,
  22.  * are subject to royalty fees to patent holders.  Many of these patents are
  23.  * general enough such that they are unavoidable regardless of implementation
  24.  * design.
  25.  *
  26.  */
  27. #include <stdio.h>
  28. #include <stdlib.h>
  29. #include "config.h"
  30. #include "global.h"
  31. /* check for (level independent) parameter limits */
  32. void range_checks()
  33. {
  34.   int i;
  35.   /* range and value checks */
  36.   if (horizontal_size<1 || horizontal_size>16383)
  37.     error("horizontal_size must be between 1 and 16383");
  38.   if (mpeg1 && horizontal_size>4095)
  39.     error("horizontal_size must be less than 4096 (MPEG-1)");
  40.   if ((horizontal_size&4095)==0)
  41.     error("horizontal_size must not be a multiple of 4096");
  42.   if (chroma_format!=CHROMA444 && horizontal_size%2 != 0)
  43.     error("horizontal_size must be a even (4:2:0 / 4:2:2)");
  44.   if (vertical_size<1 || vertical_size>16383)
  45.     error("vertical_size must be between 1 and 16383");
  46.   if (mpeg1 && vertical_size>4095)
  47.     error("vertical size must be less than 4096 (MPEG-1)");
  48.   if ((vertical_size&4095)==0)
  49.     error("vertical_size must not be a multiple of 4096");
  50.   if (chroma_format==CHROMA420 && vertical_size%2 != 0)
  51.     error("vertical_size must be a even (4:2:0)");
  52.   if(fieldpic)
  53.   {
  54.     if (vertical_size%2 != 0)
  55.       error("vertical_size must be a even (field pictures)");
  56.     if (chroma_format==CHROMA420 && vertical_size%4 != 0)
  57.       error("vertical_size must be a multiple of 4 (4:2:0 field pictures)");
  58.   }
  59.   if (mpeg1)
  60.   {
  61.     if (aspectratio<1 || aspectratio>14)
  62.       error("pel_aspect_ratio must be between 1 and 14 (MPEG-1)");
  63.   }
  64.   else
  65.   {
  66.     if (aspectratio<1 || aspectratio>4)
  67.       error("aspect_ratio_information must be 1, 2, 3 or 4");
  68.   }
  69.   if (frame_rate_code<1 || frame_rate_code>8)
  70.     error("frame_rate code must be between 1 and 8");
  71.   if (bit_rate<=0.0)
  72.     error("bit_rate must be positive");
  73.   if (bit_rate > ((1<<30)-1)*400.0)
  74.     error("bit_rate must be less than 429 Gbit/s");
  75.   if (mpeg1 && bit_rate > ((1<<18)-1)*400.0)
  76.     error("bit_rate must be less than 104 Mbit/s (MPEG-1)");
  77.   if (vbv_buffer_size<1 || vbv_buffer_size>0x3ffff)
  78.     error("vbv_buffer_size must be in range 1..(2^18-1)");
  79.   if (mpeg1 && vbv_buffer_size>=1024)
  80.     error("vbv_buffer_size must be less than 1024 (MPEG-1)");
  81.   if (chroma_format<CHROMA420 || chroma_format>CHROMA444)
  82.     error("chroma_format must be in range 1...3");
  83.   if (video_format<0 || video_format>4)
  84.     error("video_format must be in range 0...4");
  85.   if (color_primaries<1 || color_primaries>7 || color_primaries==3)
  86.     error("color_primaries must be in range 1...2 or 4...7");
  87.   if (transfer_characteristics<1 || transfer_characteristics>7
  88.       || transfer_characteristics==3)
  89.     error("transfer_characteristics must be in range 1...2 or 4...7");
  90.   if (matrix_coefficients<1 || matrix_coefficients>7 || matrix_coefficients==3)
  91.     error("matrix_coefficients must be in range 1...2 or 4...7");
  92.   if (display_horizontal_size<0 || display_horizontal_size>16383)
  93.     error("display_horizontal_size must be in range 0...16383");
  94.   if (display_vertical_size<0 || display_vertical_size>16383)
  95.     error("display_vertical_size must be in range 0...16383");
  96.   if (dc_prec<0 || dc_prec>3)
  97.     error("intra_dc_precision must be in range 0...3");
  98.   for (i=0; i<M; i++)
  99.   {
  100.     if (motion_data[i].forw_hor_f_code<1 || motion_data[i].forw_hor_f_code>9)
  101.       error("f_code must be between 1 and 9");
  102.     if (motion_data[i].forw_vert_f_code<1 || motion_data[i].forw_vert_f_code>9)
  103.       error("f_code must be between 1 and 9");
  104.     if (mpeg1 && motion_data[i].forw_hor_f_code>7)
  105.       error("f_code must be le less than 8");
  106.     if (mpeg1 && motion_data[i].forw_vert_f_code>7)
  107.       error("f_code must be le less than 8");
  108.     if (motion_data[i].sxf<=0)
  109.       error("search window must be positive"); /* doesn't belong here */
  110.     if (motion_data[i].syf<=0)
  111.       error("search window must be positive");
  112.     if (i!=0)
  113.     {
  114.       if (motion_data[i].back_hor_f_code<1 || motion_data[i].back_hor_f_code>9)
  115.         error("f_code must be between 1 and 9");
  116.       if (motion_data[i].back_vert_f_code<1 || motion_data[i].back_vert_f_code>9)
  117.         error("f_code must be between 1 and 9");
  118.       if (mpeg1 && motion_data[i].back_hor_f_code>7)
  119.         error("f_code must be le less than 8");
  120.       if (mpeg1 && motion_data[i].back_vert_f_code>7)
  121.         error("f_code must be le less than 8");
  122.       if (motion_data[i].sxb<=0)
  123.         error("search window must be positive");
  124.       if (motion_data[i].syb<=0)
  125.         error("search window must be positive");
  126.     }
  127.   }
  128. }
  129. /* identifies valid profile / level combinations */
  130. static char profile_level_defined[5][4] =
  131. {
  132. /* HL   H-14 ML   LL  */
  133.   {1,   1,   1,   0},  /* HP   */
  134.   {0,   1,   0,   0},  /* Spat */
  135.   {0,   0,   1,   1},  /* SNR  */
  136.   {1,   1,   1,   1},  /* MP   */
  137.   {0,   0,   1,   0}   /* SP   */
  138. };
  139. static struct level_limits {
  140.   int hor_f_code;
  141.   int vert_f_code;
  142.   int hor_size;
  143.   int vert_size;
  144.   int sample_rate;
  145.   int bit_rate; /* Mbit/s */
  146.   int vbv_buffer_size; /* 16384 bit steps */
  147. } maxval_tab[4] =
  148. {
  149.   {9, 5, 1920, 1152, 62668800, 80, 597}, /* HL */
  150.   {9, 5, 1440, 1152, 47001600, 60, 448}, /* H-14 */
  151.   {8, 5,  720,  576, 10368000, 15, 112}, /* ML */
  152.   {7, 4,  352,  288,  3041280,  4,  29}  /* LL */
  153. };
  154. #define SP   5
  155. #define MP   4
  156. #define SNR  3
  157. #define SPAT 2
  158. #define HP   1
  159. #define LL  10
  160. #define ML   8
  161. #define H14  6
  162. #define HL   4
  163. void profile_and_level_checks()
  164. {
  165.   int i;
  166.   struct level_limits *maxval;
  167.   if (profile<0 || profile>15)
  168.     error("profile must be between 0 and 15");
  169.   if (level<0 || level>15)
  170.     error("level must be between 0 and 15");
  171.   if (profile>=8)
  172.   {
  173.     if (!quiet)
  174.       fprintf(stderr,"Warning: profile uses a reserved value, conformance checks skippedn");
  175.     return;
  176.   }
  177.   if (profile<HP || profile>SP)
  178.     error("undefined Profile");
  179.   if (profile==SNR || profile==SPAT)
  180.     error("This encoder currently generates no scalable bitstreams");
  181.   if (level<HL || level>LL || level&1)
  182.     error("undefined Level");
  183.   maxval = &maxval_tab[(level-4) >> 1];
  184.   /* check profile@level combination */
  185.   if(!profile_level_defined[profile-1][(level-4) >> 1])
  186.     error("undefined profile@level combination");
  187.   
  188.   /* profile (syntax) constraints */
  189.   if (profile==SP && M!=1)
  190.     error("Simple Profile does not allow B pictures");
  191.   if (profile!=HP && chroma_format!=CHROMA420)
  192.     error("chroma format must be 4:2:0 in specified Profile");
  193.   if (profile==HP && chroma_format==CHROMA444)
  194.     error("chroma format must be 4:2:0 or 4:2:2 in High Profile");
  195.   if (profile>=MP) /* SP, MP: constrained repeat_first_field */
  196.   {
  197.     if (frame_rate_code<=2 && repeatfirst)
  198.       error("repeat_first_first must be zero");
  199.     if (frame_rate_code<=6 && prog_seq && repeatfirst)
  200.       error("repeat_first_first must be zero");
  201.   }
  202.   if (profile!=HP && dc_prec==3)
  203.     error("11 bit DC precision only allowed in High Profile");
  204.   /* level (parameter value) constraints */
  205.   /* Table 8-8 */
  206.   if (frame_rate_code>5 && level>=ML)
  207.     error("Picture rate greater than permitted in specified Level");
  208.   for (i=0; i<M; i++)
  209.   {
  210.     if (motion_data[i].forw_hor_f_code > maxval->hor_f_code)
  211.       error("forward horizontal f_code greater than permitted in specified Level");
  212.     if (motion_data[i].forw_vert_f_code > maxval->vert_f_code)
  213.       error("forward vertical f_code greater than permitted in specified Level");
  214.     if (i!=0)
  215.     {
  216.       if (motion_data[i].back_hor_f_code > maxval->hor_f_code)
  217.         error("backward horizontal f_code greater than permitted in specified Level");
  218.   
  219.       if (motion_data[i].back_vert_f_code > maxval->vert_f_code)
  220.         error("backward vertical f_code greater than permitted in specified Level");
  221.     }
  222.   }
  223.   /* Table 8-10 */
  224.   if (horizontal_size > maxval->hor_size)
  225.     error("Horizontal size is greater than permitted in specified Level");
  226.   if (vertical_size > maxval->vert_size)
  227.     error("Horizontal size is greater than permitted in specified Level");
  228.   /* Table 8-11 */
  229.   if (horizontal_size*vertical_size*frame_rate > maxval->sample_rate)
  230.     error("Sample rate is greater than permitted in specified Level");
  231.   /* Table 8-12 */
  232.   if (bit_rate> 1.0e6 * maxval->bit_rate)
  233.     error("Bit rate is greater than permitted in specified Level");
  234.   /* Table 8-13 */
  235.   if (vbv_buffer_size > maxval->vbv_buffer_size)
  236.     error("vbv_buffer_size exceeds High Level limit");
  237. }