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
58b6fda7
Commit
58b6fda7
authored
Jul 24, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/stream_out/display.c: converted to the new input API + re-enabled in the build.
parent
52b43cc9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
22 deletions
+8
-22
configure.ac
configure.ac
+2
-2
modules/stream_out/display.c
modules/stream_out/display.c
+6
-20
No files found.
configure.ac
View file @
58b6fda7
...
@@ -1177,8 +1177,8 @@ then
...
@@ -1177,8 +1177,8 @@ then
VLC_ADD_PLUGINS([packetizer_copy])
VLC_ADD_PLUGINS([packetizer_copy])
VLC_ADD_PLUGINS([stream_out_dummy stream_out_standard stream_out_es stream_out_rtp])
VLC_ADD_PLUGINS([stream_out_dummy stream_out_standard stream_out_es stream_out_rtp])
VLC_ADD_PLUGINS([stream_out_duplicate stream_out_gather])
VLC_ADD_PLUGINS([stream_out_duplicate stream_out_gather
stream_out_display
])
# VLC_ADD_PLUGINS([stream_out_transrate
stream_out_display
])
# VLC_ADD_PLUGINS([stream_out_transrate])
dnl Ogg and vorbis are handled in their respective section
dnl Ogg and vorbis are handled in their respective section
fi
fi
...
...
modules/stream_out/display.c
View file @
58b6fda7
...
@@ -136,13 +136,12 @@ static void Close( vlc_object_t * p_this )
...
@@ -136,13 +136,12 @@ static void Close( vlc_object_t * p_this )
p_stream
->
p_sout
->
i_out_pace_nocontrol
--
;
p_stream
->
p_sout
->
i_out_pace_nocontrol
--
;
vlc_object_release
(
p_sys
->
p_input
);
vlc_object_release
(
p_sys
->
p_input
);
free
(
p_sys
);
free
(
p_sys
);
}
}
struct
sout_stream_id_t
struct
sout_stream_id_t
{
{
es_descriptor_t
*
p_es
;
decoder_t
*
p_dec
;
};
};
static
sout_stream_id_t
*
Add
(
sout_stream_t
*
p_stream
,
es_format_t
*
p_fmt
)
static
sout_stream_id_t
*
Add
(
sout_stream_t
*
p_stream
,
es_format_t
*
p_fmt
)
...
@@ -158,19 +157,11 @@ static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
...
@@ -158,19 +157,11 @@ static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
id
=
malloc
(
sizeof
(
sout_stream_id_t
)
);
id
=
malloc
(
sizeof
(
sout_stream_id_t
)
);
id
->
p_es
=
malloc
(
sizeof
(
es_descriptor_t
)
);
id
->
p_dec
=
input_DecoderNew
(
p_sys
->
p_input
,
p_fmt
,
VLC_TRUE
);
memset
(
id
->
p_es
,
0
,
sizeof
(
es_descriptor_t
)
);
if
(
id
->
p_dec
==
NULL
)
id
->
p_es
->
i_cat
=
p_fmt
->
i_cat
;
id
->
p_es
->
i_fourcc
=
p_fmt
->
i_codec
;
id
->
p_es
->
b_force_decoder
=
VLC_TRUE
;
es_format_Copy
(
&
id
->
p_es
->
fmt
,
p_fmt
);
id
->
p_es
->
p_dec
=
input_RunDecoder
(
p_sys
->
p_input
,
id
->
p_es
);
if
(
id
->
p_es
->
p_dec
==
NULL
)
{
{
msg_Err
(
p_stream
,
"cannot create decoder for fcc=`%4.4s'"
,
msg_Err
(
p_stream
,
"cannot create decoder for fcc=`%4.4s'"
,
(
char
*
)
&
p_fmt
->
i_codec
);
(
char
*
)
&
p_fmt
->
i_codec
);
free
(
id
->
p_es
);
free
(
id
);
free
(
id
);
return
NULL
;
return
NULL
;
}
}
...
@@ -180,13 +171,8 @@ static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
...
@@ -180,13 +171,8 @@ static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
static
int
Del
(
sout_stream_t
*
p_stream
,
sout_stream_id_t
*
id
)
static
int
Del
(
sout_stream_t
*
p_stream
,
sout_stream_id_t
*
id
)
{
{
sout_stream_sys_t
*
p_sys
=
p_stream
->
p_sys
;
input_DecoderDelete
(
id
->
p_dec
);
input_EndDecoder
(
p_sys
->
p_input
,
id
->
p_es
);
free
(
id
->
p_es
);
free
(
id
);
free
(
id
);
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
...
@@ -201,7 +187,7 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
...
@@ -201,7 +187,7 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
p_buffer
->
p_next
=
NULL
;
p_buffer
->
p_next
=
NULL
;
if
(
id
->
p_
es
->
p_
dec
&&
p_buffer
->
i_buffer
>
0
)
if
(
id
->
p_dec
&&
p_buffer
->
i_buffer
>
0
)
{
{
if
(
p_buffer
->
i_dts
<=
0
)
if
(
p_buffer
->
i_dts
<=
0
)
p_buffer
->
i_dts
=
0
;
p_buffer
->
i_dts
=
0
;
...
@@ -213,7 +199,7 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
...
@@ -213,7 +199,7 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
else
else
p_buffer
->
i_pts
+=
p_sys
->
i_delay
;
p_buffer
->
i_pts
+=
p_sys
->
i_delay
;
input_Decode
Block
(
id
->
p_es
->
p_dec
,
p_buffer
);
input_Decode
rDecode
(
id
->
p_dec
,
p_buffer
);
}
}
p_buffer
=
p_next
;
p_buffer
=
p_next
;
...
...
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