Lines Matching refs:profile
95 thiz->profile = MFX_PROFILE_VP9_0; in gst_msdkvp9enc_set_format()
105 const gchar *profile; in gst_msdkvp9enc_set_format() local
116 profile = gst_structure_get_string (s, "profile"); in gst_msdkvp9enc_set_format()
118 if (profile) { in gst_msdkvp9enc_set_format()
119 if (!strcmp (profile, "3")) { in gst_msdkvp9enc_set_format()
120 thiz->profile = MFX_PROFILE_VP9_3; in gst_msdkvp9enc_set_format()
121 } else if (!strcmp (profile, "2")) { in gst_msdkvp9enc_set_format()
122 thiz->profile = MFX_PROFILE_VP9_2; in gst_msdkvp9enc_set_format()
123 } else if (!strcmp (profile, "1")) { in gst_msdkvp9enc_set_format()
124 thiz->profile = MFX_PROFILE_VP9_1; in gst_msdkvp9enc_set_format()
125 } else if (!strcmp (profile, "0")) { in gst_msdkvp9enc_set_format()
126 thiz->profile = MFX_PROFILE_VP9_0; in gst_msdkvp9enc_set_format()
203 profile_to_string (gint profile) in profile_to_string() argument
205 switch (profile) { in profile_to_string()
226 const gchar *profile; in gst_msdkvp9enc_set_src_caps() local
231 profile = profile_to_string (encoder->param.mfx.CodecProfile); in gst_msdkvp9enc_set_src_caps()
232 if (profile) in gst_msdkvp9enc_set_src_caps()
233 gst_structure_set (structure, "profile", G_TYPE_STRING, profile, NULL); in gst_msdkvp9enc_set_src_caps()