Wim Taymans
77813e67e1
update for allocation query changes
2012-07-06 11:05:11 +02:00
Руслан Ижбулатов
b64849550d
directsoundsink: Fix query function implementation; more debugging
2012-07-04 19:54:55 +02:00
Руслан Ижбулатов
dc2ce73a3e
directsoundsink: Fix spec stuff in directsoundsink
2012-07-04 19:54:55 +02:00
Andoni Morales Alastruey
c38fa466c3
directsoundsink: fix access to invalid pointer in set_volume
2012-07-04 19:54:55 +02:00
Sebastian Dr=C3=B6ge
f72a55319d
directsoundsink: Fix caps leaks
2012-07-04 19:54:55 +02:00
Andoni Morales Alastruey
1c6d1bd29a
directsoundsink: fix acceptcaps check
2012-07-04 19:54:55 +02:00
Andoni Morales Alastruey
ed8ad7bffe
directsoundsink: use helper function to check for spdif formats
2012-07-04 19:54:55 +02:00
Andoni Morales Alastruey
a9dff8adb9
directsoundsink: add support for DTS
2012-07-04 19:54:55 +02:00
Andoni Morales Alastruey
e815d08342
directsoundsink: force 48000 kHz force AC-3 over spdif
2012-07-04 19:54:51 +02:00
Andoni Morales Alastruey
7d64e16b30
directsoundsink: add support for ac-3 over spdif
2012-07-04 19:54:43 +02:00
Tim-Philipp Müller
b2b3de569a
osxvideosink: default to force-aspect-ratio=true
2012-06-29 11:51:30 +01:00
Wim Taymans
56690cf021
v4l2: improve debug
2012-06-26 13:19:02 +02:00
Wim Taymans
77f33e591f
Revert "v4l2: free kernel buffers before allocating new ones"
...
This reverts commit 1b09bc609a
.
Seems to make libv4l2 complain, maybe because we call REQBUFS with 0 buffers
before we allocated buffers.
2012-06-26 13:02:13 +02:00
Wim Taymans
1b09bc609a
v4l2: free kernel buffers before allocating new ones
...
See https://bugzilla.gnome.org/show_bug.cgi?id=670257
2012-06-26 12:07:47 +02:00
Wim Taymans
9fd4af2164
v4l2src: improve debug
2012-06-26 12:07:29 +02:00
Wim Taymans
f4e3ae65ab
v4l2: setup strides and offsets for all planes
2012-06-26 11:14:59 +02:00
Josep Torra
d2c6cc3a39
osxaudiosink: respect the prefered channel layout
...
In OSX is allowed to configure the default audio output device,
prefered channel layout and speaker positions through the tool
"Audio MIDI Setup".
2012-06-19 12:55:37 +01:00
Josep Torra
59191412eb
osxaudiosink: Add support for SPDIF output
...
A big refactoring to allow passthrough AC3/DTS over SPDIF.
Several random cleanups and minor fixes.
2012-06-14 08:46:34 +02:00
Hans de Goede
b9676944bb
v4l2object: Don't probe UVC devices for being interlaced
...
UVC devices are never interlaced, and doing VIDIOC_TRY_FMT on them
causes expensive and slow USB IO, so don't probe them for interlaced.
This shaves 2 seconds of the startup time of cheese with a Logitech
Webcam Pro 9000.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=677722
2012-06-11 11:23:34 +02:00
Wim Taymans
f65495d405
update for audio api change
2012-06-08 10:11:12 +02:00
Thiago Santos
44d010277c
osxvideo: straightforward port to 0.11
2012-06-05 17:53:58 -03:00
Josep Torra
cfd9071f79
osxaudiosink: Handle endianness correctly
2012-06-04 11:54:46 +02:00
Josep Torra
85102c49d5
osxaudiosink: Add support for int audio
2012-06-01 16:38:22 +02:00
Michael Jones
fa95cec825
v4l2: add missing G_END_DECLS
...
G_BEGIN_DECLS didn't have matching G_END_DECLS
https://bugzilla.gnome.org/show_bug.cgi?id=677165
2012-05-31 13:13:45 +02:00
Josep Torra
bb8cdf4cc5
osxvideosink: Really fix the build on 10.5
...
The API that we use to run the Cocoa loop in another
thread does not exist in 10.5 or earlier.
2012-05-31 10:26:27 +02:00
Alessandro Decina
f20cdcd36b
osxvideosink: fix race in starting the runloop thread
...
Block gst_osx_video_sink_run_cocoa_loop until the loop thread has started and
finished initializing NSApp. Fixes occasional warnings/crashes due to two
threads going inside NSApp before finishLaunching had completed.
2012-05-31 10:26:10 +02:00
Josep Torra
76b7998e4f
osxvideosink: Fix last commit to actually work
...
MAC_OS_X_VERSION_10_6 is obviously not defined on 10.5.
2012-05-30 16:03:55 +02:00
Sebastian Dröge
88554404e6
osxvideosink: Put the right flags in the right variable
2012-05-30 13:51:35 +02:00
Sebastian Dröge
efab9e6aa3
osxvideosink: NSWindowDelegate is available in all OSX versions newer than 10.6
2012-05-30 12:43:37 +02:00
Josep Torra
c106a3653b
osxvideosink: Fix build with older OSX versions
2012-05-30 12:40:57 +02:00
Sebastian Dröge
6bd61f861c
configure: Add OBJC specific compiler flags
...
See bug #643939 .
2012-05-30 11:28:33 +02:00
Andoni Morales Alastruey
5b3d3b0885
osxvideosink: make sure all selectors are performed on the same thread
...
When we are using a dedicated thread to run the main run loop we
must make sure that all selectors are performed on this same thread.
For instance if performSelectorOnMainThread is called from the real
main thread, it will not go through the message queue and will be
executed from the real main thread. By forcing the target thread,
we ensure that all functions will be called either from the real
main thread when the main run loop is running or from our thread
spinning the main loop.
2012-05-25 11:07:35 +02:00
Alessandro Decina
57e43aeb21
osxvideosink: start the loop before calling [gstview haveSuperview]
...
...as haveSuperview requires the mainloop to be running
2012-05-24 14:36:13 +02:00
Alessandro Decina
dc8de54cce
osxvideosink: fix indentation
2012-05-24 14:36:09 +02:00
Alessandro Decina
fdf5fd9f16
osxvideosink: enable running the cocoa main runloop in a thread
2012-05-24 14:36:03 +02:00
Alessandro Decina
718837d914
osxvideosink: add code to optionally run the cocoa main runloop in a separate thread
...
Add a little hack to run the cocoa main runloop from a separate thread _when_
the main runloop is not being run (which means that the app doesn't use cocoa).
Runloops are thread specific, so the hack boils down to getting the runloop for
the main thread and setting it as the runloop for our dedicated thread.
2012-05-24 14:35:59 +02:00
Alessandro Decina
e3cba62b7e
osxvideosink: reset app_started to FALSE when shutting down
2012-05-24 14:35:55 +02:00
Alessandro Decina
645b37e80a
osxvideosink: rename cocoa runloop helper funcs
2012-05-24 14:35:51 +02:00
Alessandro Decina
7f576b923a
osxvideosink: don't create application menus
2012-05-24 14:35:46 +02:00
Andoni Morales Alastruey
a3cf0ab5f5
osxvideosink: reset the embed property for backward compatilibity
2012-05-24 14:35:42 +02:00
Andoni Morales Alastruey
7cc93e9195
osxvideosink: fix navigation when force-aspect-ratio is activated
2012-05-24 14:35:37 +02:00
Andoni Morales Alastruey
fd19abf9ee
osxvideosink: add force-aspect-ratio property
2012-05-24 14:35:32 +02:00
Andoni Morales Alastruey
9b8bfe9b9e
osxvideosink: start internal window if no view is provided
2012-05-24 14:35:27 +02:00
Andoni Morales Alastruey
ba5d55dd69
osxvideosink: implement the navigation interface
2012-05-24 14:35:21 +02:00
Andoni Morales Alastruey
088bc6b056
osvideosink: create, destroy, resize and draw from the main thread
2012-05-24 14:35:16 +02:00
Peter Seiderer
65a28698db
v4l2src: fix v4l2_std_id logging
...
input.std is of type v4l2_std_id which is defined as 64-bit unsigned integer.
Casting to uint means the higher bits, wich are used for the private video
standards of the TI video capture/display driver for example, are lost.
2012-05-09 15:12:28 +01:00
Руслан Ижбулатов
cb4f470c7e
waveform: No more gstinterfaces
...
Fixes #675319
2012-05-03 09:33:29 +02:00
Руслан Ижбулатов
ccc0c9c313
directsound: No more gstinterfaces
...
Fixes #675319
2012-05-03 09:33:29 +02:00
Sebastian Dröge
982148c07c
v4l2src: Update for basesrc API changes
2012-05-01 13:33:46 +02:00
Wim Taymans
a473750350
v4l2: improve timestamp code
...
Sample the pipeline clock and device clock closer to eachother to reduce jitter.
Don't subtract the frame duration from the timestamp when we can use the device
timestamps.
Assume a delay of 1 frame in read-write mode.
2012-04-25 09:41:46 +02:00