2013-06-11 15:04:55 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2013 Matthew Waters <ystreet00@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
2013-07-10 09:24:34 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2013-06-11 15:04:55 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2013-07-10 15:03:04 +00:00
|
|
|
#include "gl.h"
|
2013-06-11 15:04:55 +00:00
|
|
|
#include "gstglutils.h"
|
|
|
|
|
|
|
|
#ifndef GL_FRAMEBUFFER_UNDEFINED
|
|
|
|
#define GL_FRAMEBUFFER_UNDEFINED 0x8219
|
|
|
|
#endif
|
|
|
|
#ifndef GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT
|
|
|
|
#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6
|
|
|
|
#endif
|
|
|
|
#ifndef GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT
|
|
|
|
#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7
|
|
|
|
#endif
|
|
|
|
#ifndef GL_FRAMEBUFFER_UNSUPPORTED
|
|
|
|
#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD
|
|
|
|
#endif
|
|
|
|
#ifndef GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS
|
|
|
|
#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS 0x8CD9
|
|
|
|
#endif
|
|
|
|
|
2013-09-15 04:23:43 +00:00
|
|
|
#define USING_OPENGL(context) (gst_gl_context_get_gl_apie (context) & GST_GL_API_OPENGL)
|
|
|
|
#define USING_OPENGL3(context) (gst_gl_context_get_gl_apie (context) & GST_GL_API_OPENGL3)
|
|
|
|
#define USING_GLES(context) (gst_gl_context_get_gl_apie (context) & GST_GL_API_GLES)
|
|
|
|
#define USING_GLES2(context) (gst_gl_context_get_gl_apie (context)->gl_api & GST_GL_API_GLES2)
|
|
|
|
#define USING_GLES3(context) (gst_gl_context_get_gl_apie (context) & GST_GL_API_GLES3)
|
2013-06-11 15:04:55 +00:00
|
|
|
|
2013-06-13 06:55:37 +00:00
|
|
|
static gchar *error_message;
|
|
|
|
|
2013-06-11 15:04:55 +00:00
|
|
|
/* called in the gl thread */
|
|
|
|
gboolean
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_check_framebuffer_status (GstGLContext * context)
|
2013-06-11 15:04:55 +00:00
|
|
|
{
|
|
|
|
GLenum status = 0;
|
2013-09-15 04:23:43 +00:00
|
|
|
status = context->gl_vtable->CheckFramebufferStatus (GL_FRAMEBUFFER);
|
2013-06-11 15:04:55 +00:00
|
|
|
|
|
|
|
switch (status) {
|
|
|
|
case GL_FRAMEBUFFER_COMPLETE:
|
|
|
|
return TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GL_FRAMEBUFFER_UNSUPPORTED:
|
|
|
|
GST_ERROR ("GL_FRAMEBUFFER_UNSUPPORTED");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT:
|
|
|
|
GST_ERROR ("GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT:
|
|
|
|
GST_ERROR ("GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT");
|
|
|
|
break;
|
|
|
|
case GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS:
|
|
|
|
GST_ERROR ("GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS");
|
|
|
|
break;
|
|
|
|
#if GST_GL_HAVE_OPENGL
|
|
|
|
case GL_FRAMEBUFFER_UNDEFINED:
|
|
|
|
GST_ERROR ("GL_FRAMEBUFFER_UNDEFINED");
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
GST_ERROR ("General FBO error");
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-09-26 15:15:25 +00:00
|
|
|
typedef struct _GenTexture
|
|
|
|
{
|
|
|
|
guint width, height;
|
|
|
|
GstVideoFormat format;
|
|
|
|
guint result;
|
|
|
|
} GenTexture;
|
|
|
|
|
|
|
|
static void
|
|
|
|
_gen_texture (GstGLContext * context, GenTexture * data)
|
|
|
|
{
|
|
|
|
const GstGLFuncs *gl = context->gl_vtable;
|
|
|
|
|
|
|
|
GST_TRACE ("Generating texture format:%u dimensions:%ux%u", data->format,
|
|
|
|
data->width, data->height);
|
|
|
|
|
|
|
|
gl->GenTextures (1, &data->result);
|
|
|
|
gl->BindTexture (GL_TEXTURE_RECTANGLE_ARB, data->result);
|
|
|
|
gl->TexImage2D (GL_TEXTURE_RECTANGLE_ARB, 0, GL_RGBA8, data->width,
|
|
|
|
data->height, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
|
|
|
|
|
|
|
|
gl->TexParameteri (GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MAG_FILTER,
|
|
|
|
GL_LINEAR);
|
|
|
|
gl->TexParameteri (GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MIN_FILTER,
|
|
|
|
GL_LINEAR);
|
|
|
|
gl->TexParameteri (GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_WRAP_S,
|
|
|
|
GL_CLAMP_TO_EDGE);
|
|
|
|
gl->TexParameteri (GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_WRAP_T,
|
|
|
|
GL_CLAMP_TO_EDGE);
|
|
|
|
|
|
|
|
GST_LOG ("generated texture id:%d", data->result);
|
|
|
|
}
|
|
|
|
|
2013-06-13 06:31:38 +00:00
|
|
|
void
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_gen_texture (GstGLContext * context, GLuint * pTexture,
|
2013-06-11 15:04:55 +00:00
|
|
|
GstVideoFormat v_format, GLint width, GLint height)
|
|
|
|
{
|
2013-09-26 15:15:25 +00:00
|
|
|
GenTexture data = { width, height, v_format, 0 };
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-09-26 15:15:25 +00:00
|
|
|
gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _gen_texture,
|
|
|
|
&data);
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-09-26 15:15:25 +00:00
|
|
|
*pTexture = data.result;
|
|
|
|
}
|
2013-06-11 15:04:55 +00:00
|
|
|
|
2013-09-26 15:15:25 +00:00
|
|
|
void
|
|
|
|
_del_texture (GstGLContext * context, guint * texture)
|
|
|
|
{
|
|
|
|
glDeleteTextures (1, texture);
|
2013-06-11 15:04:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_del_texture (GstGLContext * context, GLuint * pTexture)
|
2013-06-11 15:04:55 +00:00
|
|
|
{
|
2013-09-26 15:15:25 +00:00
|
|
|
gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _del_texture,
|
|
|
|
pTexture);
|
2013-06-11 15:04:55 +00:00
|
|
|
}
|
|
|
|
|
2013-06-16 10:44:47 +00:00
|
|
|
typedef struct _GenFBO
|
|
|
|
{
|
|
|
|
GstGLFramebuffer *frame;
|
|
|
|
gint width, height;
|
|
|
|
GLuint *fbo, *depth;
|
|
|
|
} GenFBO;
|
|
|
|
|
|
|
|
static void
|
2013-09-15 04:23:43 +00:00
|
|
|
_gen_fbo (GstGLContext * context, GenFBO * data)
|
2013-06-16 10:44:47 +00:00
|
|
|
{
|
|
|
|
gst_gl_framebuffer_generate (data->frame, data->width, data->height,
|
|
|
|
data->fbo, data->depth);
|
|
|
|
}
|
|
|
|
|
2013-06-11 15:04:55 +00:00
|
|
|
gboolean
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_gen_fbo (GstGLContext * context, gint width, gint height,
|
2013-06-11 15:04:55 +00:00
|
|
|
GLuint * fbo, GLuint * depthbuffer)
|
|
|
|
{
|
2013-09-15 04:23:43 +00:00
|
|
|
GstGLFramebuffer *frame = gst_gl_framebuffer_new (context);
|
2013-06-11 15:04:55 +00:00
|
|
|
|
2013-06-16 10:44:47 +00:00
|
|
|
GenFBO data = { frame, width, height, fbo, depthbuffer };
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _gen_fbo, &data);
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-06-16 10:44:47 +00:00
|
|
|
gst_object_unref (frame);
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-06-16 10:44:47 +00:00
|
|
|
return TRUE;
|
2013-06-11 15:04:55 +00:00
|
|
|
}
|
|
|
|
|
2013-06-16 10:44:47 +00:00
|
|
|
typedef struct _UseFBO
|
|
|
|
{
|
|
|
|
GstGLFramebuffer *frame;
|
|
|
|
gint texture_fbo_width;
|
|
|
|
gint texture_fbo_height;
|
|
|
|
GLuint fbo;
|
|
|
|
GLuint depth_buffer;
|
|
|
|
GLuint texture_fbo;
|
|
|
|
GLCB cb;
|
|
|
|
gint input_tex_width;
|
|
|
|
gint input_tex_height;
|
|
|
|
GLuint input_tex;
|
|
|
|
gdouble proj_param1;
|
|
|
|
gdouble proj_param2;
|
|
|
|
gdouble proj_param3;
|
|
|
|
gdouble proj_param4;
|
|
|
|
GstGLDisplayProjection projection;
|
|
|
|
gpointer stuff;
|
|
|
|
} UseFBO;
|
|
|
|
|
|
|
|
static void
|
2013-09-15 04:23:43 +00:00
|
|
|
_use_fbo (GstGLContext * context, UseFBO * data)
|
2013-06-16 10:44:47 +00:00
|
|
|
{
|
|
|
|
gst_gl_framebuffer_use (data->frame, data->texture_fbo_width,
|
|
|
|
data->texture_fbo_height, data->fbo, data->depth_buffer,
|
|
|
|
data->texture_fbo, data->cb, data->input_tex_width,
|
|
|
|
data->input_tex_height, data->input_tex, data->proj_param1,
|
|
|
|
data->proj_param2, data->proj_param3, data->proj_param4, data->projection,
|
|
|
|
data->stuff);
|
|
|
|
}
|
2013-06-11 15:04:55 +00:00
|
|
|
|
|
|
|
/* Called by glfilter */
|
|
|
|
/* this function really has to be simplified... do we really need to
|
|
|
|
set projection this way? Wouldn't be better a set_projection
|
|
|
|
separate call? or just make glut functions available out of
|
|
|
|
gst-libs and call it if needed on drawcallback? -- Filippo */
|
|
|
|
/* GLCB too.. I think that only needed parameters should be
|
|
|
|
* GstGLDisplay *display and gpointer data, or just gpointer data */
|
|
|
|
/* ..everything here has to be simplified! */
|
|
|
|
gboolean
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_use_fbo (GstGLContext * context, gint texture_fbo_width,
|
2013-06-11 15:04:55 +00:00
|
|
|
gint texture_fbo_height, GLuint fbo, GLuint depth_buffer,
|
|
|
|
GLuint texture_fbo, GLCB cb, gint input_tex_width,
|
|
|
|
gint input_tex_height, GLuint input_tex, gdouble proj_param1,
|
|
|
|
gdouble proj_param2, gdouble proj_param3, gdouble proj_param4,
|
2013-06-16 10:44:47 +00:00
|
|
|
GstGLDisplayProjection projection, gpointer stuff)
|
2013-06-11 15:04:55 +00:00
|
|
|
{
|
2013-09-15 04:23:43 +00:00
|
|
|
GstGLFramebuffer *frame = gst_gl_framebuffer_new (context);
|
2013-06-11 15:04:55 +00:00
|
|
|
|
2013-06-16 10:44:47 +00:00
|
|
|
UseFBO data =
|
|
|
|
{ frame, texture_fbo_width, texture_fbo_height, fbo, depth_buffer,
|
|
|
|
texture_fbo, cb, input_tex_width, input_tex_height, input_tex,
|
|
|
|
proj_param1, proj_param2, proj_param3, proj_param4, projection, stuff
|
|
|
|
};
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _use_fbo, &data);
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-06-16 10:44:47 +00:00
|
|
|
gst_object_unref (frame);
|
2013-06-11 15:04:55 +00:00
|
|
|
|
2013-06-16 10:44:47 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct _UseFBO2
|
|
|
|
{
|
|
|
|
GstGLFramebuffer *frame;
|
|
|
|
gint texture_fbo_width;
|
|
|
|
gint texture_fbo_height;
|
|
|
|
GLuint fbo;
|
|
|
|
GLuint depth_buffer;
|
|
|
|
GLuint texture_fbo;
|
|
|
|
GLCB_V2 cb;
|
|
|
|
gpointer stuff;
|
|
|
|
} UseFBO2;
|
|
|
|
|
|
|
|
static void
|
2013-09-15 04:23:43 +00:00
|
|
|
_use_fbo_v2 (GstGLContext * context, UseFBO2 * data)
|
2013-06-16 10:44:47 +00:00
|
|
|
{
|
|
|
|
gst_gl_framebuffer_use_v2 (data->frame, data->texture_fbo_width,
|
|
|
|
data->texture_fbo_height, data->fbo, data->depth_buffer,
|
|
|
|
data->texture_fbo, data->cb, data->stuff);
|
2013-06-11 15:04:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_use_fbo_v2 (GstGLContext * context, gint texture_fbo_width,
|
2013-06-11 15:04:55 +00:00
|
|
|
gint texture_fbo_height, GLuint fbo, GLuint depth_buffer,
|
2013-06-16 10:44:47 +00:00
|
|
|
GLuint texture_fbo, GLCB_V2 cb, gpointer stuff)
|
2013-06-11 15:04:55 +00:00
|
|
|
{
|
2013-09-15 04:23:43 +00:00
|
|
|
GstGLFramebuffer *frame = gst_gl_framebuffer_new (context);
|
2013-06-11 15:04:55 +00:00
|
|
|
|
2013-06-16 10:44:47 +00:00
|
|
|
UseFBO2 data =
|
|
|
|
{ frame, texture_fbo_width, texture_fbo_height, fbo, depth_buffer,
|
|
|
|
texture_fbo, cb, stuff
|
|
|
|
};
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _use_fbo_v2,
|
2013-06-16 10:44:47 +00:00
|
|
|
&data);
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-06-16 10:44:47 +00:00
|
|
|
gst_object_unref (frame);
|
2013-06-11 15:04:55 +00:00
|
|
|
|
2013-06-16 10:44:47 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct _DelFBO
|
|
|
|
{
|
|
|
|
GstGLFramebuffer *frame;
|
|
|
|
GLuint fbo;
|
|
|
|
GLuint depth;
|
|
|
|
} DelFBO;
|
|
|
|
|
|
|
|
/* Called in the gl thread */
|
|
|
|
static void
|
2013-09-15 04:23:43 +00:00
|
|
|
_del_fbo (GstGLContext * context, DelFBO * data)
|
2013-06-16 10:44:47 +00:00
|
|
|
{
|
|
|
|
gst_gl_framebuffer_delete (data->frame, data->fbo, data->depth);
|
2013-06-11 15:04:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Called by gltestsrc and glfilter */
|
|
|
|
void
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_del_fbo (GstGLContext * context, GLuint fbo, GLuint depth_buffer)
|
2013-06-11 15:04:55 +00:00
|
|
|
{
|
2013-09-15 04:23:43 +00:00
|
|
|
GstGLFramebuffer *frame = gst_gl_framebuffer_new (context);
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-06-16 10:44:47 +00:00
|
|
|
DelFBO data = { frame, fbo, depth_buffer };
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _del_fbo, &data);
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-06-16 10:44:47 +00:00
|
|
|
gst_object_unref (frame);
|
2013-06-11 15:04:55 +00:00
|
|
|
}
|
|
|
|
|
2013-06-27 14:34:48 +00:00
|
|
|
static void
|
2013-09-15 04:23:43 +00:00
|
|
|
_compile_shader (GstGLContext * context, GstGLShader ** shader)
|
2013-06-27 14:34:48 +00:00
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
gst_gl_shader_compile (*shader, &error);
|
|
|
|
if (error) {
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_set_error (context, "%s", error->message);
|
2013-06-27 14:34:48 +00:00
|
|
|
g_error_free (error);
|
|
|
|
error = NULL;
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_clear_shader (context);
|
2013-06-27 14:34:48 +00:00
|
|
|
gst_object_unref (*shader);
|
|
|
|
*shader = NULL;
|
|
|
|
}
|
|
|
|
}
|
2013-06-11 15:04:55 +00:00
|
|
|
|
|
|
|
/* Called by glfilter */
|
|
|
|
gboolean
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_gen_shader (GstGLContext * context, const gchar * vert_src,
|
2013-06-27 14:34:48 +00:00
|
|
|
const gchar * frag_src, GstGLShader ** shader)
|
2013-06-11 15:04:55 +00:00
|
|
|
{
|
2013-06-27 14:34:48 +00:00
|
|
|
g_return_val_if_fail (frag_src != NULL || vert_src != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (shader != NULL, FALSE);
|
2013-06-11 15:04:55 +00:00
|
|
|
|
2013-09-15 04:23:43 +00:00
|
|
|
*shader = gst_gl_shader_new (context);
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-06-27 14:34:48 +00:00
|
|
|
if (frag_src)
|
|
|
|
gst_gl_shader_set_fragment_source (*shader, frag_src);
|
|
|
|
if (vert_src)
|
|
|
|
gst_gl_shader_set_vertex_source (*shader, vert_src);
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _compile_shader,
|
2013-06-27 14:34:48 +00:00
|
|
|
shader);
|
2013-06-11 15:04:55 +00:00
|
|
|
|
2013-06-27 14:34:48 +00:00
|
|
|
return *shader != NULL;
|
2013-06-11 15:04:55 +00:00
|
|
|
}
|
|
|
|
|
2013-06-13 06:55:37 +00:00
|
|
|
void
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_set_error (GstGLContext * context, const char *format, ...)
|
2013-06-13 06:55:37 +00:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
if (error_message)
|
|
|
|
g_free (error_message);
|
|
|
|
|
|
|
|
va_start (args, format);
|
|
|
|
error_message = g_strdup_vprintf (format, args);
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
GST_WARNING ("%s", error_message);
|
|
|
|
}
|
|
|
|
|
|
|
|
gchar *
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_get_error (void)
|
2013-06-13 06:55:37 +00:00
|
|
|
{
|
|
|
|
return error_message;
|
|
|
|
}
|
2013-06-11 15:04:55 +00:00
|
|
|
|
|
|
|
/* Called by glfilter */
|
|
|
|
void
|
2013-09-15 04:23:43 +00:00
|
|
|
gst_gl_context_del_shader (GstGLContext * context, GstGLShader * shader)
|
2013-06-11 15:04:55 +00:00
|
|
|
{
|
2013-06-27 14:34:48 +00:00
|
|
|
gst_object_unref (shader);
|
2013-06-11 15:04:55 +00:00
|
|
|
}
|