libavcodec/dvbsubdec.c
c6ec28b1
 /*
124e2884
  * DVB subtitle decoding
406792e7
  * Copyright (c) 2005 Ian Caulfield
c6ec28b1
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
c6ec28b1
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
c6ec28b1
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
c6ec28b1
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
5509bffa
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
c6ec28b1
  */
3dc6272b
 
c6ec28b1
 #include "avcodec.h"
9106a698
 #include "get_bits.h"
08943c0b
 #include "bytestream.h"
6a85dfc8
 #include "internal.h"
2b4abbd6
 #include "libavutil/colorspace.h"
0075d9ec
 #include "libavutil/imgutils.h"
77ade55f
 #include "libavutil/opt.h"
c6ec28b1
 
 #define DVBSUB_PAGE_SEGMENT     0x10
 #define DVBSUB_REGION_SEGMENT   0x11
 #define DVBSUB_CLUT_SEGMENT     0x12
 #define DVBSUB_OBJECT_SEGMENT   0x13
08943c0b
 #define DVBSUB_DISPLAYDEFINITION_SEGMENT 0x14
c6ec28b1
 #define DVBSUB_DISPLAY_SEGMENT  0x80
 
05563cca
 #define cm (ff_crop_tab + MAX_NEG_CROP)
c6ec28b1
 
6a4cf065
 #define RGBA(r,g,b,a) (((unsigned)(a) << 24) | ((r) << 16) | ((g) << 8) | (b))
c6ec28b1
 
 typedef struct DVBSubCLUT {
     int id;
0f8d7719
     int version;
c6ec28b1
 
     uint32_t clut4[4];
     uint32_t clut16[16];
     uint32_t clut256[256];
115329f1
 
c6ec28b1
     struct DVBSubCLUT *next;
 } DVBSubCLUT;
 
 static DVBSubCLUT default_clut;
 
 typedef struct DVBSubObjectDisplay {
     int object_id;
     int region_id;
 
     int x_pos;
     int y_pos;
 
cedb83a6
     int fgcolor;
     int bgcolor;
115329f1
 
c6ec28b1
     struct DVBSubObjectDisplay *region_list_next;
115329f1
     struct DVBSubObjectDisplay *object_list_next;
c6ec28b1
 } DVBSubObjectDisplay;
 
 typedef struct DVBSubObject {
     int id;
0f8d7719
     int version;
c6ec28b1
 
     int type;
115329f1
 
     DVBSubObjectDisplay *display_list;
 
c6ec28b1
     struct DVBSubObject *next;
 } DVBSubObject;
 
 typedef struct DVBSubRegionDisplay {
     int region_id;
 
     int x_pos;
     int y_pos;
 
     struct DVBSubRegionDisplay *next;
 } DVBSubRegionDisplay;
 
 typedef struct DVBSubRegion {
     int id;
0f8d7719
     int version;
c6ec28b1
 
     int width;
     int height;
     int depth;
115329f1
 
c6ec28b1
     int clut;
cedb83a6
     int bgcolor;
115329f1
 
c6ec28b1
     uint8_t *pbuf;
     int buf_size;
b522d2a3
     int dirty;
c6ec28b1
 
     DVBSubObjectDisplay *display_list;
115329f1
 
c6ec28b1
     struct DVBSubRegion *next;
 } DVBSubRegion;
 
08943c0b
 typedef struct DVBSubDisplayDefinition {
     int version;
 
     int x;
     int y;
     int width;
     int height;
 } DVBSubDisplayDefinition;
 
c6ec28b1
 typedef struct DVBSubContext {
77ade55f
     AVClass *class;
c6ec28b1
     int composition_id;
     int ancillary_id;
 
0f8d7719
     int version;
c6ec28b1
     int time_out;
ca2f59e1
     int compute_edt; /**< if 1 end display time calculated using pts
                           if 0 (Default) calculated using time out */
d41dceb1
     int compute_clut;
3f87a170
     int substream;
ca2f59e1
     int64_t prev_start;
c6ec28b1
     DVBSubRegion *region_list;
     DVBSubCLUT   *clut_list;
     DVBSubObject *object_list;
115329f1
 
c6ec28b1
     DVBSubRegionDisplay *display_list;
08943c0b
     DVBSubDisplayDefinition *display_definition;
c6ec28b1
 } DVBSubContext;
 
 
 static DVBSubObject* get_object(DVBSubContext *ctx, int object_id)
 {
     DVBSubObject *ptr = ctx->object_list;
 
0dd954b1
     while (ptr && ptr->id != object_id) {
c6ec28b1
         ptr = ptr->next;
     }
115329f1
 
c6ec28b1
     return ptr;
 }
 
 static DVBSubCLUT* get_clut(DVBSubContext *ctx, int clut_id)
 {
     DVBSubCLUT *ptr = ctx->clut_list;
 
0dd954b1
     while (ptr && ptr->id != clut_id) {
c6ec28b1
         ptr = ptr->next;
     }
115329f1
 
c6ec28b1
     return ptr;
 }
 
 static DVBSubRegion* get_region(DVBSubContext *ctx, int region_id)
 {
     DVBSubRegion *ptr = ctx->region_list;
 
0dd954b1
     while (ptr && ptr->id != region_id) {
c6ec28b1
         ptr = ptr->next;
     }
115329f1
 
c6ec28b1
     return ptr;
 }
 
 static void delete_region_display_list(DVBSubContext *ctx, DVBSubRegion *region)
 {
     DVBSubObject *object, *obj2, **obj2_ptr;
     DVBSubObjectDisplay *display, *obj_disp, **obj_disp_ptr;
 
0dd954b1
     while (region->display_list) {
c6ec28b1
         display = region->display_list;
115329f1
 
c6ec28b1
         object = get_object(ctx, display->object_id);
115329f1
 
0dd954b1
         if (object) {
c6ec28b1
             obj_disp_ptr = &object->display_list;
dd72228e
             obj_disp = *obj_disp_ptr;
115329f1
 
0dd954b1
             while (obj_disp && obj_disp != display) {
c6ec28b1
                 obj_disp_ptr = &obj_disp->object_list_next;
dd72228e
                 obj_disp = *obj_disp_ptr;
c6ec28b1
             }
115329f1
 
c6ec28b1
             if (obj_disp) {
                 *obj_disp_ptr = obj_disp->object_list_next;
115329f1
 
e59d9328
                 if (!object->display_list) {
c6ec28b1
                     obj2_ptr = &ctx->object_list;
dd72228e
                     obj2 = *obj2_ptr;
c6ec28b1
 
8403c543
                     while (obj2 != object) {
d03867c2
                         av_assert0(obj2);
c6ec28b1
                         obj2_ptr = &obj2->next;
dd72228e
                         obj2 = *obj2_ptr;
c6ec28b1
                     }
115329f1
 
c6ec28b1
                     *obj2_ptr = obj2->next;
115329f1
 
adfc3b81
                     av_freep(&obj2);
c6ec28b1
                 }
             }
         }
115329f1
 
c6ec28b1
         region->display_list = display->region_list_next;
115329f1
 
adfc3b81
         av_freep(&display);
c6ec28b1
     }
115329f1
 
c6ec28b1
 }
 
e822c237
 static void delete_cluts(DVBSubContext *ctx)
c6ec28b1
 {
5b2052b3
     while (ctx->clut_list) {
25a36028
         DVBSubCLUT *clut = ctx->clut_list;
c6ec28b1
 
         ctx->clut_list = clut->next;
 
adfc3b81
         av_freep(&clut);
c6ec28b1
     }
e822c237
 }
c6ec28b1
 
e822c237
 static void delete_objects(DVBSubContext *ctx)
 {
     while (ctx->object_list) {
25a36028
         DVBSubObject *object = ctx->object_list;
e822c237
 
         ctx->object_list = object->next;
 
adfc3b81
         av_freep(&object);
e822c237
     }
 }
 
 static void delete_regions(DVBSubContext *ctx)
 {
     while (ctx->region_list) {
25a36028
         DVBSubRegion *region = ctx->region_list;
e822c237
 
         ctx->region_list = region->next;
 
         delete_region_display_list(ctx, region);
 
adfc3b81
         av_freep(&region->pbuf);
         av_freep(&region);
e822c237
     }
c6ec28b1
 }
 
98a6fff9
 static av_cold int dvbsub_init_decoder(AVCodecContext *avctx)
c6ec28b1
 {
     int i, r, g, b, a = 0;
31740736
     DVBSubContext *ctx = avctx->priv_data;
115329f1
 
3f87a170
     if (ctx->substream < 0) {
         ctx->composition_id = -1;
         ctx->ancillary_id   = -1;
     } else if (!avctx->extradata || (avctx->extradata_size < 4) || ((avctx->extradata_size % 5 != 0) && (avctx->extradata_size != 4))) {
36a62979
         av_log(avctx, AV_LOG_WARNING, "Invalid DVB subtitles stream extradata!\n");
b834becd
         ctx->composition_id = -1;
         ctx->ancillary_id   = -1;
     } else {
3f87a170
         if (avctx->extradata_size > 5*ctx->substream + 2) {
             ctx->composition_id = AV_RB16(avctx->extradata + 5*ctx->substream);
             ctx->ancillary_id   = AV_RB16(avctx->extradata + 5*ctx->substream + 2);
         } else {
             av_log(avctx, AV_LOG_WARNING, "Selected DVB subtitles sub-stream %d is not available\n", ctx->substream);
             ctx->composition_id = AV_RB16(avctx->extradata);
             ctx->ancillary_id   = AV_RB16(avctx->extradata + 2);
36a62979
         }
b834becd
     }
c6ec28b1
 
0f8d7719
     ctx->version = -1;
ca2f59e1
     ctx->prev_start = AV_NOPTS_VALUE;
0f8d7719
 
c6ec28b1
     default_clut.id = -1;
     default_clut.next = NULL;
 
     default_clut.clut4[0] = RGBA(  0,   0,   0,   0);
     default_clut.clut4[1] = RGBA(255, 255, 255, 255);
     default_clut.clut4[2] = RGBA(  0,   0,   0, 255);
     default_clut.clut4[3] = RGBA(127, 127, 127, 255);
 
     default_clut.clut16[0] = RGBA(  0,   0,   0,   0);
     for (i = 1; i < 16; i++) {
         if (i < 8) {
             r = (i & 1) ? 255 : 0;
             g = (i & 2) ? 255 : 0;
             b = (i & 4) ? 255 : 0;
         } else {
             r = (i & 1) ? 127 : 0;
             g = (i & 2) ? 127 : 0;
             b = (i & 4) ? 127 : 0;
115329f1
         }
c6ec28b1
         default_clut.clut16[i] = RGBA(r, g, b, 255);
     }
 
     default_clut.clut256[0] = RGBA(  0,   0,   0,   0);
     for (i = 1; i < 256; i++) {
         if (i < 8) {
             r = (i & 1) ? 255 : 0;
             g = (i & 2) ? 255 : 0;
             b = (i & 4) ? 255 : 0;
             a = 63;
         } else {
             switch (i & 0x88) {
             case 0x00:
                 r = ((i & 1) ? 85 : 0) + ((i & 0x10) ? 170 : 0);
                 g = ((i & 2) ? 85 : 0) + ((i & 0x20) ? 170 : 0);
                 b = ((i & 4) ? 85 : 0) + ((i & 0x40) ? 170 : 0);
                 a = 255;
                 break;
             case 0x08:
                 r = ((i & 1) ? 85 : 0) + ((i & 0x10) ? 170 : 0);
                 g = ((i & 2) ? 85 : 0) + ((i & 0x20) ? 170 : 0);
                 b = ((i & 4) ? 85 : 0) + ((i & 0x40) ? 170 : 0);
                 a = 127;
                 break;
             case 0x80:
                 r = 127 + ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0);
                 g = 127 + ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0);
                 b = 127 + ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0);
                 a = 255;
                 break;
             case 0x88:
                 r = ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0);
                 g = ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0);
                 b = ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0);
                 a = 255;
                 break;
             }
115329f1
         }
c6ec28b1
         default_clut.clut256[i] = RGBA(r, g, b, a);
     }
 
     return 0;
 }
 
98a6fff9
 static av_cold int dvbsub_close_decoder(AVCodecContext *avctx)
c6ec28b1
 {
31740736
     DVBSubContext *ctx = avctx->priv_data;
c6ec28b1
     DVBSubRegionDisplay *display;
 
e822c237
     delete_regions(ctx);
 
     delete_objects(ctx);
 
     delete_cluts(ctx);
 
     av_freep(&ctx->display_definition);
115329f1
 
5b2052b3
     while (ctx->display_list) {
c6ec28b1
         display = ctx->display_list;
         ctx->display_list = display->next;
115329f1
 
adfc3b81
         av_freep(&display);
c6ec28b1
     }
 
     return 0;
 }
 
4ba01419
 static int dvbsub_read_2bit_string(AVCodecContext *avctx,
                                    uint8_t *destbuf, int dbuf_len,
7993df65
                                    const uint8_t **srcbuf, int buf_size,
3e01c9b5
                                    int non_mod, uint8_t *map_table, int x_pos)
c6ec28b1
 {
     GetBitContext gb;
115329f1
 
c6ec28b1
     int bits;
     int run_length;
3e01c9b5
     int pixels_read = x_pos;
115329f1
 
8bf7a510
     init_get_bits(&gb, *srcbuf, buf_size << 3);
115329f1
 
3e01c9b5
     destbuf += x_pos;
 
8bf7a510
     while (get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
c6ec28b1
         bits = get_bits(&gb, 2);
 
0dd954b1
         if (bits) {
c6ec28b1
             if (non_mod != 1 || bits != 1) {
0dd954b1
                 if (map_table)
c6ec28b1
                     *destbuf++ = map_table[bits];
                 else
                     *destbuf++ = bits;
             }
             pixels_read++;
         } else {
5fc32c27
             bits = get_bits1(&gb);
c6ec28b1
             if (bits == 1) {
                 run_length = get_bits(&gb, 3) + 3;
                 bits = get_bits(&gb, 2);
115329f1
 
c6ec28b1
                 if (non_mod == 1 && bits == 1)
                     pixels_read += run_length;
                 else {
0dd954b1
                     if (map_table)
c6ec28b1
                         bits = map_table[bits];
                     while (run_length-- > 0 && pixels_read < dbuf_len) {
                         *destbuf++ = bits;
                         pixels_read++;
                     }
                 }
             } else {
5fc32c27
                 bits = get_bits1(&gb);
c6ec28b1
                 if (bits == 0) {
                     bits = get_bits(&gb, 2);
                     if (bits == 2) {
                         run_length = get_bits(&gb, 4) + 12;
                         bits = get_bits(&gb, 2);
 
                         if (non_mod == 1 && bits == 1)
                             pixels_read += run_length;
                         else {
0dd954b1
                             if (map_table)
c6ec28b1
                                 bits = map_table[bits];
                             while (run_length-- > 0 && pixels_read < dbuf_len) {
                                 *destbuf++ = bits;
                                 pixels_read++;
                             }
                         }
                     } else if (bits == 3) {
                         run_length = get_bits(&gb, 8) + 29;
                         bits = get_bits(&gb, 2);
 
                         if (non_mod == 1 && bits == 1)
                             pixels_read += run_length;
                         else {
0dd954b1
                             if (map_table)
c6ec28b1
                                 bits = map_table[bits];
                             while (run_length-- > 0 && pixels_read < dbuf_len) {
                                 *destbuf++ = bits;
                                 pixels_read++;
                             }
                         }
                     } else if (bits == 1) {
0dd954b1
                         if (map_table)
c6ec28b1
                             bits = map_table[0];
                         else
                             bits = 0;
eea064ae
                         run_length = 2;
                         while (run_length-- > 0 && pixels_read < dbuf_len) {
c6ec28b1
                             *destbuf++ = bits;
eea064ae
                             pixels_read++;
c6ec28b1
                         }
                     } else {
                         (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
                         return pixels_read;
                     }
                 } else {
0dd954b1
                     if (map_table)
c6ec28b1
                         bits = map_table[0];
                     else
                         bits = 0;
                     *destbuf++ = bits;
                     pixels_read++;
                 }
             }
         }
     }
115329f1
 
0dd954b1
     if (get_bits(&gb, 6))
ce800d46
         av_log(avctx, AV_LOG_ERROR, "line overflow\n");
c6ec28b1
 
     (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
 
     return pixels_read;
 }
115329f1
 
4ba01419
 static int dvbsub_read_4bit_string(AVCodecContext *avctx, uint8_t *destbuf, int dbuf_len,
7993df65
                                    const uint8_t **srcbuf, int buf_size,
3e01c9b5
                                    int non_mod, uint8_t *map_table, int x_pos)
c6ec28b1
 {
     GetBitContext gb;
115329f1
 
c6ec28b1
     int bits;
     int run_length;
3e01c9b5
     int pixels_read = x_pos;
115329f1
 
8bf7a510
     init_get_bits(&gb, *srcbuf, buf_size << 3);
115329f1
 
3e01c9b5
     destbuf += x_pos;
 
8bf7a510
     while (get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
c6ec28b1
         bits = get_bits(&gb, 4);
 
0dd954b1
         if (bits) {
c6ec28b1
             if (non_mod != 1 || bits != 1) {
0dd954b1
                 if (map_table)
c6ec28b1
                     *destbuf++ = map_table[bits];
                 else
                     *destbuf++ = bits;
             }
             pixels_read++;
         } else {
5fc32c27
             bits = get_bits1(&gb);
c6ec28b1
             if (bits == 0) {
                 run_length = get_bits(&gb, 3);
115329f1
 
c6ec28b1
                 if (run_length == 0) {
                     (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
                     return pixels_read;
                 }
115329f1
 
c6ec28b1
                 run_length += 2;
115329f1
 
0dd954b1
                 if (map_table)
c6ec28b1
                     bits = map_table[0];
                 else
                     bits = 0;
115329f1
 
c6ec28b1
                 while (run_length-- > 0 && pixels_read < dbuf_len) {
                     *destbuf++ = bits;
                     pixels_read++;
                 }
             } else {
5fc32c27
                 bits = get_bits1(&gb);
c6ec28b1
                 if (bits == 0) {
                     run_length = get_bits(&gb, 2) + 4;
                     bits = get_bits(&gb, 4);
 
                     if (non_mod == 1 && bits == 1)
                         pixels_read += run_length;
                     else {
0dd954b1
                         if (map_table)
c6ec28b1
                             bits = map_table[bits];
                         while (run_length-- > 0 && pixels_read < dbuf_len) {
                             *destbuf++ = bits;
                             pixels_read++;
                         }
                     }
                 } else {
                     bits = get_bits(&gb, 2);
                     if (bits == 2) {
                         run_length = get_bits(&gb, 4) + 9;
                         bits = get_bits(&gb, 4);
115329f1
 
c6ec28b1
                         if (non_mod == 1 && bits == 1)
                             pixels_read += run_length;
                         else {
0dd954b1
                             if (map_table)
c6ec28b1
                                 bits = map_table[bits];
                             while (run_length-- > 0 && pixels_read < dbuf_len) {
                                 *destbuf++ = bits;
                                 pixels_read++;
                             }
                         }
                     } else if (bits == 3) {
                         run_length = get_bits(&gb, 8) + 25;
                         bits = get_bits(&gb, 4);
 
                         if (non_mod == 1 && bits == 1)
                             pixels_read += run_length;
                         else {
0dd954b1
                             if (map_table)
c6ec28b1
                                 bits = map_table[bits];
                             while (run_length-- > 0 && pixels_read < dbuf_len) {
                                 *destbuf++ = bits;
                                 pixels_read++;
                             }
                         }
                     } else if (bits == 1) {
0dd954b1
                         if (map_table)
c6ec28b1
                             bits = map_table[0];
                         else
                             bits = 0;
eea064ae
                         run_length = 2;
                         while (run_length-- > 0 && pixels_read < dbuf_len) {
c6ec28b1
                             *destbuf++ = bits;
eea064ae
                             pixels_read++;
c6ec28b1
                         }
                     } else {
0dd954b1
                         if (map_table)
c6ec28b1
                             bits = map_table[0];
                         else
                             bits = 0;
                         *destbuf++ = bits;
                         pixels_read ++;
                     }
                 }
             }
         }
     }
115329f1
 
0dd954b1
     if (get_bits(&gb, 8))
ce800d46
         av_log(avctx, AV_LOG_ERROR, "line overflow\n");
115329f1
 
c6ec28b1
     (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
 
     return pixels_read;
 }
115329f1
 
4ba01419
 static int dvbsub_read_8bit_string(AVCodecContext *avctx,
                                    uint8_t *destbuf, int dbuf_len,
7993df65
                                     const uint8_t **srcbuf, int buf_size,
3e01c9b5
                                     int non_mod, uint8_t *map_table, int x_pos)
c6ec28b1
 {
7993df65
     const uint8_t *sbuf_end = (*srcbuf) + buf_size;
c6ec28b1
     int bits;
     int run_length;
3e01c9b5
     int pixels_read = x_pos;
 
     destbuf += x_pos;
115329f1
 
c6ec28b1
     while (*srcbuf < sbuf_end && pixels_read < dbuf_len) {
         bits = *(*srcbuf)++;
115329f1
 
0dd954b1
         if (bits) {
c6ec28b1
             if (non_mod != 1 || bits != 1) {
0dd954b1
                 if (map_table)
c6ec28b1
                     *destbuf++ = map_table[bits];
                 else
                     *destbuf++ = bits;
             }
             pixels_read++;
         } else {
             bits = *(*srcbuf)++;
             run_length = bits & 0x7f;
             if ((bits & 0x80) == 0) {
                 if (run_length == 0) {
                     return pixels_read;
                 }
115329f1
 
287eb699
                 bits = 0;
c6ec28b1
             } else {
                 bits = *(*srcbuf)++;
443502ae
             }
287eb699
             if (non_mod == 1 && bits == 1)
                 pixels_read += run_length;
             else {
0dd954b1
                 if (map_table)
287eb699
                     bits = map_table[bits];
c6ec28b1
                 while (run_length-- > 0 && pixels_read < dbuf_len) {
                     *destbuf++ = bits;
                     pixels_read++;
                 }
             }
         }
     }
115329f1
 
0dd954b1
     if (*(*srcbuf)++)
ce800d46
         av_log(avctx, AV_LOG_ERROR, "line overflow\n");
115329f1
 
c6ec28b1
     return pixels_read;
 }
115329f1
 
ee573b4d
 static void compute_default_clut(AVSubtitleRect *rect, int w, int h)
4b90dcb8
 {
     uint8_t list[256] = {0};
     uint8_t list_inv[256];
     int counttab[256] = {0};
     int count, i, x, y;
 
ee573b4d
 #define V(x,y) rect->data[0][(x) + (y)*rect->linesize[0]]
4b90dcb8
     for (y = 0; y<h; y++) {
         for (x = 0; x<w; x++) {
             int v = V(x,y) + 1;
             int vl = x     ? V(x-1,y) + 1 : 0;
             int vr = x+1<w ? V(x+1,y) + 1 : 0;
             int vt = y     ? V(x,y-1) + 1 : 0;
             int vb = y+1<h ? V(x,y+1) + 1 : 0;
             counttab[v-1] += !!((v!=vl) + (v!=vr) + (v!=vt) + (v!=vb));
         }
     }
ee573b4d
 #define L(x,y) list[ rect->data[0][(x) + (y)*rect->linesize[0]] ]
4b90dcb8
 
     for (i = 0; i<256; i++) {
         int scoretab[256] = {0};
         int bestscore = 0;
         int bestv = 0;
         for (y = 0; y<h; y++) {
             for (x = 0; x<w; x++) {
ee573b4d
                 int v = rect->data[0][x + y*rect->linesize[0]];
4b90dcb8
                 int l_m = list[v];
                 int l_l = x     ? L(x-1, y) : 1;
                 int l_r = x+1<w ? L(x+1, y) : 1;
                 int l_t = y     ? L(x, y-1) : 1;
                 int l_b = y+1<h ? L(x, y+1) : 1;
                 int score;
                 if (l_m)
                     continue;
                 scoretab[v] += l_l + l_r + l_t + l_b;
                 score = 1024LL*scoretab[v] / counttab[v];
                 if (score > bestscore) {
                     bestscore = score;
                     bestv = v;
                 }
             }
         }
         if (!bestscore)
             break;
         list    [ bestv ] = 1;
         list_inv[     i ] = bestv;
     }
 
c82b8ef0
     count = FFMAX(i - 1, 1);
4b90dcb8
     for (i--; i>=0; i--) {
         int v = i*255/count;
ee573b4d
         AV_WN32(rect->data[1] + 4*list_inv[i], RGBA(v/2,v,v/2,v));
4b90dcb8
     }
 }
 
 
6229f782
 static int save_subtitle_set(AVCodecContext *avctx, AVSubtitle *sub, int *got_output)
fbb59a3b
 {
     DVBSubContext *ctx = avctx->priv_data;
     DVBSubRegionDisplay *display;
     DVBSubDisplayDefinition *display_def = ctx->display_definition;
     DVBSubRegion *region;
     AVSubtitleRect *rect;
     DVBSubCLUT *clut;
     uint32_t *clut_table;
a4403e49
     int i;
fbb59a3b
     int offset_x=0, offset_y=0;
39dfe680
     int ret = 0;
fbb59a3b
 
 
     if (display_def) {
         offset_x = display_def->x;
         offset_y = display_def->y;
     }
 
ca2f59e1
     /* Not touching AVSubtitles again*/
     if(sub->num_rects) {
daf2c35f
         avpriv_request_sample(ctx, "Different Version of Segment asked Twice");
6229f782
         return AVERROR_PATCHWELCOME;
ca2f59e1
     }
fbb59a3b
     for (display = ctx->display_list; display; display = display->next) {
         region = get_region(ctx, display->region_id);
         if (region && region->dirty)
             sub->num_rects++;
     }
 
263932c0
     if(ctx->compute_edt == 0) {
         sub->end_display_time = ctx->time_out * 1000;
         *got_output = 1;
     } else if (ctx->prev_start != AV_NOPTS_VALUE) {
         sub->end_display_time = av_rescale_q((sub->pts - ctx->prev_start ), AV_TIME_BASE_Q, (AVRational){ 1, 1000 }) - 1;
         *got_output = 1;
     }
fbb59a3b
     if (sub->num_rects > 0) {
ca2f59e1
 
fbb59a3b
         sub->rects = av_mallocz_array(sizeof(*sub->rects), sub->num_rects);
39dfe680
         if (!sub->rects) {
             ret = AVERROR(ENOMEM);
             goto fail;
         }
4809ac75
 
fbb59a3b
         for(i=0; i<sub->num_rects; i++)
             sub->rects[i] = av_mallocz(sizeof(*sub->rects[i]));
 
         i = 0;
 
         for (display = ctx->display_list; display; display = display->next) {
             region = get_region(ctx, display->region_id);
 
             if (!region)
                 continue;
 
             if (!region->dirty)
                 continue;
 
             rect = sub->rects[i];
             rect->x = display->x_pos + offset_x;
             rect->y = display->y_pos + offset_y;
             rect->w = region->width;
             rect->h = region->height;
             rect->nb_colors = (1 << region->depth);
             rect->type      = SUBTITLE_BITMAP;
ee573b4d
             rect->linesize[0] = region->width;
fbb59a3b
 
             clut = get_clut(ctx, region->clut);
 
             if (!clut)
                 clut = &default_clut;
 
             switch (region->depth) {
             case 2:
                 clut_table = clut->clut4;
                 break;
             case 8:
                 clut_table = clut->clut256;
                 break;
             case 4:
             default:
                 clut_table = clut->clut16;
                 break;
             }
c6ec28b1
 
ee573b4d
             rect->data[1] = av_mallocz(AVPALETTE_SIZE);
             if (!rect->data[1]) {
39dfe680
                 ret = AVERROR(ENOMEM);
                 goto fail;
4809ac75
             }
ee573b4d
             memcpy(rect->data[1], clut_table, (1 << region->depth) * sizeof(uint32_t));
fbb59a3b
 
ee573b4d
             rect->data[0] = av_malloc(region->buf_size);
             if (!rect->data[0]) {
39dfe680
                 ret = AVERROR(ENOMEM);
                 goto fail;
4809ac75
             }
 
ee573b4d
             memcpy(rect->data[0], region->pbuf, region->buf_size);
fbb59a3b
 
d41dceb1
             if ((clut == &default_clut && ctx->compute_clut == -1) || ctx->compute_clut == 1)
ee573b4d
                 compute_default_clut(rect, rect->w, rect->h);
 
 #if FF_API_AVPICTURE
 FF_DISABLE_DEPRECATION_WARNINGS
a4403e49
 {
             int j;
ee573b4d
             for (j = 0; j < 4; j++) {
                 rect->pict.data[j] = rect->data[j];
                 rect->pict.linesize[j] = rect->linesize[j];
             }
a4403e49
 }
ee573b4d
 FF_ENABLE_DEPRECATION_WARNINGS
 #endif
4b90dcb8
 
fbb59a3b
             i++;
         }
     }
6229f782
 
     return 0;
39dfe680
 fail:
     if (sub->rects) {
         for(i=0; i<sub->num_rects; i++) {
             rect = sub->rects[i];
             if (rect) {
ee573b4d
                 av_freep(&rect->data[0]);
                 av_freep(&rect->data[1]);
39dfe680
             }
             av_freep(&sub->rects[i]);
         }
         av_freep(&sub->rects);
     }
     sub->num_rects = 0;
     return ret;
fbb59a3b
 }
c6ec28b1
 
 static void dvbsub_parse_pixel_data_block(AVCodecContext *avctx, DVBSubObjectDisplay *display,
7993df65
                                           const uint8_t *buf, int buf_size, int top_bottom, int non_mod)
c6ec28b1
 {
31740736
     DVBSubContext *ctx = avctx->priv_data;
c6ec28b1
 
     DVBSubRegion *region = get_region(ctx, display->region_id);
7993df65
     const uint8_t *buf_end = buf + buf_size;
c6ec28b1
     uint8_t *pbuf;
     int x_pos, y_pos;
     int i;
115329f1
 
c6ec28b1
     uint8_t map2to4[] = { 0x0,  0x7,  0x8,  0xf};
     uint8_t map2to8[] = {0x00, 0x77, 0x88, 0xff};
115329f1
     uint8_t map4to8[] = {0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
c6ec28b1
                          0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff};
     uint8_t *map_table;
115329f1
 
24fb1b64
 #if 0
6a85dfc8
     ff_dlog(avctx, "DVB pixel block size %d, %s field:\n", buf_size,
8b44de14
             top_bottom ? "bottom" : "top");
c6ec28b1
 
5b2052b3
     for (i = 0; i < buf_size; i++) {
c6ec28b1
         if (i % 16 == 0)
6a85dfc8
             ff_dlog(avctx, "0x%8p: ", buf+i);
c6ec28b1
 
6a85dfc8
         ff_dlog(avctx, "%02x ", buf[i]);
c6ec28b1
         if (i % 16 == 15)
6a85dfc8
             ff_dlog(avctx, "\n");
c6ec28b1
     }
115329f1
 
0dd954b1
     if (i % 16)
6a85dfc8
         ff_dlog(avctx, "\n");
24fb1b64
 #endif
c6ec28b1
 
0014541e
     if (!region)
c6ec28b1
         return;
115329f1
 
c6ec28b1
     pbuf = region->pbuf;
b522d2a3
     region->dirty = 1;
115329f1
 
c6ec28b1
     x_pos = display->x_pos;
     y_pos = display->y_pos;
115329f1
 
168a5d3b
     y_pos += top_bottom;
c6ec28b1
 
     while (buf < buf_end) {
7d2e4673
         if ((*buf!=0xf0 && x_pos >= region->width) || y_pos >= region->height) {
55f17d31
             av_log(avctx, AV_LOG_ERROR, "Invalid object location! %d-%d %d-%d %02x\n", x_pos, region->width, y_pos, region->height, *buf);
c6ec28b1
             return;
         }
115329f1
 
c6ec28b1
         switch (*buf++) {
         case 0x10:
             if (region->depth == 8)
                 map_table = map2to8;
             else if (region->depth == 4)
                 map_table = map2to4;
             else
                 map_table = NULL;
115329f1
 
4ba01419
             x_pos = dvbsub_read_2bit_string(avctx, pbuf + (y_pos * region->width),
3e01c9b5
                                             region->width, &buf, buf_end - buf,
                                             non_mod, map_table, x_pos);
c6ec28b1
             break;
         case 0x11:
             if (region->depth < 4) {
                 av_log(avctx, AV_LOG_ERROR, "4-bit pixel string in %d-bit region!\n", region->depth);
                 return;
             }
115329f1
 
c6ec28b1
             if (region->depth == 8)
                 map_table = map4to8;
             else
                 map_table = NULL;
115329f1
 
4ba01419
             x_pos = dvbsub_read_4bit_string(avctx, pbuf + (y_pos * region->width),
3e01c9b5
                                             region->width, &buf, buf_end - buf,
                                             non_mod, map_table, x_pos);
c6ec28b1
             break;
         case 0x12:
             if (region->depth < 8) {
                 av_log(avctx, AV_LOG_ERROR, "8-bit pixel string in %d-bit region!\n", region->depth);
                 return;
             }
115329f1
 
4ba01419
             x_pos = dvbsub_read_8bit_string(avctx, pbuf + (y_pos * region->width),
3e01c9b5
                                             region->width, &buf, buf_end - buf,
                                             non_mod, NULL, x_pos);
c6ec28b1
             break;
115329f1
 
c6ec28b1
         case 0x20:
             map2to4[0] = (*buf) >> 4;
             map2to4[1] = (*buf++) & 0xf;
             map2to4[2] = (*buf) >> 4;
             map2to4[3] = (*buf++) & 0xf;
             break;
         case 0x21:
             for (i = 0; i < 4; i++)
                 map2to8[i] = *buf++;
             break;
         case 0x22:
             for (i = 0; i < 16; i++)
                 map4to8[i] = *buf++;
             break;
115329f1
 
c6ec28b1
         case 0xf0:
             x_pos = display->x_pos;
             y_pos += 2;
             break;
         default:
             av_log(avctx, AV_LOG_INFO, "Unknown/unsupported pixel block 0x%x\n", *(buf-1));
         }
     }
115329f1
 
c6ec28b1
 }
 
607ad990
 static int dvbsub_parse_object_segment(AVCodecContext *avctx,
                                        const uint8_t *buf, int buf_size)
c6ec28b1
 {
31740736
     DVBSubContext *ctx = avctx->priv_data;
115329f1
 
7993df65
     const uint8_t *buf_end = buf + buf_size;
c6ec28b1
     int object_id;
     DVBSubObject *object;
     DVBSubObjectDisplay *display;
     int top_field_len, bottom_field_len;
115329f1
 
cedb83a6
     int coding_method, non_modifying_color;
115329f1
 
fead30d4
     object_id = AV_RB16(buf);
c6ec28b1
     buf += 2;
115329f1
 
c6ec28b1
     object = get_object(ctx, object_id);
 
115329f1
     if (!object)
607ad990
         return AVERROR_INVALIDDATA;
115329f1
 
c6ec28b1
     coding_method = ((*buf) >> 2) & 3;
cedb83a6
     non_modifying_color = ((*buf++) >> 1) & 1;
115329f1
 
c6ec28b1
     if (coding_method == 0) {
fead30d4
         top_field_len = AV_RB16(buf);
c6ec28b1
         buf += 2;
fead30d4
         bottom_field_len = AV_RB16(buf);
c6ec28b1
         buf += 2;
115329f1
 
c6ec28b1
         if (buf + top_field_len + bottom_field_len > buf_end) {
d21ab8e4
             av_log(avctx, AV_LOG_ERROR, "Field data size %d+%d too large\n", top_field_len, bottom_field_len);
607ad990
             return AVERROR_INVALIDDATA;
115329f1
         }
 
0dd954b1
         for (display = object->display_list; display; display = display->object_list_next) {
7e0f4f9d
             const uint8_t *block = buf;
             int bfl = bottom_field_len;
c6ec28b1
 
             dvbsub_parse_pixel_data_block(avctx, display, block, top_field_len, 0,
cedb83a6
                                             non_modifying_color);
c6ec28b1
 
             if (bottom_field_len > 0)
                 block = buf + top_field_len;
             else
7e0f4f9d
                 bfl = top_field_len;
c6ec28b1
 
7e0f4f9d
             dvbsub_parse_pixel_data_block(avctx, display, block, bfl, 1,
cedb83a6
                                             non_modifying_color);
c6ec28b1
         }
115329f1
 
c6ec28b1
 /*  } else if (coding_method == 1) {*/
115329f1
 
c6ec28b1
     } else {
         av_log(avctx, AV_LOG_ERROR, "Unknown object coding %d\n", coding_method);
     }
115329f1
 
607ad990
     return 0;
c6ec28b1
 }
 
29f244e0
 static int dvbsub_parse_clut_segment(AVCodecContext *avctx,
607ad990
                                      const uint8_t *buf, int buf_size)
c6ec28b1
 {
31740736
     DVBSubContext *ctx = avctx->priv_data;
115329f1
 
7993df65
     const uint8_t *buf_end = buf + buf_size;
02a8d43a
     int i, clut_id;
0f8d7719
     int version;
c6ec28b1
     DVBSubCLUT *clut;
     int entry_id, depth , full_range;
     int y, cr, cb, alpha;
     int r, g, b, r_add, g_add, b_add;
 
6a85dfc8
     ff_dlog(avctx, "DVB clut packet:\n");
c6ec28b1
 
5b2052b3
     for (i=0; i < buf_size; i++) {
6a85dfc8
         ff_dlog(avctx, "%02x ", buf[i]);
c6ec28b1
         if (i % 16 == 15)
6a85dfc8
             ff_dlog(avctx, "\n");
c6ec28b1
     }
115329f1
 
0dd954b1
     if (i % 16)
6a85dfc8
         ff_dlog(avctx, "\n");
c6ec28b1
 
     clut_id = *buf++;
0f8d7719
     version = ((*buf)>>4)&15;
c6ec28b1
     buf += 1;
115329f1
 
c6ec28b1
     clut = get_clut(ctx, clut_id);
115329f1
 
e59d9328
     if (!clut) {
c6ec28b1
         clut = av_malloc(sizeof(DVBSubCLUT));
ebe3a41e
         if (!clut)
             return AVERROR(ENOMEM);
115329f1
 
c6ec28b1
         memcpy(clut, &default_clut, sizeof(DVBSubCLUT));
 
         clut->id = clut_id;
0f8d7719
         clut->version = -1;
115329f1
 
         clut->next = ctx->clut_list;
c6ec28b1
         ctx->clut_list = clut;
     }
115329f1
 
0f8d7719
     if (clut->version != version) {
 
     clut->version = version;
 
5b2052b3
     while (buf + 4 < buf_end) {
c6ec28b1
         entry_id = *buf++;
115329f1
 
c6ec28b1
         depth = (*buf) & 0xe0;
115329f1
 
c6ec28b1
         if (depth == 0) {
             av_log(avctx, AV_LOG_ERROR, "Invalid clut depth 0x%x!\n", *buf);
         }
115329f1
 
c6ec28b1
         full_range = (*buf++) & 1;
115329f1
 
c6ec28b1
         if (full_range) {
             y = *buf++;
             cr = *buf++;
             cb = *buf++;
             alpha = *buf++;
         } else {
             y = buf[0] & 0xfc;
             cr = (((buf[0] & 3) << 2) | ((buf[1] >> 6) & 3)) << 4;
             cb = (buf[1] << 2) & 0xf0;
             alpha = (buf[1] << 6) & 0xc0;
115329f1
 
c6ec28b1
             buf += 2;
         }
115329f1
 
c6ec28b1
         if (y == 0)
             alpha = 0xff;
115329f1
 
c6ec28b1
         YUV_TO_RGB1_CCIR(cb, cr);
         YUV_TO_RGB2_CCIR(r, g, b, y);
115329f1
 
6a85dfc8
         ff_dlog(avctx, "clut %d := (%d,%d,%d,%d)\n", entry_id, r, g, b, alpha);
29f244e0
         if (!!(depth & 0x80) + !!(depth & 0x40) + !!(depth & 0x20) > 1) {
8f7b022c
             ff_dlog(avctx, "More than one bit level marked: %x\n", depth);
29f244e0
             if (avctx->strict_std_compliance > FF_COMPLIANCE_NORMAL)
                 return AVERROR_INVALIDDATA;
         }
115329f1
 
8a69f260
         if (depth & 0x80 && entry_id < 4)
c6ec28b1
             clut->clut4[entry_id] = RGBA(r,g,b,255 - alpha);
8a69f260
         else if (depth & 0x40 && entry_id < 16)
c6ec28b1
             clut->clut16[entry_id] = RGBA(r,g,b,255 - alpha);
97ff584a
         else if (depth & 0x20)
c6ec28b1
             clut->clut256[entry_id] = RGBA(r,g,b,255 - alpha);
     }
0f8d7719
     }
607ad990
 
29f244e0
     return 0;
c6ec28b1
 }
 
 
1bf747ae
 static int dvbsub_parse_region_segment(AVCodecContext *avctx,
607ad990
                                        const uint8_t *buf, int buf_size)
c6ec28b1
 {
31740736
     DVBSubContext *ctx = avctx->priv_data;
115329f1
 
7993df65
     const uint8_t *buf_end = buf + buf_size;
c6ec28b1
     int region_id, object_id;
90f9b063
     int av_unused version;
c6ec28b1
     DVBSubRegion *region;
     DVBSubObject *object;
     DVBSubObjectDisplay *display;
     int fill;
0075d9ec
     int ret;
115329f1
 
c6ec28b1
     if (buf_size < 10)
1bf747ae
         return AVERROR_INVALIDDATA;
115329f1
 
c6ec28b1
     region_id = *buf++;
115329f1
 
c6ec28b1
     region = get_region(ctx, region_id);
115329f1
 
e59d9328
     if (!region) {
c6ec28b1
         region = av_mallocz(sizeof(DVBSubRegion));
ebe3a41e
         if (!region)
1bf747ae
             return AVERROR(ENOMEM);
115329f1
 
c6ec28b1
         region->id = region_id;
0f8d7719
         region->version = -1;
115329f1
 
c6ec28b1
         region->next = ctx->region_list;
         ctx->region_list = region;
     }
115329f1
 
0f8d7719
     version = ((*buf)>>4) & 15;
c6ec28b1
     fill = ((*buf++) >> 3) & 1;
115329f1
 
fead30d4
     region->width = AV_RB16(buf);
c6ec28b1
     buf += 2;
fead30d4
     region->height = AV_RB16(buf);
c6ec28b1
     buf += 2;
115329f1
 
4bcde261
     ret = av_image_check_size2(region->width, region->height, avctx->max_pixels, AV_PIX_FMT_PAL8, 0, avctx);
e1b0044c
     if (ret >= 0 && region->width * region->height * 2 > 320 * 1024 * 8) {
         ret = AVERROR_INVALIDDATA;
         av_log(avctx, AV_LOG_ERROR, "Pixel buffer memory constraint violated\n");
     }
0075d9ec
     if (ret < 0) {
         region->width= region->height= 0;
         return ret;
     }
 
c6ec28b1
     if (region->width * region->height != region->buf_size) {
e31a7441
         av_free(region->pbuf);
115329f1
 
c6ec28b1
         region->buf_size = region->width * region->height;
115329f1
 
c6ec28b1
         region->pbuf = av_malloc(region->buf_size);
9f0b898e
         if (!region->pbuf) {
             region->buf_size =
             region->width =
             region->height = 0;
607ad990
             return AVERROR(ENOMEM);
9f0b898e
         }
115329f1
 
c6ec28b1
         fill = 1;
b522d2a3
         region->dirty = 0;
c6ec28b1
     }
115329f1
 
c6ec28b1
     region->depth = 1 << (((*buf++) >> 2) & 7);
2867ed9b
     if(region->depth<2 || region->depth>8){
         av_log(avctx, AV_LOG_ERROR, "region depth %d is invalid\n", region->depth);
         region->depth= 4;
     }
c6ec28b1
     region->clut = *buf++;
115329f1
 
f12c7ad8
     if (region->depth == 8) {
cedb83a6
         region->bgcolor = *buf++;
f12c7ad8
         buf += 1;
     } else {
c6ec28b1
         buf += 1;
115329f1
 
c6ec28b1
         if (region->depth == 4)
cedb83a6
             region->bgcolor = (((*buf++) >> 4) & 15);
c6ec28b1
         else
cedb83a6
             region->bgcolor = (((*buf++) >> 2) & 3);
c6ec28b1
     }
 
6a85dfc8
     ff_dlog(avctx, "Region %d, (%dx%d)\n", region_id, region->width, region->height);
c6ec28b1
 
     if (fill) {
cedb83a6
         memset(region->pbuf, region->bgcolor, region->buf_size);
6a85dfc8
         ff_dlog(avctx, "Fill region (%d)\n", region->bgcolor);
c6ec28b1
     }
 
     delete_region_display_list(ctx, region);
 
     while (buf + 5 < buf_end) {
fead30d4
         object_id = AV_RB16(buf);
c6ec28b1
         buf += 2;
115329f1
 
c6ec28b1
         object = get_object(ctx, object_id);
 
e59d9328
         if (!object) {
c6ec28b1
             object = av_mallocz(sizeof(DVBSubObject));
607ad990
             if (!object)
                 return AVERROR(ENOMEM);
115329f1
 
c6ec28b1
             object->id = object_id;
             object->next = ctx->object_list;
             ctx->object_list = object;
         }
115329f1
 
c6ec28b1
         object->type = (*buf) >> 6;
115329f1
 
c6ec28b1
         display = av_mallocz(sizeof(DVBSubObjectDisplay));
607ad990
         if (!display)
             return AVERROR(ENOMEM);
115329f1
 
c6ec28b1
         display->object_id = object_id;
         display->region_id = region_id;
115329f1
 
fead30d4
         display->x_pos = AV_RB16(buf) & 0xfff;
c6ec28b1
         buf += 2;
fead30d4
         display->y_pos = AV_RB16(buf) & 0xfff;
c6ec28b1
         buf += 2;
115329f1
 
51d29541
         if (display->x_pos >= region->width ||
             display->y_pos >= region->height) {
             av_log(avctx, AV_LOG_ERROR, "Object outside region\n");
             av_free(display);
             return AVERROR_INVALIDDATA;
         }
 
c6ec28b1
         if ((object->type == 1 || object->type == 2) && buf+1 < buf_end) {
cedb83a6
             display->fgcolor = *buf++;
             display->bgcolor = *buf++;
c6ec28b1
         }
115329f1
 
c6ec28b1
         display->region_list_next = region->display_list;
         region->display_list = display;
115329f1
 
c6ec28b1
         display->object_list_next = object->display_list;
         object->display_list = display;
     }
1bf747ae
 
     return 0;
c6ec28b1
 }
 
1bf747ae
 static int dvbsub_parse_page_segment(AVCodecContext *avctx,
c5b6b711
                                      const uint8_t *buf, int buf_size, AVSubtitle *sub, int *got_output)
c6ec28b1
 {
31740736
     DVBSubContext *ctx = avctx->priv_data;
c6ec28b1
     DVBSubRegionDisplay *display;
     DVBSubRegionDisplay *tmp_display_list, **tmp_ptr;
115329f1
 
7993df65
     const uint8_t *buf_end = buf + buf_size;
c6ec28b1
     int region_id;
     int page_state;
0f8d7719
     int timeout;
     int version;
115329f1
 
c6ec28b1
     if (buf_size < 1)
1bf747ae
         return AVERROR_INVALIDDATA;
115329f1
 
0f8d7719
     timeout = *buf++;
     version = ((*buf)>>4) & 15;
c6ec28b1
     page_state = ((*buf++) >> 2) & 3;
115329f1
 
9a11b33a
     if (ctx->version == version) {
1bf747ae
         return 0;
9a11b33a
     }
0f8d7719
 
     ctx->time_out = timeout;
     ctx->version = version;
 
6a85dfc8
     ff_dlog(avctx, "Page time out %ds, state %d\n", ctx->time_out, page_state);
c6ec28b1
 
ca2f59e1
     if(ctx->compute_edt == 1)
         save_subtitle_set(avctx, sub, got_output);
 
1fc7b0ed
     if (page_state == 1 || page_state == 2) {
e822c237
         delete_regions(ctx);
         delete_objects(ctx);
         delete_cluts(ctx);
c6ec28b1
     }
115329f1
 
c6ec28b1
     tmp_display_list = ctx->display_list;
     ctx->display_list = NULL;
115329f1
 
c6ec28b1
     while (buf + 5 < buf_end) {
         region_id = *buf++;
         buf += 1;
115329f1
 
7c10068d
         display = ctx->display_list;
         while (display && display->region_id != region_id) {
             display = display->next;
         }
         if (display) {
             av_log(avctx, AV_LOG_ERROR, "duplicate region\n");
             break;
         }
 
c6ec28b1
         display = tmp_display_list;
         tmp_ptr = &tmp_display_list;
115329f1
 
0dd954b1
         while (display && display->region_id != region_id) {
c6ec28b1
             tmp_ptr = &display->next;
             display = display->next;
         }
115329f1
 
607ad990
         if (!display) {
c6ec28b1
             display = av_mallocz(sizeof(DVBSubRegionDisplay));
607ad990
             if (!display)
                 return AVERROR(ENOMEM);
         }
115329f1
 
c6ec28b1
         display->region_id = region_id;
115329f1
 
fead30d4
         display->x_pos = AV_RB16(buf);
c6ec28b1
         buf += 2;
fead30d4
         display->y_pos = AV_RB16(buf);
c6ec28b1
         buf += 2;
115329f1
 
c6ec28b1
         *tmp_ptr = display->next;
115329f1
 
c6ec28b1
         display->next = ctx->display_list;
         ctx->display_list = display;
115329f1
 
6a85dfc8
         ff_dlog(avctx, "Region %d, (%d,%d)\n", region_id, display->x_pos, display->y_pos);
c6ec28b1
     }
115329f1
 
0dd954b1
     while (tmp_display_list) {
c6ec28b1
         display = tmp_display_list;
115329f1
 
c6ec28b1
         tmp_display_list = display->next;
115329f1
 
adfc3b81
         av_freep(&display);
c6ec28b1
     }
115329f1
 
1bf747ae
     return 0;
c6ec28b1
 }
 
 
1f6b9cc3
 #ifdef DEBUG
b02027c7
 static void png_save(DVBSubContext *ctx, const char *filename, uint32_t *bitmap, int w, int h)
b34c6cd5
 {
     int x, y, v;
     FILE *f;
     char fname[40], fname2[40];
     char command[1024];
 
     snprintf(fname, sizeof(fname), "%s.ppm", filename);
 
     f = fopen(fname, "w");
     if (!f) {
         perror(fname);
         return;
     }
     fprintf(f, "P6\n"
             "%d %d\n"
             "%d\n",
             w, h, 255);
     for(y = 0; y < h; y++) {
         for(x = 0; x < w; x++) {
             v = bitmap[y * w + x];
             putc((v >> 16) & 0xff, f);
             putc((v >> 8) & 0xff, f);
             putc((v >> 0) & 0xff, f);
         }
     }
     fclose(f);
 
 
     snprintf(fname2, sizeof(fname2), "%s-a.pgm", filename);
 
     f = fopen(fname2, "w");
     if (!f) {
         perror(fname2);
         return;
     }
     fprintf(f, "P5\n"
             "%d %d\n"
             "%d\n",
             w, h, 255);
     for(y = 0; y < h; y++) {
         for(x = 0; x < w; x++) {
             v = bitmap[y * w + x];
             putc((v >> 24) & 0xff, f);
         }
     }
     fclose(f);
 
     snprintf(command, sizeof(command), "pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename);
     if (system(command) != 0) {
b02027c7
         av_log(ctx, AV_LOG_ERROR, "Error running pnmtopng\n");
b34c6cd5
         return;
     }
 
     snprintf(command, sizeof(command), "rm %s %s", fname, fname2);
     if (system(command) != 0) {
b02027c7
         av_log(ctx, AV_LOG_ERROR, "Error removing %s and %s\n", fname, fname2);
b34c6cd5
         return;
     }
 }
 
1da2a207
 static int save_display_set(DVBSubContext *ctx)
c6ec28b1
 {
     DVBSubRegion *region;
     DVBSubRegionDisplay *display;
     DVBSubCLUT *clut;
     uint32_t *clut_table;
     int x_pos, y_pos, width, height;
     int x, y, y_off, x_off;
     uint32_t *pbuf;
     char filename[32];
     static int fileno_index = 0;
 
     x_pos = -1;
     y_pos = -1;
     width = 0;
     height = 0;
115329f1
 
0dd954b1
     for (display = ctx->display_list; display; display = display->next) {
c6ec28b1
         region = get_region(ctx, display->region_id);
115329f1
 
8de0990e
         if (!region)
fbd71bba
             return -1;
8de0990e
 
c6ec28b1
         if (x_pos == -1) {
             x_pos = display->x_pos;
             y_pos = display->y_pos;
             width = region->width;
             height = region->height;
         } else {
             if (display->x_pos < x_pos) {
                 width += (x_pos - display->x_pos);
                 x_pos = display->x_pos;
             }
115329f1
 
c6ec28b1
             if (display->y_pos < y_pos) {
                 height += (y_pos - display->y_pos);
                 y_pos = display->y_pos;
             }
115329f1
 
c6ec28b1
             if (display->x_pos + region->width > x_pos + width) {
                 width = display->x_pos + region->width - x_pos;
             }
115329f1
 
c6ec28b1
             if (display->y_pos + region->height > y_pos + height) {
                 height = display->y_pos + region->height - y_pos;
             }
         }
     }
115329f1
 
c6ec28b1
     if (x_pos >= 0) {
115329f1
 
c6ec28b1
         pbuf = av_malloc(width * height * 4);
607ad990
         if (!pbuf)
fbd71bba
             return -1;
c6ec28b1
 
0dd954b1
         for (display = ctx->display_list; display; display = display->next) {
c6ec28b1
             region = get_region(ctx, display->region_id);
 
8de0990e
             if (!region)
fbd71bba
                 return -1;
8de0990e
 
c6ec28b1
             x_off = display->x_pos - x_pos;
             y_off = display->y_pos - y_pos;
 
             clut = get_clut(ctx, region->clut);
 
0014541e
             if (!clut)
c6ec28b1
                 clut = &default_clut;
 
             switch (region->depth) {
             case 2:
                 clut_table = clut->clut4;
                 break;
             case 8:
                 clut_table = clut->clut256;
                 break;
             case 4:
             default:
                 clut_table = clut->clut16;
                 break;
             }
115329f1
 
c6ec28b1
             for (y = 0; y < region->height; y++) {
                 for (x = 0; x < region->width; x++) {
115329f1
                     pbuf[((y + y_off) * width) + x_off + x] =
c6ec28b1
                         clut_table[region->pbuf[y * region->width + x]];
                 }
             }
 
115329f1
         }
c6ec28b1
 
e1c48b7a
         snprintf(filename, sizeof(filename), "dvbs.%d", fileno_index);
c6ec28b1
 
b02027c7
         png_save(ctx, filename, pbuf, width, height);
c6ec28b1
 
adfc3b81
         av_freep(&pbuf);
c6ec28b1
     }
115329f1
 
c6ec28b1
     fileno_index++;
1da2a207
     return 0;
c6ec28b1
 }
b34c6cd5
 #endif /* DEBUG */
c6ec28b1
 
1bf747ae
 static int dvbsub_parse_display_definition_segment(AVCodecContext *avctx,
607ad990
                                                    const uint8_t *buf,
                                                    int buf_size)
08943c0b
 {
     DVBSubContext *ctx = avctx->priv_data;
     DVBSubDisplayDefinition *display_def = ctx->display_definition;
     int dds_version, info_byte;
 
     if (buf_size < 5)
1bf747ae
         return AVERROR_INVALIDDATA;
08943c0b
 
     info_byte   = bytestream_get_byte(&buf);
     dds_version = info_byte >> 4;
     if (display_def && display_def->version == dds_version)
1bf747ae
         return 0; // already have this display definition version
08943c0b
 
     if (!display_def) {
         display_def             = av_mallocz(sizeof(*display_def));
607ad990
         if (!display_def)
             return AVERROR(ENOMEM);
08943c0b
         ctx->display_definition = display_def;
     }
 
     display_def->version = dds_version;
     display_def->x       = 0;
     display_def->y       = 0;
     display_def->width   = bytestream_get_be16(&buf) + 1;
     display_def->height  = bytestream_get_be16(&buf) + 1;
fe79fc2e
     if (!avctx->width || !avctx->height) {
         avctx->width  = display_def->width;
         avctx->height = display_def->height;
     }
08943c0b
 
     if (info_byte & 1<<3) { // display_window_flag
debf4d6e
         if (buf_size < 13)
             return AVERROR_INVALIDDATA;
 
08943c0b
         display_def->x = bytestream_get_be16(&buf);
         display_def->width  = bytestream_get_be16(&buf) - display_def->x + 1;
0f02ea0a
         display_def->y = bytestream_get_be16(&buf);
08943c0b
         display_def->height = bytestream_get_be16(&buf) - display_def->y + 1;
     }
1bf747ae
 
     return 0;
08943c0b
 }
 
7993df65
 static int dvbsub_display_end_segment(AVCodecContext *avctx, const uint8_t *buf,
c5b6b711
                                       int buf_size, AVSubtitle *sub,int *got_output)
c6ec28b1
 {
31740736
     DVBSubContext *ctx = avctx->priv_data;
c6ec28b1
 
ca2f59e1
     if(ctx->compute_edt == 0)
         save_subtitle_set(avctx, sub, got_output);
1f6b9cc3
 #ifdef DEBUG
c6ec28b1
     save_display_set(ctx);
 #endif
c5b6b711
     return 0;
c6ec28b1
 }
 
 static int dvbsub_decode(AVCodecContext *avctx,
                          void *data, int *data_size,
7a00bbad
                          AVPacket *avpkt)
c6ec28b1
 {
7a00bbad
     const uint8_t *buf = avpkt->data;
     int buf_size = avpkt->size;
31740736
     DVBSubContext *ctx = avctx->priv_data;
     AVSubtitle *sub = data;
7993df65
     const uint8_t *p, *p_end;
c6ec28b1
     int segment_type;
     int page_id;
     int segment_length;
     int i;
ca2f59e1
     int ret = 0;
7df9937f
     int got_segment = 0;
1fc20af6
     int got_dds = 0;
c6ec28b1
 
6a85dfc8
     ff_dlog(avctx, "DVB sub packet:\n");
c6ec28b1
 
5b2052b3
     for (i=0; i < buf_size; i++) {
6a85dfc8
         ff_dlog(avctx, "%02x ", buf[i]);
c6ec28b1
         if (i % 16 == 15)
6a85dfc8
             ff_dlog(avctx, "\n");
c6ec28b1
     }
115329f1
 
0dd954b1
     if (i % 16)
6a85dfc8
         ff_dlog(avctx, "\n");
c6ec28b1
 
1a089285
     if (buf_size <= 6 || *buf != 0x0f) {
6a85dfc8
         ff_dlog(avctx, "incomplete or broken packet");
607ad990
         return AVERROR_INVALIDDATA;
1a089285
     }
115329f1
 
c6ec28b1
     p = buf;
     p_end = buf + buf_size;
115329f1
 
1a089285
     while (p_end - p >= 6 && *p == 0x0f) {
c6ec28b1
         p += 1;
         segment_type = *p++;
fead30d4
         page_id = AV_RB16(p);
c6ec28b1
         p += 2;
fead30d4
         segment_length = AV_RB16(p);
c6ec28b1
         p += 2;
115329f1
 
8f4b176c
         if (avctx->debug & FF_DEBUG_STARTCODE) {
             av_log(avctx, AV_LOG_DEBUG, "segment_type:%d page_id:%d segment_length:%d\n", segment_type, page_id, segment_length);
         }
 
1a089285
         if (p_end - p < segment_length) {
6a85dfc8
             ff_dlog(avctx, "incomplete or broken packet");
ca2f59e1
             ret = -1;
             goto end;
1a089285
         }
 
b834becd
         if (page_id == ctx->composition_id || page_id == ctx->ancillary_id ||
             ctx->composition_id == -1 || ctx->ancillary_id == -1) {
607ad990
             int ret = 0;
c6ec28b1
             switch (segment_type) {
             case DVBSUB_PAGE_SEGMENT:
c5b6b711
                 ret = dvbsub_parse_page_segment(avctx, p, segment_length, sub, data_size);
7df9937f
                 got_segment |= 1;
c6ec28b1
                 break;
             case DVBSUB_REGION_SEGMENT:
607ad990
                 ret = dvbsub_parse_region_segment(avctx, p, segment_length);
7df9937f
                 got_segment |= 2;
c6ec28b1
                 break;
             case DVBSUB_CLUT_SEGMENT:
29f244e0
                 ret = dvbsub_parse_clut_segment(avctx, p, segment_length);
ca2f59e1
                 if (ret < 0) goto end;
7df9937f
                 got_segment |= 4;
c6ec28b1
                 break;
             case DVBSUB_OBJECT_SEGMENT:
607ad990
                 ret = dvbsub_parse_object_segment(avctx, p, segment_length);
7df9937f
                 got_segment |= 8;
c6ec28b1
                 break;
08943c0b
             case DVBSUB_DISPLAYDEFINITION_SEGMENT:
607ad990
                 ret = dvbsub_parse_display_definition_segment(avctx, p,
                                                               segment_length);
1fc20af6
                 got_dds = 1;
8b973d49
                 break;
c6ec28b1
             case DVBSUB_DISPLAY_SEGMENT:
c5b6b711
                 ret = dvbsub_display_end_segment(avctx, p, segment_length, sub, data_size);
1fc20af6
                 if (got_segment == 15 && !got_dds && !avctx->width && !avctx->height) {
                     // Default from ETSI EN 300 743 V1.3.1 (7.2.1)
                     avctx->width  = 720;
                     avctx->height = 576;
                 }
7df9937f
                 got_segment |= 16;
c6ec28b1
                 break;
             default:
6a85dfc8
                 ff_dlog(avctx, "Subtitling segment type 0x%x, page id %d, length %d\n",
c6ec28b1
                         segment_type, page_id, segment_length);
                 break;
             }
607ad990
             if (ret < 0)
c5b6b711
                 goto end;
c6ec28b1
         }
 
         p += segment_length;
     }
7df9937f
     // Some streams do not send a display segment but if we have all the other
     // segments then we need no further data.
7d1898eb
     if (got_segment == 15) {
8f4b176c
         av_log(avctx, AV_LOG_DEBUG, "Missing display_end_segment, emulating\n");
ca2f59e1
         dvbsub_display_end_segment(avctx, p, 0, sub, data_size);
     }
 
 end:
     if(ret < 0) {
         *data_size = 0;
         avsubtitle_free(sub);
         return ret;
     } else {
         if(ctx->compute_edt == 1 )
             FFSWAP(int64_t, ctx->prev_start, sub->pts);
8f4b176c
     }
115329f1
 
20708223
     return p - buf;
c6ec28b1
 }
 
a2dbf379
 #define DS AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_SUBTITLE_PARAM
77ade55f
 static const AVOption options[] = {
fb99ef0b
     {"compute_edt", "compute end of time using pts or timeout", offsetof(DVBSubContext, compute_edt), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, DS},
     {"compute_clut", "compute clut when not available(-1) or always(1) or never(0)", offsetof(DVBSubContext, compute_clut), AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, DS},
6471040f
     {"dvb_substream", "", offsetof(DVBSubContext, substream), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 63, DS},
77ade55f
     {NULL}
 };
 static const AVClass dvbsubdec_class = {
     .class_name = "DVB Sub Decoder",
     .item_name  = av_default_item_name,
     .option     = options,
     .version    = LIBAVUTIL_VERSION_INT,
 };
c6ec28b1
 
e7e2df27
 AVCodec ff_dvbsub_decoder = {
ec6402b7
     .name           = "dvbsub",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("DVB subtitles"),
ec6402b7
     .type           = AVMEDIA_TYPE_SUBTITLE,
36ef5369
     .id             = AV_CODEC_ID_DVB_SUBTITLE,
ec6402b7
     .priv_data_size = sizeof(DVBSubContext),
     .init           = dvbsub_init_decoder,
     .close          = dvbsub_close_decoder,
     .decode         = dvbsub_decode,
77ade55f
     .priv_class     = &dvbsubdec_class,
c6ec28b1
 };