Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
0f4951b8
Commit
0f4951b8
authored
Mar 25, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
control: Remove tag_query_*.
parent
3adef752
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
169 deletions
+2
-169
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
+1
-2
include/vlc/libvlc.h
include/vlc/libvlc.h
+0
-29
src/Makefile.am
src/Makefile.am
+1
-2
src/control/tag_query.c
src/control/tag_query.c
+0
-136
No files found.
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
View file @
0f4951b8
...
@@ -166,8 +166,7 @@ set( SOURCES_libvlc_control
...
@@ -166,8 +166,7 @@ set( SOURCES_libvlc_control
control/mediacontrol_core.c
control/mediacontrol_core.c
control/mediacontrol_util.c
control/mediacontrol_util.c
control/mediacontrol_audio_video.c
control/mediacontrol_audio_video.c
control/media_discoverer.c
control/media_discoverer.c )
control/tag_query.c )
add_library(libvlc-control SHARED ${SOURCES_libvlc_control})
add_library(libvlc-control SHARED ${SOURCES_libvlc_control})
...
...
include/vlc/libvlc.h
View file @
0f4951b8
...
@@ -543,35 +543,6 @@ VLC_PUBLIC_API int libvlc_media_instance_can_pause(
...
@@ -543,35 +543,6 @@ VLC_PUBLIC_API int libvlc_media_instance_can_pause(
/** @} */
/** @} */
/*****************************************************************************
* Tag Query
*****************************************************************************/
/** defgroup libvlc_tag_query Tag Query
* \ingroup libvlc
* LibVLC Tag query
* @{
*/
VLC_PUBLIC_API
libvlc_tag_query_t
*
libvlc_tag_query_new
(
libvlc_instance_t
*
,
libvlc_exception_t
*
);
VLC_PUBLIC_API
void
libvlc_tag_query_release
(
libvlc_tag_query_t
*
);
VLC_PUBLIC_API
void
libvlc_tag_query_retain
(
libvlc_tag_query_t
*
);
VLC_PUBLIC_API
void
libvlc_tag_query_set_match_tag_and_key
(
libvlc_tag_query_t
*
p_q
,
libvlc_tag_t
tag
,
char
*
psz_tag_key
,
libvlc_exception_t
*
);
VLC_PUBLIC_API
int
libvlc_tag_query_match
(
libvlc_tag_query_t
*
,
libvlc_media_descriptor_t
*
,
libvlc_exception_t
*
);
/** @} */
/*****************************************************************************
/*****************************************************************************
* Media List
* Media List
*****************************************************************************/
*****************************************************************************/
...
...
src/Makefile.am
View file @
0f4951b8
...
@@ -374,8 +374,7 @@ SOURCES_libvlc_control = \
...
@@ -374,8 +374,7 @@ SOURCES_libvlc_control = \
control/mediacontrol_core.c
\
control/mediacontrol_core.c
\
control/mediacontrol_util.c
\
control/mediacontrol_util.c
\
control/mediacontrol_audio_video.c
\
control/mediacontrol_audio_video.c
\
control/media_discoverer.c
\
control/media_discoverer.c
control/tag_query.c
###############################################################################
###############################################################################
# Stamp rules
# Stamp rules
...
...
src/control/tag_query.c
deleted
100644 → 0
View file @
3adef752
/*****************************************************************************
* tag_query.c: libvlc new API media tag query functions
*****************************************************************************
* Copyright (C) 2007 the VideoLAN team
* $Id$
*
* Authors: Pierre d'Herbemont <pdherbemont # videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include "libvlc_internal.h"
#include <vlc/libvlc.h>
#include "vlc_arrays.h"
/* XXX This API is in construction
*
* It's goal is to represent a meta tag query
* It should be also able to say if a query can be matched in a media
* descriptor through libvlc_query_match.
*/
/*
* Public libvlc functions
*/
/**************************************************************************
* new (Public)
*
* Init an object.
**************************************************************************/
libvlc_tag_query_t
*
libvlc_tag_query_new
(
libvlc_instance_t
*
p_inst
,
libvlc_exception_t
*
p_e
)
{
(
void
)
p_e
;
libvlc_tag_query_t
*
p_q
;
p_q
=
malloc
(
sizeof
(
libvlc_tag_query_t
));
if
(
!
p_q
)
return
NULL
;
p_q
->
p_libvlc_instance
=
p_inst
;
p_q
->
i_refcount
=
1
;
p_q
->
tag
=
NULL
;
p_q
->
psz_tag_key
=
NULL
;
libvlc_retain
(
p_inst
);
return
p_q
;
}
/**************************************************************************
* release (Public)
*
* Release an object.
**************************************************************************/
void
libvlc_tag_query_release
(
libvlc_tag_query_t
*
p_q
)
{
p_q
->
i_refcount
--
;
if
(
p_q
->
i_refcount
>
0
)
return
;
free
(
p_q
->
tag
);
free
(
p_q
->
psz_tag_key
);
libvlc_release
(
p_q
->
p_libvlc_instance
);
free
(
p_q
);
}
/**************************************************************************
* retain (Public)
*
* Release an object.
**************************************************************************/
void
libvlc_tag_query_retain
(
libvlc_tag_query_t
*
p_q
)
{
p_q
->
i_refcount
++
;
}
/**************************************************************************
* set_match_tag_and_key (Public)
**************************************************************************/
void
libvlc_tag_query_set_match_tag_and_key
(
libvlc_tag_query_t
*
p_q
,
libvlc_tag_t
tag
,
char
*
psz_tag_key
,
libvlc_exception_t
*
p_e
)
{
(
void
)
p_e
;
p_q
->
tag
=
strdup
(
tag
);
p_q
->
psz_tag_key
=
strdup
(
psz_tag_key
);
}
/**************************************************************************
* match (Public)
*
* Return true if the query p_q is matched in p_md
**************************************************************************/
int
libvlc_tag_query_match
(
libvlc_tag_query_t
*
p_q
,
libvlc_media_descriptor_t
*
p_md
,
libvlc_exception_t
*
p_e
)
{
int
i
;
struct
libvlc_tags_storage_t
*
p_ts
;
(
void
)
p_e
;
if
(
!
p_q
->
psz_tag_key
)
return
1
;
p_ts
=
vlc_dictionary_value_for_key
(
&
p_md
->
tags
,
p_q
->
psz_tag_key
);
if
(
!
p_q
->
tag
)
return
p_ts
->
i_count
>
0
;
for
(
i
=
0
;
i
<
p_ts
->
i_count
;
i
++
)
{
if
(
!
strcmp
(
p_ts
->
ppsz_tags
[
i
],
p_q
->
tag
)
)
return
1
;
}
/* In construction... */
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment