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
8362fa0d
Commit
8362fa0d
authored
Feb 21, 2005
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all: woops (debug messages left).
parent
70ee5fbf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
8 deletions
+0
-8
modules/codec/ffmpeg/video.c
modules/codec/ffmpeg/video.c
+0
-5
modules/demux/mp4/mp4.c
modules/demux/mp4/mp4.c
+0
-3
No files found.
modules/codec/ffmpeg/video.c
View file @
8362fa0d
...
...
@@ -639,10 +639,6 @@ picture_t *E_(DecodeVideo)( decoder_t *p_dec, block_t **pp_block )
{
p_pic
->
date
=
p_sys
->
i_pts
;
static
int64_t
i_old
=
0
;
msg_Dbg
(
p_dec
,
"pts=%lld diff=%lld"
,
p_pic
->
date
,
p_pic
->
date
-
i_old
);
i_old
=
p_pic
->
date
;
/* interpolate the next PTS */
if
(
p_sys
->
p_context
->
frame_rate
>
0
)
{
...
...
@@ -670,7 +666,6 @@ picture_t *E_(DecodeVideo)( decoder_t *p_dec, block_t **pp_block )
else
{
p_dec
->
pf_vout_buffer_del
(
p_dec
,
p_pic
);
msg_Dbg
(
p_dec
,
"pts=0"
);
}
}
...
...
modules/demux/mp4/mp4.c
View file @
8362fa0d
...
...
@@ -702,9 +702,6 @@ static int Demux( demux_t *p_demux )
else
p_block
->
i_pts
=
0
;
if
(
tk
->
fmt
.
i_cat
==
VIDEO_ES
)
msg_Dbg
(
p_demux
,
"pts=%lld dts=%lld"
,
p_block
->
i_pts
,
p_block
->
i_dts
);
if
(
!
tk
->
b_drms
||
(
tk
->
b_drms
&&
tk
->
p_drms
)
)
es_out_Send
(
p_demux
->
out
,
tk
->
p_es
,
p_block
);
}
...
...
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