mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
dvbsubdec: bottom_field_len fix
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
55f17d3175
commit
7e0f4f9d0f
@ -869,7 +869,6 @@ static void dvbsub_parse_object_segment(AVCodecContext *avctx,
|
||||
DVBSubContext *ctx = avctx->priv_data;
|
||||
|
||||
const uint8_t *buf_end = buf + buf_size;
|
||||
const uint8_t *block;
|
||||
int object_id;
|
||||
DVBSubObject *object;
|
||||
DVBSubObjectDisplay *display;
|
||||
@ -900,7 +899,8 @@ static void dvbsub_parse_object_segment(AVCodecContext *avctx,
|
||||
}
|
||||
|
||||
for (display = object->display_list; display; display = display->object_list_next) {
|
||||
block = buf;
|
||||
const uint8_t *block = buf;
|
||||
int bfl = bottom_field_len;
|
||||
|
||||
dvbsub_parse_pixel_data_block(avctx, display, block, top_field_len, 0,
|
||||
non_modifying_color);
|
||||
@ -908,9 +908,9 @@ static void dvbsub_parse_object_segment(AVCodecContext *avctx,
|
||||
if (bottom_field_len > 0)
|
||||
block = buf + top_field_len;
|
||||
else
|
||||
bottom_field_len = top_field_len;
|
||||
bfl = top_field_len;
|
||||
|
||||
dvbsub_parse_pixel_data_block(avctx, display, block, bottom_field_len, 1,
|
||||
dvbsub_parse_pixel_data_block(avctx, display, block, bfl, 1,
|
||||
non_modifying_color);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user