Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
c8530848
Commit
c8530848
authored
Apr 07, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/mux/*: fixed block_Realloc() typo.
parent
8831fe33
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/mux/avi.c
modules/mux/avi.c
+1
-1
modules/mux/mpeg/pes.c
modules/mux/mpeg/pes.c
+1
-1
No files found.
modules/mux/avi.c
View file @
c8530848
...
@@ -444,7 +444,7 @@ static int Mux ( sout_mux_t *p_mux )
...
@@ -444,7 +444,7 @@ static int Mux ( sout_mux_t *p_mux )
p_sys
->
idx1
.
i_entry_max
*
sizeof
(
avi_idx1_entry_t
)
);
p_sys
->
idx1
.
i_entry_max
*
sizeof
(
avi_idx1_entry_t
)
);
}
}
p_data
=
block_Realloc
(
p_data
,
8
,
0
);
p_data
=
block_Realloc
(
p_data
,
8
,
p_data
->
i_buffer
);
if
(
p_data
)
if
(
p_data
)
{
{
SetFCC
(
p_data
->
p_buffer
,
p_stream
->
fcc
);
SetFCC
(
p_data
->
p_buffer
,
p_stream
->
fcc
);
...
...
modules/mux/mpeg/pes.c
View file @
c8530848
...
@@ -273,7 +273,7 @@ int E_( EStoPES )( sout_instance_t *p_sout,
...
@@ -273,7 +273,7 @@ int E_( EStoPES )( sout_instance_t *p_sout,
if
(
p_es
)
if
(
p_es
)
{
{
p_es
=
block_Realloc
(
p_es
,
i_pes_header
,
0
);
p_es
=
block_Realloc
(
p_es
,
i_pes_header
,
p_es
->
i_buffer
);
/* reuse p_es for first frame */
/* reuse p_es for first frame */
*
pp_pes
=
p_pes
=
p_es
;
*
pp_pes
=
p_pes
=
p_es
;
/* don't touch i_dts, i_pts, i_length as are already set :) */
/* don't touch i_dts, i_pts, i_length as are already set :) */
...
...
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