[vlc-commits] packetizer: hevc: allow changing fmt.video params
Francois Cartegnie
git at videolan.org
Thu Mar 30 15:33:02 CEST 2017
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Mar 30 15:08:00 2017 +0200| [bcce222e5327c426cab746daf2d1e5c5b4ef8338] | committer: Francois Cartegnie
packetizer: hevc: allow changing fmt.video params
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bcce222e5327c426cab746daf2d1e5c5b4ef8338
---
modules/packetizer/hevc.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/packetizer/hevc.c b/modules/packetizer/hevc.c
index 25da398..bbba250 100644
--- a/modules/packetizer/hevc.c
+++ b/modules/packetizer/hevc.c
@@ -438,14 +438,14 @@ static void ActivateSets(decoder_t *p_dec,
p_sys->p_active_vps = p_vps;
if(p_sps)
{
- if(!p_dec->fmt_out.video.i_frame_rate)
+ if(!p_dec->fmt_in.video.i_frame_rate)
{
(void) hevc_get_frame_rate( p_sps, p_dec->p_sys->rgi_p_decvps,
&p_dec->fmt_out.video.i_frame_rate,
&p_dec->fmt_out.video.i_frame_rate_base );
}
- if(p_dec->fmt_out.video.primaries == COLOR_PRIMARIES_UNDEF)
+ if(p_dec->fmt_in.video.primaries == COLOR_PRIMARIES_UNDEF)
{
(void) hevc_get_colorimetry( p_sps,
&p_dec->fmt_out.video.primaries,
@@ -466,7 +466,7 @@ static void ActivateSets(decoder_t *p_dec,
}
}
- if(p_dec->fmt_out.i_profile == -1)
+ if(p_dec->fmt_in.i_profile == -1)
{
uint8_t i_profile, i_level;
if( hevc_get_sps_profile_tier_level( p_sps, &i_profile, &i_level ) )
More information about the vlc-commits
mailing list