Lines Matching defs:profile_tbl

1847   unsigned const int *profile_tbl = NULL;
1882 profile_tbl = (unsigned int const *)
1884 profile_tbl += MPEG4_720P_LEVEL*5;
1889 profile_tbl = (unsigned int const *)
1891 profile_tbl += MPEG4_720P_LEVEL*5;
1933 if((requested_profile.profile == VEN_PROFILE_MPEG4_SP) && (mb_per_frame >= profile_tbl[0]) &&
1934 (mb_per_sec >= profile_tbl[1]))
2712 unsigned const int *profile_tbl = NULL;
2750 profile_tbl = (unsigned int const *)mpeg4_profile_level_table;
2754 profile_tbl = (unsigned int const *)
2798 profile_tbl = (unsigned int const *)h264_profile_level_table;
2802 profile_tbl = (unsigned int const *)
2807 profile_tbl = (unsigned int const *)
2845 profile_tbl = (unsigned int const *)h263_profile_level_table;
2878 if(mb_per_frame <= (int)profile_tbl[0])
2880 if(mb_per_sec <= (int)profile_tbl[1])
2882 if(m_sVenc_cfg.targetbitrate <= (int)profile_tbl[2])
2884 new_level = (int)profile_tbl[3];
2885 new_profile = (int)profile_tbl[4];
2892 profile_tbl = profile_tbl + 5;
2893 }while(profile_tbl[0] != 0);
2914 unsigned const int *profile_tbl = NULL;
2921 profile_tbl = (unsigned int const *)mpeg4_profile_level_table;
2925 profile_tbl = (unsigned int const *)
2937 profile_tbl = (unsigned int const *)h264_profile_level_table;
2941 profile_tbl = (unsigned int const *)
2946 profile_tbl = (unsigned int const *)
2959 profile_tbl = (unsigned int const *)h263_profile_level_table;
2971 while(profile_tbl[0] != 0)
2973 if(profile_tbl[3] == m_eLevel)
2975 if(nTargetBitrate > profile_tbl[2])
2978 " is %u", m_eProfile, m_eLevel, profile_tbl[2]);
2982 profile_tbl += 5;