~ubuntu-branches/ubuntu/saucy/gnash/saucy-proposed

« back to all changes in this revision

Viewing changes to libmedia/gst/swfdec_codec_gst.c

  • Committer: Bazaar Package Importer
  • Author(s): Sindhudweep Narayan Sarkar
  • Date: 2009-10-07 00:06:10 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20091007000610-mj9rwqe774gizn1j
Tags: 0.8.6-0ubuntu1
new upstream release 0.8.6 (LP: #435897)

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
swfdec_gst_compare_features (gconstpointer a_, gconstpointer b_)
119
119
{
120
120
  int diff;
121
 
  GstPluginFeature *a = GST_PLUGIN_FEATURE (a_);
122
 
  GstPluginFeature *b = GST_PLUGIN_FEATURE (b_);
 
121
  GstPluginFeature *a = (GstPluginFeature *)GST_PLUGIN_FEATURE (a_);
 
122
  GstPluginFeature *b = (GstPluginFeature *)GST_PLUGIN_FEATURE (b_);
123
123
 
124
124
  diff = gst_plugin_feature_get_rank (b) - gst_plugin_feature_get_rank (a);
125
125
  if (diff != 0)