Home | History | Annotate | Download | only in examples

Lines Matching full:profile

95 // Map a video codec and profile to string
97 const char *videoProfileToString(XAuint32 codec, XAuint32 profile) {
155 return id_pair_to_string(codec, profile, table, sizeof(table) / sizeof(table[0]));
271 /* get the number of profile / level combinations */
274 fprintf(stdout, "decoder %s has %d profile/level combinations:\n\t",
276 /* display the profile / level combinations */
282 XAuint32 profile = decDescriptor.profileSetting;
284 fprintf(stdout, "%u/%u ", profile, level);
286 printf("(%s/%s) ", videoProfileToString(decoder, profile),
308 fprintf(stdout, "profile / levels combinations, that map to the constants defined in ");