diff options
author | Erik Walthinsen <omega@temple-baptist.org> | 2000-12-12 06:49:26 +0000 |
---|---|---|
committer | Erik Walthinsen <omega@temple-baptist.org> | 2000-12-12 06:49:26 +0000 |
commit | ffbc7201a75ff912d334f1ae166d62543666bc99 (patch) | |
tree | 4e3f8b25df85bb3f65c39b2f90aaf433444d4e35 /editor | |
parent | c28633b01df8a6cae73a208d395cf17d43d3da9d (diff) |
Brand new source, the cdparanoia source. Reads audio data from a CD, writes out raw audio. The tests/paranoia.c pro...
Original commit message from CVS:
Brand new source, the cdparanoia source. Reads audio data from a CD,
writes out raw audio. The tests/paranoia.c program will simply hook this
up to a sound card. It works perfectly.
Next step is to flesh out the rest of the element, including pad caps,
better seek and playout control, signals, and whatever else comes up.
A minor patch to the editor is included here, the GstElementFactory details
struct has a name change from 'class' to 'klass' that wasn't reflected
in the elementselect widget. Fixd.
Diffstat (limited to 'editor')
-rw-r--r-- | editor/gstelementselect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/gstelementselect.c b/editor/gstelementselect.c index 36276dd86..a137f5a39 100644 --- a/editor/gstelementselect.c +++ b/editor/gstelementselect.c @@ -200,9 +200,9 @@ GstElementFactory *element_select_dialog() { elements = gst_elementfactory_get_list(); while (elements) { element = (GstElementFactory *)(elements->data); - printf("%s %s\n", element->name, element->details->class); + printf("%s %s\n", element->name, element->details->klass); /* split up the factory's class */ - classes = g_strsplit(element->details->class,"/",0); + classes = g_strsplit(element->details->klass,"/",0); class = classes; curlist = &classtree; /* walk down the class tree to find where to place this element */ |