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
ce67728a
Commit
ce67728a
authored
Jan 28, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stick b_error to object types that actually use it
parent
d5821107
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
8 additions
and
4 deletions
+8
-4
include/vlc_codec.h
include/vlc_codec.h
+1
-0
include/vlc_common.h
include/vlc_common.h
+0
-1
include/vlc_input.h
include/vlc_input.h
+1
-0
include/vlc_plugin.h
include/vlc_plugin.h
+2
-2
include/vlc_stream.h
include/vlc_stream.h
+1
-0
include/vlc_vout.h
include/vlc_vout.h
+1
-0
modules/access/rtmp/rtmp_amf_flv.h
modules/access/rtmp/rtmp_amf_flv.h
+1
-0
modules/stream_out/transcode/transcode.h
modules/stream_out/transcode/transcode.h
+1
-0
src/misc/objects.c
src/misc/objects.c
+0
-1
No files found.
include/vlc_codec.h
View file @
ce67728a
...
@@ -56,6 +56,7 @@ struct decoder_t
...
@@ -56,6 +56,7 @@ struct decoder_t
/* Module properties */
/* Module properties */
module_t
*
p_module
;
module_t
*
p_module
;
decoder_sys_t
*
p_sys
;
decoder_sys_t
*
p_sys
;
bool
b_error
;
/* Input format ie from demuxer (XXX: a lot of field could be invalid) */
/* Input format ie from demuxer (XXX: a lot of field could be invalid) */
es_format_t
fmt_in
;
es_format_t
fmt_in
;
...
...
include/vlc_common.h
View file @
ce67728a
...
@@ -536,7 +536,6 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
...
@@ -536,7 +536,6 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
int i_flags; \
int i_flags; \
\
\
/* Object properties */
\
/* Object properties */
\
volatile bool b_error;
/**< set by the object */
\
volatile bool b_die;
/**< set by the outside */
\
volatile bool b_die;
/**< set by the outside */
\
bool b_force;
/**< set by the outside (eg. module_need()) */
\
bool b_force;
/**< set by the outside (eg. module_need()) */
\
\
\
...
...
include/vlc_input.h
View file @
ce67728a
...
@@ -267,6 +267,7 @@ struct input_thread_t
...
@@ -267,6 +267,7 @@ struct input_thread_t
{
{
VLC_COMMON_MEMBERS
VLC_COMMON_MEMBERS
bool
b_error
;
bool
b_eof
;
bool
b_eof
;
bool
b_preparsing
;
bool
b_preparsing
;
bool
b_dead
;
bool
b_dead
;
...
...
include/vlc_plugin.h
View file @
ce67728a
...
@@ -120,8 +120,8 @@ enum vlc_module_properties
...
@@ -120,8 +120,8 @@ enum vlc_module_properties
/**
/**
* Current plugin ABI version
* Current plugin ABI version
*/
*/
# define MODULE_SYMBOL 1_1_0
e
# define MODULE_SYMBOL 1_1_0
f
# define MODULE_SUFFIX "__1_1_0
e
"
# define MODULE_SUFFIX "__1_1_0
f
"
/*****************************************************************************
/*****************************************************************************
* Add a few defines. You do not want to read this section. Really.
* Add a few defines. You do not want to read this section. Really.
...
...
include/vlc_stream.h
View file @
ce67728a
...
@@ -52,6 +52,7 @@ typedef struct stream_text_t stream_text_t;
...
@@ -52,6 +52,7 @@ typedef struct stream_text_t stream_text_t;
struct
stream_t
struct
stream_t
{
{
VLC_COMMON_MEMBERS
VLC_COMMON_MEMBERS
bool
b_error
;
/* Module properties for stream filter */
/* Module properties for stream filter */
module_t
*
p_module
;
module_t
*
p_module
;
...
...
include/vlc_vout.h
View file @
ce67728a
...
@@ -108,6 +108,7 @@ typedef struct vout_thread_sys_t vout_thread_sys_t;
...
@@ -108,6 +108,7 @@ typedef struct vout_thread_sys_t vout_thread_sys_t;
struct
vout_thread_t
struct
vout_thread_t
{
{
VLC_COMMON_MEMBERS
VLC_COMMON_MEMBERS
bool
b_error
;
/** \name Thread properties and locks */
/** \name Thread properties and locks */
/**@{*/
/**@{*/
...
...
modules/access/rtmp/rtmp_amf_flv.h
View file @
ce67728a
...
@@ -53,6 +53,7 @@ struct rtmp_control_thread_t
...
@@ -53,6 +53,7 @@ struct rtmp_control_thread_t
VLC_COMMON_MEMBERS
VLC_COMMON_MEMBERS
int
fd
;
int
fd
;
bool
b_error
;
vlc_url_t
url
;
vlc_url_t
url
;
char
*
psz_application
;
char
*
psz_application
;
...
...
modules/stream_out/transcode/transcode.h
View file @
ce67728a
...
@@ -25,6 +25,7 @@ struct sout_stream_sys_t
...
@@ -25,6 +25,7 @@ struct sout_stream_sys_t
vlc_cond_t
cond
;
vlc_cond_t
cond
;
picture_t
*
pp_pics
[
PICTURE_RING_SIZE
];
picture_t
*
pp_pics
[
PICTURE_RING_SIZE
];
int
i_first_pic
,
i_last_pic
;
int
i_first_pic
,
i_last_pic
;
bool
b_error
;
/* Audio */
/* Audio */
vlc_fourcc_t
i_acodec
;
/* codec audio (0 if not transcode) */
vlc_fourcc_t
i_acodec
;
/* codec audio (0 if not transcode) */
...
...
src/misc/objects.c
View file @
ce67728a
...
@@ -128,7 +128,6 @@ void *__vlc_custom_create( vlc_object_t *p_this, size_t i_size,
...
@@ -128,7 +128,6 @@ void *__vlc_custom_create( vlc_object_t *p_this, size_t i_size,
p_priv
->
psz_name
=
NULL
;
p_priv
->
psz_name
=
NULL
;
p_new
->
b_die
=
false
;
p_new
->
b_die
=
false
;
p_new
->
b_error
=
false
;
p_new
->
b_force
=
false
;
p_new
->
b_force
=
false
;
p_new
->
psz_header
=
NULL
;
p_new
->
psz_header
=
NULL
;
...
...
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