[866/906] upload: update some docs

This commit is contained in:
Matthew Waters 2013-11-23 22:57:03 +11:00
parent 49a19fb6b1
commit 83d27b9bc2
2 changed files with 5 additions and 9 deletions

View file

@ -529,8 +529,8 @@ gst_gl_upload_init_format (GstGLUpload * upload, GstVideoFormat v_format,
* @buffer: a #GstBuffer
* @tex_id: resulting texture
*
* Uploads @buffer to the texture given by @texture_id. @texture_id is valid
* until gst_gl_upload_release() is called.
* Uploads @buffer to the texture given by @tex_id. @tex_id is valid
* until gst_gl_upload_release_buffer() is called.
*
* Returns: whether the upload was successful
*/
@ -873,7 +873,7 @@ gst_gl_upload_add_video_gl_texture_upload_meta (GstGLUpload * upload,
* @texture_id: the texture id to download
* @data: where the downloaded data should go
*
* Uploads @data into @texture_id. @data size and format is specified by
* Uploads @data into @texture_id. data size and format is specified by
* the #GstVideoFormat passed to gst_gl_upload_init_format()
*
* Returns: whether the upload was successful

View file

@ -38,15 +38,12 @@ GType gst_gl_upload_get_type (void);
/**
* GstGLUpload
* @parent: the parent object
* @lock: thread safety
* @display: a #GstGLDisplay
* @info: the output video info
*
* Upload information for GL textures
* Opaque #GstGLUpload object
*/
struct _GstGLUpload
{
/* <private> */
GObject parent;
GMutex lock;
@ -56,7 +53,6 @@ struct _GstGLUpload
/* input data */
GstVideoInfo info;
/* <private> */
gpointer data[GST_VIDEO_MAX_PLANES];
gboolean initted;