Commit fbd71bba authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit '1da2a207'

* commit '1da2a207':
  dvbsubdec: Fix function return type
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents d0186a4e 1da2a207
...@@ -1435,7 +1435,7 @@ static int dvbsub_parse_page_segment(AVCodecContext *avctx, ...@@ -1435,7 +1435,7 @@ static int dvbsub_parse_page_segment(AVCodecContext *avctx,
#ifdef DEBUG #ifdef DEBUG
static void save_display_set(DVBSubContext *ctx) static int save_display_set(DVBSubContext *ctx)
{ {
DVBSubRegion *region; DVBSubRegion *region;
DVBSubRegionDisplay *display; DVBSubRegionDisplay *display;
...@@ -1456,7 +1456,7 @@ static void save_display_set(DVBSubContext *ctx) ...@@ -1456,7 +1456,7 @@ static void save_display_set(DVBSubContext *ctx)
region = get_region(ctx, display->region_id); region = get_region(ctx, display->region_id);
if (!region) if (!region)
return; return -1;
if (x_pos == -1) { if (x_pos == -1) {
x_pos = display->x_pos; x_pos = display->x_pos;
...@@ -1488,13 +1488,13 @@ static void save_display_set(DVBSubContext *ctx) ...@@ -1488,13 +1488,13 @@ static void save_display_set(DVBSubContext *ctx)
pbuf = av_malloc(width * height * 4); pbuf = av_malloc(width * height * 4);
if (!pbuf) if (!pbuf)
return; return -1;
for (display = ctx->display_list; display; display = display->next) { for (display = ctx->display_list; display; display = display->next) {
region = get_region(ctx, display->region_id); region = get_region(ctx, display->region_id);
if (!region) if (!region)
return; return -1;
x_off = display->x_pos - x_pos; x_off = display->x_pos - x_pos;
y_off = display->y_pos - y_pos; y_off = display->y_pos - y_pos;
...@@ -1534,6 +1534,7 @@ static void save_display_set(DVBSubContext *ctx) ...@@ -1534,6 +1534,7 @@ static void save_display_set(DVBSubContext *ctx)
} }
fileno_index++; fileno_index++;
return 0;
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment