~ubuntu-branches/ubuntu/quantal/gst0.10-python/quantal

« back to all changes in this revision

Viewing changes to gst/video.defs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-01-27 08:00:50 UTC
  • mfrom: (1.1.23 upstream) (7.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100127080050-2iu7igaxot48lrhj
* New upstream pre-release:
  + debian/control:
    - Update dependencies.
  + Fixes importing on kFreeBSD (Closes: #563535).
  + Fixes "'module' object has no attribute 'Element'" import
    error (Closes: #531347).

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    '("y41b" "GST_VIDEO_FORMAT_Y41B")
41
41
    '("y42b" "GST_VIDEO_FORMAT_Y42B")
42
42
    '("yvyu" "GST_VIDEO_FORMAT_YVYU")
 
43
    '("y444" "GST_VIDEO_FORMAT_Y444")
 
44
    '("v210" "GST_VIDEO_FORMAT_v210")
 
45
    '("v216" "GST_VIDEO_FORMAT_v216")
 
46
    '("nv12" "GST_VIDEO_FORMAT_NV12")
 
47
    '("nv21" "GST_VIDEO_FORMAT_NV21")
43
48
  )
44
49
)
45
50
 
279
284
  )
280
285
)
281
286
 
 
287
(define-function event_new_still_frame
 
288
  (c-name "gst_video_event_new_still_frame")
 
289
  (return-type "GstEvent*")
 
290
  (parameters
 
291
    '("gboolean" "in_still")
 
292
  )
 
293
)
282
294
 
 
295
(define-function event_parse_still_frame
 
296
  (c-name "gst_video_event_parse_still_frame")
 
297
  (return-type "gboolean")
 
298
  (parameters
 
299
    '("GstEvent*" "event")
 
300
    '("gboolean*" "in_still")
 
301
  )
 
302
)