summaryrefslogtreecommitdiff
path: root/gtk/gtkmediastream.c
Commit message (Collapse)AuthorAgeFilesLines
* mediastream: Convert docsMatthias Clasen2021-03-111-190/+218
|
* video: Tweak the docsMatthias Clasen2021-01-021-1/+4
| | | | | Point out the limitations and use cases of GtkVideo and mention that GtkPicture can display video just fine.
* *: Fix spelling mistakes found by codespellBjörn Daase2020-08-211-1/+1
|
* Replace "gchar" with "char"Benjamin Otte2020-07-251-2/+2
|
* Replace "gint" with "int"Benjamin Otte2020-07-251-2/+2
|
* mediastream: Volume is a doubleMatthias Clasen2020-05-201-5/+5
| | | | | | Another obvious copy-paste error in the property declarations of GtkMediaStream. Volume should be a double, with range [0, 1], not a boolean.
* mediastream: Some properties were meant to be readonlyMatthias Clasen2020-05-201-3/+3
| | | | | | These properties aren't covered by set_property(), and it doesn't make sense to do so. They were just declared as read-write by mistake.
* mediastream: fix documentationMohammed Sadiq2019-03-311-2/+2
|
* docs: Miscellaneous doc fixesMatthias Clasen2019-02-241-1/+1
| | | | | Additions and correction all over the place, in GDK and GTK docs.
* mediastream: Fix possible memory leakMohammed Sadiq2018-12-201-1/+4
| | | | @error is (transfer full). So the error passed should be freed if not used
* mediastream: Allow multiple calls to gtk_media_stream_error()Benjamin Otte2018-12-181-1/+7
| | | | Just ignore all further ones.
* Fix a few documentation warningsTimm Bäder2018-07-081-1/+1
|
* MediaStream: Fix capitalisation of two new %TRUEsDaniel Boles2018-05-061-2/+2
|
* Add more media docsMatthias Clasen2018-05-061-2/+82
|
* Continue renaming window to surfaceAlexander Larsson2018-03-211-16/+16
| | | | This renames a lot of arguments, local variables and functions.
* GdkWindow -> GdkSurface initial type renameAlexander Larsson2018-03-201-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This renames the GdkWindow class and related classes (impl, backend subclasses) to surface. Additionally it renames related types: GdkWindowAttr, GdkWindowPaint, GdkWindowWindowClass, GdkWindowType, GdkWindowTypeHint, GdkWindowHints, GdkWindowState, GdkWindowEdge This is an automatic conversion using the below commands: git sed -f g GdkWindowWindowClass GdkSurfaceSurfaceClass git sed -f g GdkWindow GdkSurface git sed -f g "gdk_window\([ _\(\),;]\|$\)" "gdk_surface\1" # Avoid hitting gdk_windowing git sed -f g "GDK_WINDOW\([ _\(]\|$\)" "GDK_SURFACE\1" # Avoid hitting GDK_WINDOWING git sed "GDK_\([A-Z]*\)IS_WINDOW\([_ (]\|$\)" "GDK_\1IS_SURFACE\2" git sed GDK_TYPE_WINDOW GDK_TYPE_SURFACE git sed -f g GdkPointerWindowInfo GdkPointerSurfaceInfo git sed -f g "BROADWAY_WINDOW" "BROADWAY_SURFACE" git sed -f g "broadway_window" "broadway_surface" git sed -f g "BroadwayWindow" "BroadwaySurface" git sed -f g "WAYLAND_WINDOW" "WAYLAND_SURFACE" git sed -f g "wayland_window" "wayland_surface" git sed -f g "WaylandWindow" "WaylandSurface" git sed -f g "X11_WINDOW" "X11_SURFACE" git sed -f g "x11_window" "x11_surface" git sed -f g "X11Window" "X11Surface" git sed -f g "WIN32_WINDOW" "WIN32_SURFACE" git sed -f g "win32_window" "win32_surface" git sed -f g "Win32Window" "Win32Surface" git sed -f g "QUARTZ_WINDOW" "QUARTZ_SURFACE" git sed -f g "quartz_window" "quartz_surface" git sed -f g "QuartzWindow" "QuartzSurface" git checkout NEWS* po-properties
* gtk: Fix some g-i annotations warningsRico Tzschichholz2018-03-181-1/+1
|
* mediastream: Add gtk_media_stream_realize/unrealize()Benjamin Otte2018-03-181-0/+68
| | | | | | | | | | | | | | | | This allows widget to attach their streams to GdkWindow(s) The idea is to allow attaching a stream to windowing system(s) so the stream can make use of its resources, in particular GL contexts. I am however unsure what to attach to: - GtkWindow - GdkWindow - GtkWidget - GskRenderer Each of these provide advantages and disadvantages. So I'm very much open to better suggestions.
* gtk: Add GtkMediaStreamBenjamin Otte2018-03-181-0/+1192
GtkMediaStream is the new base class for playback of audio and video streams. It implements GdkPaintable for rendering.