Compilation fix. SOMEONE ELSE PLEASE FIX THIS CORRECTLY.

Original commit message from CVS:
Compilation fix.  SOMEONE ELSE PLEASE FIX THIS CORRECTLY.
This commit is contained in:
David Schleef 2003-06-16 17:46:38 +00:00
parent e8d306adb4
commit 4343644704
2 changed files with 12 additions and 0 deletions

View file

@ -768,3 +768,11 @@ gst_ffmpeg_formatid_to_caps (const gchar *format_name)
return caps;
}
enum CodecID
gst_ffmpeg_caps_to_codecid (GstCaps *caps, enum CodecID *id)
{
/* FIXME */
return 0;
}

View file

@ -61,4 +61,8 @@ gst_ffmpeg_caps_to_codectype (enum CodecType type,
GstCaps *
gst_ffmpeg_formatid_to_caps (const gchar *format_name);
enum CodecID
gst_ffmpeg_caps_to_codecid (GstCaps *caps,
enum CodecID *id);
#endif /* __GST_FFMPEG_CODECMAP_H__ */