- Jan 23, 2022
-
-
AOM_USAGE_ALL_INTRA isn't being defined while AOM_USAGE_GOOD_QUALITY is, refs https://aomedia.googlesource.com/aom/+/refs/tags/v3.0.0/aom/aom_encoder.h#1001
-
overlooked in dcebb25b.
-
fixes #26510.
-
should always be pts == dts
-
-
-
Rémi Denis-Courmont authored
-
- Jan 22, 2022
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
Note that a newer version of FFmpeg is necessary to get actual platform-specific acceleration. This merely allows plain C build.
-
fixes #26274
-
Rémi Denis-Courmont authored
The whole Requires.private stanza, not just its value, is expanded by config.status from the configure script. So the conversion from private to public must be done after expansion.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- Jan 21, 2022
-
-
Rémi Denis-Courmont authored
Cross-compilation will fail if the system name is not specified, because such is CMake's design.
-
Rémi Denis-Courmont authored
-
The 'reserved' variable is necessary to call MP4_GET3BYTES(), but is never used afterwards. Silent the warning.
-
When compiling with FFmpeg 5: ../../modules/demux/avformat/demux.c: In function ‘Demux’: ../../modules/demux/avformat/demux.c:817:84: warning: passing argument 3 of ‘av_packet_get_side_data’ from incompatible pointer type [-Wincompatible-pointer-types] 817 | uint8_t *side_data = av_packet_get_side_data( &pkt, AV_PKT_DATA_NEW_EXTRADATA, &side_data_size ); | ^~~~~~~~~~~~~~~ | | | int * Refs ffmpeg/14040a1d913794d9a3fd6406a6d8c2f0e37e0062 (announcement) Refs ffmpeg/ef6a9e5e311f09fa8032974fa4d0c1e166a959bb (change)
-
Refs ffmpeg/626535f6a169e2d821b969e0ea77125ba7482113
-
Refs ffmpeg/56450a0ee4fdda160f4039fc2ae33edfd27765c9
-
Refs ffmpeg/56450a0ee4fdda160f4039fc2ae33edfd27765c9
-
Hugo Beauzée-Luyssen authored
-
Hugo Beauzée-Luyssen authored
-
Hugo Beauzée-Luyssen authored
-
- Jan 20, 2022
-
-
Fixes the "build" of meson that could randomly fail when no target created the folder already.
-
which is nonstandard and deprecated on Debian. Use POSIX shell built-in command -v instead.
-
In the case where compositor fails to start the MediaLib object is created then destroyed using a deleteLater, but the destructor was never called as the main loop was never started.
-
Hugo Beauzée-Luyssen authored
When overriding the environment variable, we might cause a pkg-config wrapper to skip setting its environment variable when cross compiling. By providing an empty string, we'd effectively disable detection of all available packages in a non-default path.
-
fix: #26462
-
-
AVCodecContext.thread_safe_callbacks will be removed in API 60: > Thread-unsafe get_buffer2() implementations will be invalid starting > with LIBAVCODEC_VERSION_MAJOR=60; in other words, libavcodec will > behave as if this field was always set to 1. In current FFmpeg 5.0 (API 59), we must still set the variable, and it is already deprecated, so we can't get rid of the deprecation warning. ffmpeg/a83098ab03a47179d54a9b9c8bcefc81b9c6aafd (deprecation) ffmpeg/54e5d21acabb452e5680de5db3bf7567d351d68e (doc)
-
Hugo Beauzée-Luyssen authored
-
Hugo Beauzée-Luyssen authored
-
Hugo Beauzée-Luyssen authored
-
Hugo Beauzée-Luyssen authored
Already applied upstream
-
with cats and subcats both being plain integers it's very easy to make a mistake mixing them up, storing one in a variable for another, or passing the wrong variable to the wrong function. switching to enums adds type strictness to help catch such mistakes. in switching to enums there is of course additional opportunity to exploit sequential numbering to achieve certain optimisations that can be gained from this, but that it not done here. here we're simply interested in catching mistakes through type strictness. note that we simply retain the same cat/subcat numbering as before here.
-
- Jan 19, 2022
-
-
Rémi Denis-Courmont authored
This unbreaks packages using autoreconf.
-
François Cartegnie authored
Custom .265 .264 files mux from some IP cameras refs #22935 streams.videolan.org/samples/HX/
-
The Close function was called with an uninitialized structure
-