- Dec 23, 2023
-
-
François Cartegnie authored
is null due to callback.. regression by 811b77c3
-
Implicit visual parent is needed for this item to be rendered.
-
-
-
-
- Dec 22, 2023
-
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
Send attachments via the input_thread_t. The possibility to send attachments via the input_item_t will be removed soon.
-
Thomas Guillem authored
This fixes item with 0 meta, if the preparser failed (or was skipped). This let a second chance for the player to fetch meta and attachments. This was happening with every mock media that are skipped by the preparser.
-
The test is exposing a stub var_DestroyAll() because object.c is link-dependant to this symbol, but no variable is created anyway. It's also checking that the vlc_object_t member doesn't get overwritten.
-
Using placement new and manual call to the destructor. It ensures that C++ objects are correctly handled when creating C++ objects through vlc_object_create<>(), and that their destructors are correctly called when the (C++) object is destroyed. According to the C++ draft standard, the vlc_object_t won't get overwritten by the placement new since (7.1) will apply to the C++ object being allocated and placement-new'ed, which triggers the default initialization of members, and the default initialization of the vlc_object_t member enters the (7.3) case since no constructors exists for the structure. (It's an extern "C" structure). To default-initialize an object of type T means: (7.1) If T is a (possibly cv-qualified) class type ([class]), constructors are considered. The applicable constructors are enumerated ([over.match.ctor]), and the best one for the initializer () is chosen through overload resolution ([over.match]). The constructor thus selected is called, with an empty argument list, to initialize the object. (7.2) If T is an array type, each element is default-initialized. (7.3) Otherwise, no initialization is performed. --: https://eel.is/c++draft/dcl.init#general-7 However, it's not possible to use a zero-initializing placement-new operation.
-
The header is not public but can be used by tests in C++.
-
The placed picture might have its width and height swapped due to rotation. This needs to be taken into account in the translation. This patch applies the format rotation early so the correct width and height can be used in the translate code.
-
Extract video format rotation from the function. This will be useful in the next commit to avoid rotating the format twice in the translate function.
-
Those mouse coordinates translation were inverted probably due to a bad copy/paste. This was found by testing video filters with horizontal captured videos. (ORIENT_RIGHT_TOP in this case).
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
macosx: Rename VLCLibraryVideoTableViewDataSource to VLCLibraryVideoDataSource now that it services collection views too Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
macosx: Move data source relevant setup stuff for collection view to data source in video table view data source Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-