forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccesstweaks.c
149 lines (128 loc) · 4.22 KB
/
accesstweaks.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*****************************************************************************
* accesstweaks.c Access controls tweaking stream filter
*****************************************************************************
* Copyright (C) 2015 VideoLAN Authors
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser 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.
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_stream.h>
#include <assert.h>
static int Open(vlc_object_t *);
vlc_module_begin ()
set_shortname("accesstweaks")
set_category (CAT_INPUT)
set_subcategory (SUBCAT_INPUT_STREAM_FILTER)
set_capability ("stream_filter", 301)
/* Developers only module, no translation please */
set_description ("Access controls tweaking")
set_callbacks(Open, NULL)
add_bool("seek", true, "Expose seeking capability", NULL, false)
change_volatile ()
add_bool("fastseek", true, "Expose fast-seeking capability", NULL, false)
change_volatile ()
add_bool("stream-size", true, "Expose stream size if known", NULL, false)
change_volatile()
add_shortcut("tweaks")
vlc_module_end ()
struct stream_sys_t
{
bool b_seek;
bool b_fastseek;
bool b_size;
};
/**
*
*/
static int Control( stream_t *p_stream, int i_query, va_list args )
{
stream_sys_t *p_sys = p_stream->p_sys;
switch( i_query )
{
case STREAM_CAN_FASTSEEK:
if( !p_sys->b_fastseek || !p_sys->b_seek )
{
*va_arg( args, bool* ) = false;
return VLC_SUCCESS;
}
break;
case STREAM_CAN_SEEK:
if( !p_sys->b_seek )
{
*va_arg( args, bool* ) = false;
return VLC_SUCCESS;
}
break;
case STREAM_GET_SIZE:
if (!p_sys->b_size)
return VLC_EGENERIC;
break;
default:
break;
}
return vlc_stream_vaControl( p_stream->s, i_query, args );
}
static ssize_t Read( stream_t *s, void *buffer, size_t i_read )
{
return vlc_stream_Read( s->s, buffer, i_read );
}
static int Seek( stream_t *s, uint64_t offset )
{
stream_sys_t *p_sys = s->p_sys;
assert( p_sys->b_seek );
return vlc_stream_Seek( s->s, offset );
}
static int Open( vlc_object_t *p_object )
{
stream_t *p_stream = (stream_t *) p_object;
stream_sys_t *p_sys = vlc_obj_malloc(p_object, sizeof (*p_sys));
if (unlikely(p_sys == NULL))
return VLC_ENOMEM;
uint64_t size;
bool b;
bool used = false;
p_sys->b_seek = var_InheritBool(p_stream, "seek");
p_sys->b_size = var_InheritBool(p_stream, "stream-size");
if (!p_sys->b_seek)
{
if (vlc_stream_Control(p_stream->s, STREAM_CAN_SEEK, &b) == 0)
used = b;
p_sys->b_fastseek = false;
}
else
{
p_sys->b_fastseek = var_InheritBool(p_stream, "fastseek");
if (!p_sys->b_fastseek
&& vlc_stream_Control(p_stream->s, STREAM_CAN_FASTSEEK,
&b) == 0)
used = b;
}
if (!p_sys->b_size && vlc_stream_GetSize(p_stream->s, &size) == 0)
used = true;
if (!used) /* Nothing to do: skip this filter */
return VLC_EGENERIC;
p_stream->p_sys = p_sys;
p_stream->pf_read = Read;
p_stream->pf_seek = p_sys->b_seek ? Seek : NULL;
p_stream->pf_control = Control;
return VLC_SUCCESS;
}