Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
c80284ed
Commit
c80284ed
authored
Jul 20, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed printf format for size_t.
parent
2121de27
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
modules/codec/schroedinger.c
modules/codec/schroedinger.c
+2
-1
No files found.
modules/codec/schroedinger.c
View file @
c80284ed
...
...
@@ -250,6 +250,7 @@ static void SchroFrameFree( SchroFrame *frame, void *priv)
if
(
!
p_pic
)
return
;
/* FIXME it is wrong, you should call pf_vout_buffer_del */
if
(
p_pic
->
pf_release
)
p_pic
->
pf_release
(
p_pic
);
(
void
)
frame
;
}
...
...
@@ -449,7 +450,7 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
b_bail
=
1
;
}
msg_Dbg
(
p_dec
,
"Inserting bytes into decoder len=%
d of %d
pts=%"
PRId64
,
msg_Dbg
(
p_dec
,
"Inserting bytes into decoder len=%
zu of %zu
pts=%"
PRId64
,
i_pulen
,
p_block
->
i_buffer
,
p_block
->
i_pts
);
/* this stops the same block being fed back into this function if
* we were on the next iteration of this loop to output a picture */
...
...
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