gstcamerabin-enum.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * GStreamer
  3. * Copyright (C) 2009 Nokia Corporation <multimedia@maemo.org>
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Library General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Library General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Library General Public
  16. * License along with this library; if not, write to the
  17. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  18. * Boston, MA 02110-1301, USA.
  19. */
  20. #ifndef __GST_CAMERABIN_ENUM_H__
  21. #define __GST_CAMERABIN_ENUM_H__
  22. #ifndef GST_USE_UNSTABLE_API
  23. #warning "camerabin enums are unstable API and may change in future."
  24. #warning "You can define GST_USE_UNSTABLE_API to avoid this warning."
  25. #endif
  26. #include <gst/gst.h>
  27. G_BEGIN_DECLS
  28. #define DEFAULT_WIDTH 640
  29. #define DEFAULT_HEIGHT 480
  30. #define DEFAULT_CAPTURE_WIDTH 800
  31. #define DEFAULT_CAPTURE_HEIGHT 600
  32. #define DEFAULT_FPS_N 0 /* makes it use the default */
  33. #define DEFAULT_FPS_D 1
  34. #define DEFAULT_ZOOM MIN_ZOOM
  35. /**
  36. * GstCameraBinMode:
  37. * @MODE_IMAGE: image capture
  38. * @MODE_VIDEO: video capture
  39. *
  40. * Capture mode to use.
  41. */
  42. typedef enum
  43. {
  44. /* MODE_PREVIEW = 0, No use for this */
  45. MODE_IMAGE = 1,
  46. MODE_VIDEO = 2,
  47. } GstCameraBinMode;
  48. #define GST_TYPE_CAMERABIN_MODE (gst_camerabin_mode_get_type ())
  49. GType gst_camerabin_mode_get_type (void);
  50. G_END_DECLS
  51. #endif /* #ifndef __GST_CAMERABIN_ENUM_H__ */