[vlc-commits] [Git][videolan/vlc][master] 2 commits: libplacebo: fix mismatching list of filter values/names

Jean-Baptiste Kempf (@jbk) gitlab at videolan.org
Sun Apr 28 15:24:55 UTC 2024



Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC


Commits:
4b3b7715 by Steve Lhomme at 2024-04-28T14:45:45+00:00
libplacebo: fix mismatching list of filter values/names

- - - - -
3f421955 by Steve Lhomme at 2024-04-28T14:45:45+00:00
srt: share the SRT key length names like the key length values

- - - - -


3 changed files:

- modules/access/srt_common.c
- modules/access/srt_common.h
- modules/video_output/libplacebo/utils.h


Changes:

=====================================
modules/access/srt_common.c
=====================================
@@ -23,9 +23,6 @@
 
 #include "srt_common.h"
 
-const char * const srt_key_length_names[] = { N_( "16 bytes" ), N_(
-        "24 bytes" ), N_( "32 bytes" ), };
-
 typedef struct parsed_param {
     char *key;
     char *val;


=====================================
modules/access/srt_common.h
=====================================
@@ -60,8 +60,8 @@
 #define SRT_KEY_LENGTH_TEXT N_("Crypto key length in bytes")
 #define SRT_DEFAULT_KEY_LENGTH 16
 static const int srt_key_lengths[] = { 16, 24, 32, };
-
-extern const char * const srt_key_length_names[];
+static const char * const srt_key_length_names[] = { N_( "16 bytes" ), N_(
+        "24 bytes" ), N_( "32 bytes" ), };
 
 typedef struct srt_params {
     int latency;


=====================================
modules/video_output/libplacebo/utils.h
=====================================
@@ -547,10 +547,6 @@ static const char * const filter_text[] = {
     "Jinc",
     "Sphinx",
     "BC spline",
-    "Catmull-Rom",
-    "Mitchell-Netravali",
-    "Robidoux",
-    "RobidouxSharp",
     "Bicubic",
     "Spline16",
     "Spline36",



View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/5ce659d7218c419f01e30435f28645d090f70276...3f42195529cae2302a27ec0e6f0f8cf29658c58f

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/5ce659d7218c419f01e30435f28645d090f70276...3f42195529cae2302a27ec0e6f0f8cf29658c58f
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list