summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/media-info/README
diff options
context:
space:
mode:
authorChristian Schaller <uraeus@gnome.org>2005-05-06 11:41:28 +0000
committerChristian Schaller <uraeus@gnome.org>2005-05-06 11:41:28 +0000
commit086b25d40a8fc3606d70c32af7f6af178e2d804d (patch)
tree2b138bca28d921d8798599f2c745d8014ec631ba /gst-libs/gst/media-info/README
parent4cb81e7ecbdc6376e5c676dcffa11758434acd1e (diff)
downloadgst-plugins-bad-086b25d40a8fc3606d70c32af7f6af178e2d804d.tar.gz
gst-plugins-bad-086b25d40a8fc3606d70c32af7f6af178e2d804d.tar.bz2
gst-plugins-bad-086b25d40a8fc3606d70c32af7f6af178e2d804d.zip
remove gst-libs from gst-plugins module as it is in gst-plugins-base now
Original commit message from CVS: remove gst-libs from gst-plugins module as it is in gst-plugins-base now
Diffstat (limited to 'gst-libs/gst/media-info/README')
-rw-r--r--gst-libs/gst/media-info/README30
1 files changed, 0 insertions, 30 deletions
diff --git a/gst-libs/gst/media-info/README b/gst-libs/gst/media-info/README
deleted file mode 100644
index f17f570f..00000000
--- a/gst-libs/gst/media-info/README
+++ /dev/null
@@ -1,30 +0,0 @@
-* media-info is a library to collect metadata and streaminfo from media
- files
-
-* the current implementation is idler-based.
-
-* you create a new media_info object
-* you set the string name of a source element to use using g_object_set or
- gst_media_info_set_source
-* you declare you'll read a given file by using gst_media_info_read_with_idler
-* you loop gst_media_info_read_idler (info, &stream) as long as it returns TRUE
- and as long as stream is still NULL
-
-
-* INTERNALS:
- - instance_init sets up the media info reader, its elements, and connects
- the deep_notify callback
- - read_with_idler resets the media info reader object,
- and sets location and flags
-
- - read_idler runs through a state machine:
- NULL - TYPEFIND - STREAM - METADATA - STREAMINFO - FORMAT
-
- - NULL: just returns find_type_pre, which moves state to TYPEFIND
- - TYPEFIND:
- - iterates as long as it can until it has priv->type
- - find_type_post
- - call gmi_set_mime which creates a pipeline to decode stuff
- - move to STREAM
-
- - STREAM