[vlc-commits] [Git][videolan/vlc][master] 4 commits: config/cat: add missing assert.h include
François Cartegnie (@fcartegnie)
gitlab at videolan.org
Mon Feb 26 17:31:27 UTC 2024
François Cartegnie pushed to branch master at VideoLAN / VLC
Commits:
3d51e301 by Steve Lhomme at 2024-02-26T17:00:55+00:00
config/cat: add missing assert.h include
- - - - -
b91c8237 by Steve Lhomme at 2024-02-26T17:00:55+00:00
ts_metadata: add missing assert.h include
- - - - -
e0a34b13 by Steve Lhomme at 2024-02-26T17:00:55+00:00
vlc_config_cat.h: remove unused assert.h
- - - - -
a8957ca6 by Steve Lhomme at 2024-02-26T17:00:55+00:00
vlc_es_out.h: remove unused assert.h
- - - - -
4 changed files:
- include/vlc_config_cat.h
- include/vlc_es_out.h
- modules/demux/mpeg/ts_metadata.c
- src/config/cat.c
Changes:
=====================================
include/vlc_config_cat.h
=====================================
@@ -28,8 +28,6 @@
# include <vlc_plugin.h>
-# include <assert.h>
-
#define MAIN_TITLE N_( "VLC preferences" )
/* - Titles -
=====================================
include/vlc_es_out.h
=====================================
@@ -23,8 +23,6 @@
#ifndef VLC_ES_OUT_H
#define VLC_ES_OUT_H 1
-#include <assert.h>
-
#include <vlc_es.h>
#include <vlc_tick.h>
=====================================
modules/demux/mpeg/ts_metadata.c
=====================================
@@ -33,6 +33,8 @@
#include "../../meta_engine/ID3Tag.h"
#include "../../meta_engine/ID3Meta.h"
+#include <assert.h>
+
static int ID3TAG_Parse_Handler( uint32_t i_tag, const uint8_t *p_payload,
size_t i_payload, void *p_priv )
{
=====================================
src/config/cat.c
=====================================
@@ -30,6 +30,8 @@
#include <vlc_common.h>
#include <vlc_config_cat.h>
+#include <assert.h>
+
static const struct config_category_t categories_array[] =
{
{ CAT_PLAYLIST, SUBCAT_PLAYLIST_GENERAL, PLAYLIST_HELP },
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/bfa5132db13960cd7f0813959425aa6dc217cc2e...a8957ca68cc965f7fd6584199640049b59f64b42
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/bfa5132db13960cd7f0813959425aa6dc217cc2e...a8957ca68cc965f7fd6584199640049b59f64b42
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