[vlc-commits] commit: dvbsub.c : Don't fill region if page_state == 0 ( Björn Stenberg )
git at videolan.org
git at videolan.org
Wed Jun 16 10:36:12 CEST 2010
vlc | branch: master | Björn Stenberg <bjorn at haxx.se> | Tue Jun 15 14:47:22 2010 +0200| [57527c545a4cc51e6dbf1c15c8fb63c9b9da455d] | committer: Ilkka Ollakka
dvbsub.c : Don't fill region if page_state == 0
My interpretation of ETSI EN 300 743 is that the region_fill_flag of a region
composition segment should not cause the region to be filled when the containing
page composition segment has its' page_state variable set to 0 (page update).
Signed-off-by: Ilkka Ollakka <ileoo at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=57527c545a4cc51e6dbf1c15c8fb63c9b9da455d
---
modules/codec/dvbsub.c | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/modules/codec/dvbsub.c b/modules/codec/dvbsub.c
index fb7619c..a434003 100644
--- a/modules/codec/dvbsub.c
+++ b/modules/codec/dvbsub.c
@@ -840,7 +840,8 @@ static void decode_region_composition( decoder_t *p_dec, bs_t *s )
int i_segment_length, i_processed_length, i_id, i_version;
int i_width, i_height, i_level_comp, i_depth, i_clut;
int i_8_bg, i_4_bg, i_2_bg;
- bool b_fill;
+ bool b_region_fill, b_fill = false;
+ dvbsub_page_t *p_page = p_sys->p_page;
i_segment_length = bs_read( s, 16 );
i_id = bs_read( s, 8 );
@@ -877,7 +878,7 @@ static void decode_region_composition( decoder_t *p_dec, bs_t *s )
/* Region attributes */
p_region->i_id = i_id;
p_region->i_version = i_version;
- b_fill = bs_read( s, 1 );
+ b_region_fill = bs_read( s, 1 );
bs_skip( s, 3 ); /* Reserved */
i_width = bs_read( s, 16 );
@@ -917,6 +918,10 @@ static void decode_region_composition( decoder_t *p_dec, bs_t *s )
p_region->i_depth = 0;
b_fill = true;
}
+ else
+ if (b_region_fill && p_page->i_state != 0)
+ b_fill = true;
+
if( p_region->i_depth &&
( ( p_region->i_depth != i_depth ) ||
( p_region->i_level_comp != i_level_comp ) ||
More information about the vlc-commits
mailing list