Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 386651
Collapse All | Expand All

(-)plparse/totem-pl-parser-videosite.c (-3 / +3 lines)
Lines 75-81 Link Here
75
#ifdef HAVE_QUVI
75
#ifdef HAVE_QUVI
76
	QUVIcode rc;
76
	QUVIcode rc;
77
	quvi_t handle;
77
	quvi_t handle;
78
	quvi_video_t v;
78
	quvi_media_t v;
79
	char *uri;
79
	char *uri;
80
	/* properties */
80
	/* properties */
81
	const char *video_uri;
81
	const char *video_uri;
Lines 104-111 Link Here
104
		return TOTEM_PL_PARSER_RESULT_ERROR;
104
		return TOTEM_PL_PARSER_RESULT_ERROR;
105
	}
105
	}
106
106
107
	getprop (QUVIPROP_VIDEOURL, video_uri);
107
	getprop (QUVIPROP_MEDIAURL, video_uri);
108
	if (quvi_getprop (v, QUVIPROP_VIDEOFILELENGTH, &length) == QUVI_OK)
108
	if (quvi_getprop (v, QUVIPROP_MEDIACONTENTLENGTH, &length) == QUVI_OK)
109
		length_str = g_strdup_printf ("%f", length);
109
		length_str = g_strdup_printf ("%f", length);
110
	else
110
	else
111
		length_str = NULL;
111
		length_str = NULL;

Return to bug 386651