From ee7c28d455676eedea903d2abff7953275d83e2c Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sun, 2 Jun 2002 11:54:36 +0000 Subject: [PATCH] Remove the media specific types, the unit type is now defined by the caps (frames/samples/etc..) Original commit message from CVS: Remove the media specific types, the unit type is now defined by the caps (frames/samples/etc..) --- gst/gstformat.h | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/gst/gstformat.h b/gst/gstformat.h index 918c3f94c7..14ac687fa9 100644 --- a/gst/gstformat.h +++ b/gst/gstformat.h @@ -32,16 +32,11 @@ typedef enum { GST_FORMAT_NONE = 0, GST_FORMAT_DEFAULT = 1, GST_FORMAT_BYTES = 2, - GST_FORMAT_TIME = 6, - GST_FORMAT_BUFFERS = 7, - GST_FORMAT_PERCENT = 8, - - /* audio related */ - GST_FORMAT_SAMPLES = 3, - - /* video related */ - GST_FORMAT_FRAMES = 4, /* can also be used for compressed audio */ - GST_FORMAT_FIELDS = 5, + GST_FORMAT_TIME = 3, + GST_FORMAT_BUFFERS = 4, + GST_FORMAT_PERCENT = 5, + /* samples for audio, frames/fields for video */ + GST_FORMAT_UNIT = 6, } GstFormat; G_END_DECLS