[vlc-devel] [PATCH 3/3] mpgatofixed32: mark output blocks as keyframes
Steve Lhomme
robux4 at videolabs.io
Mon Aug 8 14:39:51 CEST 2016
---
modules/audio_filter/converter/mpgatofixed32.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/audio_filter/converter/mpgatofixed32.c b/modules/audio_filter/converter/mpgatofixed32.c
index 15a8ff7..ce2292f 100644
--- a/modules/audio_filter/converter/mpgatofixed32.c
+++ b/modules/audio_filter/converter/mpgatofixed32.c
@@ -240,6 +240,7 @@ static block_t *Convert( filter_t *p_filter, block_t *p_block )
p_out->i_dts = p_block->i_dts;
p_out->i_pts = p_block->i_pts;
p_out->i_length = p_block->i_length;
+ p_out->i_flags = BLOCK_FLAG_TYPE_I;
DoWork( p_filter, p_block, p_out );
--
2.8.2
More information about the vlc-devel
mailing list