mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 14:01:27 +00:00
dvbsubenc: Fix placement of the object version
Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
5c19f64c60
commit
df211c3ab7
@ -223,7 +223,7 @@ static int encode_dvb_subtitles(DVBSubtitleContext *s,
|
||||
else
|
||||
page_state = 2; /* mode change */
|
||||
/* page_version = 0 + page_state */
|
||||
*q++ = s->object_version | (page_state << 2) | 3;
|
||||
*q++ = (s->object_version << 4) | (page_state << 2) | 3;
|
||||
|
||||
for (region_id = 0; region_id < h->num_rects; region_id++) {
|
||||
*q++ = region_id;
|
||||
|
Loading…
Reference in New Issue
Block a user