0

对于结构

typedef struct Recording_Settings recording_settings;
struct Recording_Settings
{
    gchar *profile;
    gchar *destination;
};

recording_settings rec_settings;

当我尝试执行此操作时收到警告

static void profile_combo_change_cb(GtkComboBox *combo, gpointer userdata)
{
    GtkTreeIter iter;
    GtkTreeModel *model;

    /* Grab the encoding profile choosen */
    model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo));
    if (gtk_combo_box_get_active_iter(GTK_COMBO_BOX(combo), &iter)) {
        gchar *media_type;
        gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &media_type, -1);
        rec_settings.profile = rb_gst_get_encoding_profile(media_type); // Warning: assignment from incompatible pointer type
        g_free (media_type);
    }
}

我误解或遗漏了什么吗?

谢谢。

4

1 回答 1

0

的类型rb_gst_get_encoding_profile似乎是

GstEncodingProfile *rb_gst_get_encoding_profile (const char *media_type);

但是您将其返回值分配给 a gchar *

GstEncodingProfile是一种struct类型,据我所知 ( typedef struct _GstEncodingProfile GstEncodingProfile;),并且gchar可能是typedef一种字符类型(很可能typedef char gchar;来自 glib)。所以类型将不兼容。

于 2012-12-28T21:27:52.980 回答