Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
457
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
5e020e6d
Commit
5e020e6d
authored
9 years ago
by
François Cartegnie
Browse files
Options
Downloads
Patches
Plain Diff
demux: h264: fix frame dts/pts with interlaced video
Conformance sample 50fps, interlaced, MVCICT-1.264
parent
1d9cfa88
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/demux/mpeg/h264.c
+24
-15
24 additions, 15 deletions
modules/demux/mpeg/h264.c
with
24 additions
and
15 deletions
modules/demux/mpeg/h264.c
+
24
−
15
View file @
5e020e6d
...
...
@@ -60,10 +60,12 @@ vlc_module_end ()
*****************************************************************************/
struct
demux_sys_t
{
mtime_t
i_dts
;
es_out_id_t
*
p_es
;
float
f_fps
;
date_t
dts
;
unsigned
frame_rate_num
;
unsigned
frame_rate_den
;
decoder_t
*
p_packetizer
;
};
...
...
@@ -107,11 +109,18 @@ static int Open( vlc_object_t * p_this )
p_demux
->
pf_control
=
Control
;
p_demux
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
demux_sys_t
)
);
p_sys
->
p_es
=
NULL
;
p_sys
->
i_dts
=
0
;
p_sys
->
f_fps
=
var_CreateGetFloat
(
p_demux
,
"h264-fps"
);
if
(
p_sys
->
f_fps
<
0
.
001
f
)
p_sys
->
f_fps
=
0
.
001
f
;
msg_Dbg
(
p_demux
,
"using %.2f fps"
,
(
double
)
p_sys
->
f_fps
);
p_sys
->
frame_rate_num
=
25000
;
p_sys
->
frame_rate_den
=
1000
;
float
f_fps
=
var_CreateGetFloat
(
p_demux
,
"h264-fps"
);
if
(
f_fps
)
{
if
(
f_fps
<
0
.
001
f
)
f_fps
=
0
.
001
f
;
p_sys
->
frame_rate_den
=
1000
;
p_sys
->
frame_rate_num
=
1000
*
f_fps
;
}
msg_Dbg
(
p_demux
,
"using %.2f fps"
,
(
double
)
p_sys
->
frame_rate_num
/
p_sys
->
frame_rate_den
);
date_Init
(
&
p_sys
->
dts
,
p_sys
->
frame_rate_num
,
p_sys
->
frame_rate_den
);
date_Set
(
&
p_sys
->
dts
,
VLC_TS_0
);
/* Load the mpegvideo packetizer */
es_format_Init
(
&
fmt
,
VIDEO_ES
,
VLC_CODEC_H264
);
...
...
@@ -152,9 +161,8 @@ static int Demux( demux_t *p_demux)
return
0
;
}
/* m4v demuxer doesn't set pts/dts at all */
p_block_in
->
i_dts
=
VLC_TS_0
;
p_block_in
->
i_pts
=
VLC_TS_0
;
p_block_in
->
i_dts
=
date_Get
(
&
p_sys
->
dts
);
p_block_in
->
i_pts
=
VLC_TS_INVALID
;
while
(
(
p_block_out
=
p_sys
->
p_packetizer
->
pf_packetize
(
p_sys
->
p_packetizer
,
&
p_block_in
))
)
{
...
...
@@ -170,15 +178,16 @@ static int Demux( demux_t *p_demux)
p_sys
->
p_es
=
es_out_Add
(
p_demux
->
out
,
&
p_sys
->
p_packetizer
->
fmt_out
);
}
es_out_Control
(
p_demux
->
out
,
ES_OUT_SET_PCR
,
p_sys
->
i_dts
);
p_block_out
->
i_dts
=
VLC_TS_0
+
p_sys
->
i_dts
;
p_block_out
->
i_pts
=
VLC_TS_0
+
p_sys
->
i_dts
;
/* h264 packetizer does merge multiple NAL into AU, but slice flag persists */
if
(
p_block_out
->
i_flags
&
BLOCK_FLAG_TYPE_MASK
)
{
es_out_Control
(
p_demux
->
out
,
ES_OUT_SET_PCR
,
p_block_out
->
i_dts
);
date_Increment
(
&
p_sys
->
dts
,
1
);
}
es_out_Send
(
p_demux
->
out
,
p_sys
->
p_es
,
p_block_out
);
p_block_out
=
p_next
;
p_sys
->
i_dts
+=
(
int64_t
)((
float
)
CLOCK_FREQ
/
p_sys
->
f_fps
);
}
}
return
1
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment