xcb_vlc.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /**
  2.  * @file xcb_vlc.h
  3.  * @brief X C Bindings VLC module common header
  4.  */
  5. /*****************************************************************************
  6.  * Copyright © 2009 Rémi Denis-Courmont
  7.  *
  8.  * This library is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU General Public License
  10.  * as published by the Free Software Foundation; either version 2.0
  11.  * of the License, or (at your option) any later version.
  12.  *
  13.  * This library is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU Lesser General Public
  19.  * License along with this library; if not, write to the Free Software
  20.  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  21.  ****************************************************************************/
  22. #ifdef WORDS_BIGENDIAN
  23. # define ORDER XCB_IMAGE_ORDER_MSB_FIRST
  24. #else
  25. # define ORDER XCB_IMAGE_ORDER_LSB_FIRST
  26. #endif
  27. int CheckError (vout_thread_t *, const char *str, xcb_void_cookie_t);
  28. int ProcessEvent (vout_thread_t *, xcb_connection_t *, xcb_window_t,
  29.                   xcb_generic_event_t *);
  30. void HandleParentStructure (vout_thread_t *vout, xcb_connection_t *conn,
  31.                           xcb_window_t xid, xcb_configure_notify_event_t *ev);
  32. /* keys.c */
  33. typedef struct key_handler_t key_handler_t;
  34. key_handler_t *CreateKeyHandler (vlc_object_t *, xcb_connection_t *);
  35. void DestroyKeyHandler (key_handler_t *);
  36. int ProcessKeyEvent (key_handler_t *, xcb_generic_event_t *);
  37. /* common.c */
  38. struct vout_window_t;
  39. xcb_connection_t *Connect (vlc_object_t *obj);
  40. struct vout_window_t *GetWindow (vout_thread_t *obj,
  41.                                  xcb_connection_t *pconn,
  42.                                  const xcb_screen_t **restrict pscreen,
  43.                                  bool *restrict pshm);
  44. int GetWindowSize (struct vout_window_t *wnd, xcb_connection_t *conn,
  45.                    unsigned *restrict width, unsigned *restrict height);
  46. int PictureAlloc (vout_thread_t *, picture_t *, size_t, xcb_connection_t *);
  47. void PictureFree (picture_t *pic, xcb_connection_t *conn);
  48. void CommonManage (vout_thread_t *);