diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-01-20 16:10:26 +0100 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-01-25 11:54:23 +0100 |
commit | 203dd6fbe130b9b1e1be68ff82ca69d808d7dc83 (patch) | |
tree | a5c7f40c01578f377add839eb5a8cce3f441a2fc /gst/gstmemory.h | |
parent | 93074b899c3a24101de2ff5b928cf8ae782c874b (diff) |
memory: make guint8 * for easy usage
Diffstat (limited to 'gst/gstmemory.h')
-rw-r--r-- | gst/gstmemory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstmemory.h b/gst/gstmemory.h index 6231f7418..430064150 100644 --- a/gst/gstmemory.h +++ b/gst/gstmemory.h @@ -110,7 +110,7 @@ typedef enum { */ typedef struct { GstMemory *memory; - gpointer data; + guint8 *data; gsize size; gsize maxsize; } GstMapInfo; |