FFmpeg
pgssubdec.c
Go to the documentation of this file.
1 /*
2  * PGS subtitle decoder
3  * Copyright (c) 2009 Stephen Backway
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * PGS subtitle decoder
25  */
26 
27 #include "avcodec.h"
28 #include "bytestream.h"
29 #include "codec_internal.h"
30 #include "decode.h"
31 #include "mathops.h"
32 
33 #include "libavutil/colorspace.h"
34 #include "libavutil/mem.h"
35 #include "libavutil/opt.h"
36 
37 #define RGBA(r,g,b,a) (((unsigned)(a) << 24) | ((r) << 16) | ((g) << 8) | (b))
38 #define MAX_EPOCH_PALETTES 8 // Max 8 allowed per PGS epoch
39 #define MAX_EPOCH_OBJECTS 64 // Max 64 allowed per PGS epoch
40 #define MAX_OBJECT_REFS 2 // Max objects per display set
41 
48 };
49 
50 typedef struct PGSSubObjectRef {
51  int id;
52  int window_id;
54  int x;
55  int y;
56  int crop_x;
57  int crop_y;
58  int crop_w;
59  int crop_h;
61 
62 typedef struct PGSSubPresentation {
63  int id_number;
67  int64_t pts;
69 
70 typedef struct PGSSubObject {
71  int id;
72  int w;
73  int h;
74  uint8_t *rle;
76  unsigned int rle_remaining_len;
77 } PGSSubObject;
78 
79 typedef struct PGSSubObjects {
80  int count;
83 
84 typedef struct PGSSubPalette {
85  int id;
86  uint32_t clut[256];
88 
89 typedef struct PGSSubPalettes {
90  int count;
93 
94 typedef struct PGSSubContext {
95  AVClass *class;
100 } PGSSubContext;
101 
102 static void flush_cache(AVCodecContext *avctx)
103 {
104  PGSSubContext *ctx = avctx->priv_data;
105  int i;
106 
107  for (i = 0; i < ctx->objects.count; i++) {
108  av_freep(&ctx->objects.object[i].rle);
109  ctx->objects.object[i].rle_buffer_size = 0;
110  ctx->objects.object[i].rle_remaining_len = 0;
111  }
112  ctx->objects.count = 0;
113  ctx->palettes.count = 0;
114 }
115 
116 static PGSSubObject * find_object(int id, PGSSubObjects *objects)
117 {
118  int i;
119 
120  for (i = 0; i < objects->count; i++) {
121  if (objects->object[i].id == id)
122  return &objects->object[i];
123  }
124  return NULL;
125 }
126 
127 static PGSSubPalette * find_palette(int id, PGSSubPalettes *palettes)
128 {
129  int i;
130 
131  for (i = 0; i < palettes->count; i++) {
132  if (palettes->palette[i].id == id)
133  return &palettes->palette[i];
134  }
135  return NULL;
136 }
137 
139 {
140  avctx->pix_fmt = AV_PIX_FMT_PAL8;
141 
142  return 0;
143 }
144 
146 {
147  flush_cache(avctx);
148 
149  return 0;
150 }
151 
152 /**
153  * Decode the RLE data.
154  *
155  * The subtitle is stored as a Run Length Encoded image.
156  *
157  * @param avctx contains the current codec context
158  * @param sub pointer to the processed subtitle data
159  * @param buf pointer to the RLE data to process
160  * @param buf_size size of the RLE data to process
161  */
163  const uint8_t *buf, unsigned int buf_size)
164 {
165  const uint8_t *rle_bitmap_end;
166  int pixel_count, line_count;
167 
168  rle_bitmap_end = buf + buf_size;
169 
170  rect->data[0] = av_malloc_array(rect->w, rect->h);
171 
172  if (!rect->data[0])
173  return AVERROR(ENOMEM);
174 
175  pixel_count = 0;
176  line_count = 0;
177 
178  while (buf < rle_bitmap_end && line_count < rect->h) {
179  uint8_t flags, color;
180  int run;
181 
182  color = bytestream_get_byte(&buf);
183  run = 1;
184 
185  if (color == 0x00) {
186  flags = bytestream_get_byte(&buf);
187  run = flags & 0x3f;
188  if (flags & 0x40)
189  run = (run << 8) + bytestream_get_byte(&buf);
190  color = flags & 0x80 ? bytestream_get_byte(&buf) : 0;
191  }
192 
193  if (run > 0 && pixel_count + run <= rect->w * rect->h) {
194  memset(rect->data[0] + pixel_count, color, run);
195  pixel_count += run;
196  } else if (!run) {
197  /*
198  * New Line. Check if correct pixels decoded, if not display warning
199  * and adjust bitmap pointer to correct new line position.
200  */
201  if (pixel_count % rect->w > 0) {
202  av_log(avctx, AV_LOG_ERROR, "Decoded %d pixels, when line should be %d pixels\n",
203  pixel_count % rect->w, rect->w);
204  if (avctx->err_recognition & AV_EF_EXPLODE) {
205  return AVERROR_INVALIDDATA;
206  }
207  }
208  line_count++;
209  }
210  }
211 
212  if (pixel_count < rect->w * rect->h) {
213  av_log(avctx, AV_LOG_ERROR, "Insufficient RLE data for subtitle\n");
214  return AVERROR_INVALIDDATA;
215  }
216 
217  ff_dlog(avctx, "Pixel Count = %d, Area = %d\n", pixel_count, rect->w * rect->h);
218 
219  return 0;
220 }
221 
222 /**
223  * Parse the picture segment packet.
224  *
225  * The picture segment contains details on the sequence id,
226  * width, height and Run Length Encoded (RLE) bitmap data.
227  *
228  * @param avctx contains the current codec context
229  * @param buf pointer to the packet to process
230  * @param buf_size size of packet to process
231  */
233  const uint8_t *buf, int buf_size)
234 {
235  PGSSubContext *ctx = avctx->priv_data;
236  PGSSubObject *object;
237 
238  uint8_t sequence_desc;
239  unsigned int rle_bitmap_len, width, height;
240  int id;
241 
242  if (buf_size <= 4)
243  return AVERROR_INVALIDDATA;
244  buf_size -= 4;
245 
246  id = bytestream_get_be16(&buf);
247  object = find_object(id, &ctx->objects);
248  if (!object) {
249  if (ctx->objects.count >= MAX_EPOCH_OBJECTS) {
250  av_log(avctx, AV_LOG_ERROR, "Too many objects in epoch\n");
251  return AVERROR_INVALIDDATA;
252  }
253  object = &ctx->objects.object[ctx->objects.count++];
254  object->id = id;
255  }
256 
257  /* skip object version number */
258  buf += 1;
259 
260  /* Read the Sequence Description to determine if start of RLE data or appended to previous RLE */
261  sequence_desc = bytestream_get_byte(&buf);
262 
263  if (!(sequence_desc & 0x80)) {
264  /* Additional RLE data */
265  if (buf_size > object->rle_remaining_len)
266  return AVERROR_INVALIDDATA;
267 
268  memcpy(object->rle + object->rle_data_len, buf, buf_size);
269  object->rle_data_len += buf_size;
270  object->rle_remaining_len -= buf_size;
271 
272  return 0;
273  }
274 
275  if (buf_size <= 7)
276  return AVERROR_INVALIDDATA;
277  buf_size -= 7;
278 
279  /* Decode rle bitmap length, stored size includes width/height data */
280  rle_bitmap_len = bytestream_get_be24(&buf) - 2*2;
281 
282  if (buf_size > rle_bitmap_len) {
283  av_log(avctx, AV_LOG_ERROR,
284  "Buffer dimension %d larger than the expected RLE data %d\n",
285  buf_size, rle_bitmap_len);
286  return AVERROR_INVALIDDATA;
287  }
288 
289  /* Get bitmap dimensions from data */
290  width = bytestream_get_be16(&buf);
291  height = bytestream_get_be16(&buf);
292 
293  /* Make sure the bitmap is not too large */
294  if (avctx->width < width || avctx->height < height || !width || !height) {
295  av_log(avctx, AV_LOG_ERROR, "Bitmap dimensions (%dx%d) invalid.\n", width, height);
296  return AVERROR_INVALIDDATA;
297  }
298 
299  object->w = width;
300  object->h = height;
301 
302  av_fast_padded_malloc(&object->rle, &object->rle_buffer_size, rle_bitmap_len);
303 
304  if (!object->rle) {
305  object->rle_data_len = 0;
306  object->rle_remaining_len = 0;
307  return AVERROR(ENOMEM);
308  }
309 
310  memcpy(object->rle, buf, buf_size);
311  object->rle_data_len = buf_size;
312  object->rle_remaining_len = rle_bitmap_len - buf_size;
313 
314  return 0;
315 }
316 
317 /**
318  * Parse the palette segment packet.
319  *
320  * The palette segment contains details of the palette,
321  * a maximum of 256 colors can be defined.
322  *
323  * @param avctx contains the current codec context
324  * @param buf pointer to the packet to process
325  * @param buf_size size of packet to process
326  */
328  const uint8_t *buf, int buf_size)
329 {
330  PGSSubContext *ctx = avctx->priv_data;
331  PGSSubPalette *palette;
332 
333  const uint8_t *buf_end = buf + buf_size;
334  const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP;
335  int color_id;
336  int y, cb, cr, alpha;
337  int r, g, b, r_add, g_add, b_add;
338  int id;
339 
340  id = bytestream_get_byte(&buf);
341  palette = find_palette(id, &ctx->palettes);
342  if (!palette) {
343  if (ctx->palettes.count >= MAX_EPOCH_PALETTES) {
344  av_log(avctx, AV_LOG_ERROR, "Too many palettes in epoch\n");
345  return AVERROR_INVALIDDATA;
346  }
347  palette = &ctx->palettes.palette[ctx->palettes.count++];
348  palette->id = id;
349  }
350 
351  /* Skip palette version */
352  buf += 1;
353 
354  while (buf < buf_end) {
355  color_id = bytestream_get_byte(&buf);
356  y = bytestream_get_byte(&buf);
357  cr = bytestream_get_byte(&buf);
358  cb = bytestream_get_byte(&buf);
359  alpha = bytestream_get_byte(&buf);
360 
361  /* Default to BT.709 colorspace. In case of <= 576 height use BT.601 */
362  if (avctx->height <= 0 || avctx->height > 576) {
364  } else {
366  }
367 
368  YUV_TO_RGB2_CCIR(r, g, b, y);
369 
370  ff_dlog(avctx, "Color %d := (%d,%d,%d,%d)\n", color_id, r, g, b, alpha);
371 
372  /* Store color in palette */
373  palette->clut[color_id] = RGBA(r,g,b,alpha);
374  }
375  return 0;
376 }
377 
378 /**
379  * Parse the presentation segment packet.
380  *
381  * The presentation segment contains details on the video
382  * width, video height, x & y subtitle position.
383  *
384  * @param avctx contains the current codec context
385  * @param buf pointer to the packet to process
386  * @param buf_size size of packet to process
387  * @todo TODO: Implement cropping
388  */
390  const uint8_t *buf, int buf_size,
391  int64_t pts)
392 {
393  PGSSubContext *ctx = avctx->priv_data;
394  int i, state, ret;
395  const uint8_t *buf_end = buf + buf_size;
396 
397  // Video descriptor
398  int w = bytestream_get_be16(&buf);
399  int h = bytestream_get_be16(&buf);
400 
401  ctx->presentation.pts = pts;
402 
403  ff_dlog(avctx, "Video Dimensions %dx%d\n",
404  w, h);
405  ret = ff_set_dimensions(avctx, w, h);
406  if (ret < 0)
407  return ret;
408 
409  /* Skip 1 bytes of unknown, frame rate */
410  buf++;
411 
412  // Composition descriptor
413  ctx->presentation.id_number = bytestream_get_be16(&buf);
414  /*
415  * state is a 2 bit field that defines pgs epoch boundaries
416  * 00 - Normal, previously defined objects and palettes are still valid
417  * 01 - Acquisition point, previous objects and palettes can be released
418  * 10 - Epoch start, previous objects and palettes can be released
419  * 11 - Epoch continue, previous objects and palettes can be released
420  *
421  * reserved 6 bits discarded
422  */
423  state = bytestream_get_byte(&buf) >> 6;
424  if (state != 0) {
425  flush_cache(avctx);
426  }
427 
428  /*
429  * skip palette_update_flag (0x80),
430  */
431  buf += 1;
432  ctx->presentation.palette_id = bytestream_get_byte(&buf);
433  ctx->presentation.object_count = bytestream_get_byte(&buf);
434  if (ctx->presentation.object_count > MAX_OBJECT_REFS) {
435  av_log(avctx, AV_LOG_ERROR,
436  "Invalid number of presentation objects %d\n",
437  ctx->presentation.object_count);
438  ctx->presentation.object_count = 2;
439  if (avctx->err_recognition & AV_EF_EXPLODE) {
440  return AVERROR_INVALIDDATA;
441  }
442  }
443 
444 
445  for (i = 0; i < ctx->presentation.object_count; i++)
446  {
447  PGSSubObjectRef *const object = &ctx->presentation.objects[i];
448 
449  if (buf_end - buf < 8) {
450  av_log(avctx, AV_LOG_ERROR, "Insufficent space for object\n");
451  ctx->presentation.object_count = i;
452  return AVERROR_INVALIDDATA;
453  }
454 
455  object->id = bytestream_get_be16(&buf);
456  object->window_id = bytestream_get_byte(&buf);
457  object->composition_flag = bytestream_get_byte(&buf);
458 
459  object->x = bytestream_get_be16(&buf);
460  object->y = bytestream_get_be16(&buf);
461 
462  // If cropping
463  if (object->composition_flag & 0x80) {
464  object->crop_x = bytestream_get_be16(&buf);
465  object->crop_y = bytestream_get_be16(&buf);
466  object->crop_w = bytestream_get_be16(&buf);
467  object->crop_h = bytestream_get_be16(&buf);
468  }
469 
470  ff_dlog(avctx, "Subtitle Placement x=%d, y=%d\n",
471  object->x, object->y);
472 
473  if (object->x > avctx->width || object->y > avctx->height) {
474  av_log(avctx, AV_LOG_ERROR, "Subtitle out of video bounds. x = %d, y = %d, video width = %d, video height = %d.\n",
475  object->x, object->y,
476  avctx->width, avctx->height);
477  object->y = object->x = 0;
478  if (avctx->err_recognition & AV_EF_EXPLODE) {
479  return AVERROR_INVALIDDATA;
480  }
481  }
482  }
483 
484  return 0;
485 }
486 
487 /**
488  * Parse the display segment packet.
489  *
490  * The display segment controls the updating of the display.
491  *
492  * @param avctx contains the current codec context
493  * @param data pointer to the data pertaining the subtitle to display
494  * @param buf pointer to the packet to process
495  * @param buf_size size of packet to process
496  */
498  const uint8_t *buf, int buf_size)
499 {
500  PGSSubContext *ctx = avctx->priv_data;
501  int64_t pts;
502  PGSSubPalette *palette;
503  int i, ret;
504 
505  pts = ctx->presentation.pts != AV_NOPTS_VALUE ? ctx->presentation.pts : sub->pts;
506  memset(sub, 0, sizeof(*sub));
507  sub->pts = pts;
508  ctx->presentation.pts = AV_NOPTS_VALUE;
509  sub->start_display_time = 0;
510  // There is no explicit end time for PGS subtitles. The end time
511  // is defined by the start of the next sub which may contain no
512  // objects (i.e. clears the previous sub)
513  sub->end_display_time = UINT32_MAX;
514  sub->format = 0;
515 
516  // Blank if last object_count was 0.
517  if (!ctx->presentation.object_count)
518  return 1;
519  sub->rects = av_calloc(ctx->presentation.object_count, sizeof(*sub->rects));
520  if (!sub->rects) {
521  return AVERROR(ENOMEM);
522  }
523  palette = find_palette(ctx->presentation.palette_id, &ctx->palettes);
524  if (!palette) {
525  // Missing palette. Should only happen with damaged streams.
526  av_log(avctx, AV_LOG_ERROR, "Invalid palette id %d\n",
527  ctx->presentation.palette_id);
528  avsubtitle_free(sub);
529  return AVERROR_INVALIDDATA;
530  }
531  for (i = 0; i < ctx->presentation.object_count; i++) {
532  AVSubtitleRect *const rect = av_mallocz(sizeof(*rect));
533  PGSSubObject *object;
534 
535  if (!rect)
536  return AVERROR(ENOMEM);
537  sub->rects[sub->num_rects++] = rect;
538  rect->type = SUBTITLE_BITMAP;
539 
540  /* Process bitmap */
541  object = find_object(ctx->presentation.objects[i].id, &ctx->objects);
542  if (!object) {
543  // Missing object. Should only happen with damaged streams.
544  av_log(avctx, AV_LOG_ERROR, "Invalid object id %d\n",
545  ctx->presentation.objects[i].id);
546  if (avctx->err_recognition & AV_EF_EXPLODE)
547  return AVERROR_INVALIDDATA;
548  // Leaves rect empty with 0 width and height.
549  continue;
550  }
551  if (ctx->presentation.objects[i].composition_flag & 0x40)
552  rect->flags |= AV_SUBTITLE_FLAG_FORCED;
553 
554  rect->x = ctx->presentation.objects[i].x;
555  rect->y = ctx->presentation.objects[i].y;
556 
557  if (object->rle) {
558  rect->w = object->w;
559  rect->h = object->h;
560 
561  rect->linesize[0] = object->w;
562 
563  if (object->rle_remaining_len) {
564  av_log(avctx, AV_LOG_ERROR, "RLE data length %u is %u bytes shorter than expected\n",
565  object->rle_data_len, object->rle_remaining_len);
566  if (avctx->err_recognition & AV_EF_EXPLODE)
567  return AVERROR_INVALIDDATA;
568  }
569  ret = decode_rle(avctx, rect, object->rle, object->rle_data_len);
570  if (ret < 0) {
571  if ((avctx->err_recognition & AV_EF_EXPLODE) ||
572  ret == AVERROR(ENOMEM)) {
573  return ret;
574  }
575  rect->w = 0;
576  rect->h = 0;
577  continue;
578  }
579  }
580  /* Allocate memory for colors */
581  rect->nb_colors = 256;
582  rect->data[1] = av_mallocz(AVPALETTE_SIZE);
583  if (!rect->data[1])
584  return AVERROR(ENOMEM);
585 
586  if (!ctx->forced_subs_only || ctx->presentation.objects[i].composition_flag & 0x40)
587  memcpy(rect->data[1], palette->clut, rect->nb_colors * sizeof(uint32_t));
588  }
589  return 1;
590 }
591 
592 static int decode(AVCodecContext *avctx, AVSubtitle *sub,
593  int *got_sub_ptr, const AVPacket *avpkt)
594 {
595  const uint8_t *buf = avpkt->data;
596  int buf_size = avpkt->size;
597 
598  const uint8_t *buf_end;
599  uint8_t segment_type;
600  int segment_length;
601  int i, ret;
602 
603  ff_dlog(avctx, "PGS sub packet:\n");
604 
605  for (i = 0; i < buf_size; i++) {
606  ff_dlog(avctx, "%02x ", buf[i]);
607  if (i % 16 == 15)
608  ff_dlog(avctx, "\n");
609  }
610 
611  if (i & 15)
612  ff_dlog(avctx, "\n");
613 
614  *got_sub_ptr = 0;
615 
616  /* Ensure that we have received at a least a segment code and segment length */
617  if (buf_size < 3)
618  return -1;
619 
620  buf_end = buf + buf_size;
621 
622  /* Step through buffer to identify segments */
623  while (buf < buf_end) {
624  segment_type = bytestream_get_byte(&buf);
625  segment_length = bytestream_get_be16(&buf);
626 
627  ff_dlog(avctx, "Segment Length %d, Segment Type %x\n", segment_length, segment_type);
628 
629  if (segment_type != DISPLAY_SEGMENT && segment_length > buf_end - buf)
630  break;
631 
632  ret = 0;
633  switch (segment_type) {
634  case PALETTE_SEGMENT:
635  ret = parse_palette_segment(avctx, buf, segment_length);
636  break;
637  case OBJECT_SEGMENT:
638  ret = parse_object_segment(avctx, buf, segment_length);
639  break;
641  ret = parse_presentation_segment(avctx, buf, segment_length, sub->pts);
642  break;
643  case WINDOW_SEGMENT:
644  /*
645  * Window Segment Structure (No new information provided):
646  * 2 bytes: Unknown,
647  * 2 bytes: X position of subtitle,
648  * 2 bytes: Y position of subtitle,
649  * 2 bytes: Width of subtitle,
650  * 2 bytes: Height of subtitle.
651  */
652  break;
653  case DISPLAY_SEGMENT:
654  if (*got_sub_ptr) {
655  av_log(avctx, AV_LOG_ERROR, "Duplicate display segment\n");
657  break;
658  }
659  ret = display_end_segment(avctx, sub, buf, segment_length);
660  if (ret >= 0)
661  *got_sub_ptr = ret;
662  break;
663  default:
664  av_log(avctx, AV_LOG_ERROR, "Unknown subtitle segment type 0x%x, length %d\n",
665  segment_type, segment_length);
667  break;
668  }
669  if (ret < 0 && (ret == AVERROR(ENOMEM) ||
670  avctx->err_recognition & AV_EF_EXPLODE))
671  return ret;
672 
673  buf += segment_length;
674  }
675 
676  return buf_size;
677 }
678 
679 #define OFFSET(x) offsetof(PGSSubContext, x)
680 #define SD AV_OPT_FLAG_SUBTITLE_PARAM | AV_OPT_FLAG_DECODING_PARAM
681 static const AVOption options[] = {
682  {"forced_subs_only", "Only show forced subtitles", OFFSET(forced_subs_only), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, SD},
683  { NULL },
684 };
685 
686 static const AVClass pgsdec_class = {
687  .class_name = "PGS subtitle decoder",
688  .item_name = av_default_item_name,
689  .option = options,
690  .version = LIBAVUTIL_VERSION_INT,
691 };
692 
694  .p.name = "pgssub",
695  CODEC_LONG_NAME("HDMV Presentation Graphic Stream subtitles"),
696  .p.type = AVMEDIA_TYPE_SUBTITLE,
698  .priv_data_size = sizeof(PGSSubContext),
699  .init = init_decoder,
700  .close = close_decoder,
702  .p.priv_class = &pgsdec_class,
703 };
AVSubtitle
Definition: avcodec.h:2227
rect::w
int w
Definition: f_ebur128.c:77
AVMEDIA_TYPE_SUBTITLE
@ AVMEDIA_TYPE_SUBTITLE
Definition: avutil.h:204
PGSSubObjectRef
Definition: pgssubdec.c:50
AV_EF_EXPLODE
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: defs.h:51
r
const char * r
Definition: vf_curves.c:127
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
AVSubtitle::rects
AVSubtitleRect ** rects
Definition: avcodec.h:2232
opt.h
color
Definition: vf_paletteuse.c:512
cb
static double cb(void *priv, double x, double y)
Definition: vf_geq.c:242
init_decoder
static av_cold int init_decoder(AVCodecContext *avctx)
Definition: pgssubdec.c:138
rect
Definition: f_ebur128.c:77
AVCodecContext::err_recognition
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:1420
PGSSubObjects
Definition: pgssubdec.c:79
AVSubtitleRect
Definition: avcodec.h:2200
AVSubtitle::num_rects
unsigned num_rects
Definition: avcodec.h:2231
PGSSubObject
Definition: pgssubdec.c:70
rect::y
int y
Definition: f_ebur128.c:77
PGSSubObjectRef::y
int y
Definition: pgssubdec.c:55
w
uint8_t w
Definition: llviddspenc.c:38
AVPacket::data
uint8_t * data
Definition: packet.h:524
AVOption
AVOption.
Definition: opt.h:346
b
#define b
Definition: input.c:41
PGSSubContext::objects
PGSSubObjects objects
Definition: pgssubdec.c:98
options
static const AVOption options[]
Definition: pgssubdec.c:681
PALETTE_SEGMENT
@ PALETTE_SEGMENT
Definition: pgssubdec.c:43
FFCodec
Definition: codec_internal.h:126
YUV_TO_RGB1_CCIR
#define YUV_TO_RGB1_CCIR(cb1, cr1)
Definition: colorspace.h:34
AV_CODEC_ID_HDMV_PGS_SUBTITLE
@ AV_CODEC_ID_HDMV_PGS_SUBTITLE
Definition: codec_id.h:556
ff_set_dimensions
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Check that the provided frame dimensions are valid and set them on the codec context.
Definition: utils.c:94
parse_presentation_segment
static int parse_presentation_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size, int64_t pts)
Parse the presentation segment packet.
Definition: pgssubdec.c:389
ff_crop_tab
#define ff_crop_tab
Definition: motionpixels_tablegen.c:26
PGSSubObjectRef::crop_h
int crop_h
Definition: pgssubdec.c:59
find_object
static PGSSubObject * find_object(int id, PGSSubObjects *objects)
Definition: pgssubdec.c:116
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:130
PGSSubPalette
Definition: pgssubdec.c:84
pts
static int64_t pts
Definition: transcode_aac.c:644
avsubtitle_free
void avsubtitle_free(AVSubtitle *sub)
Free all allocated data in the given subtitle struct.
Definition: avcodec.c:393
colorspace.h
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
av_cold
#define av_cold
Definition: attributes.h:90
parse_object_segment
static int parse_object_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
Parse the picture segment packet.
Definition: pgssubdec.c:232
PGSSubPalettes::palette
PGSSubPalette palette[MAX_EPOCH_PALETTES]
Definition: pgssubdec.c:91
YUV_TO_RGB1_CCIR_BT709
#define YUV_TO_RGB1_CCIR_BT709(cb1, cr1)
Definition: colorspace.h:44
width
#define width
PGSSubPalettes
Definition: pgssubdec.c:89
g
const char * g
Definition: vf_curves.c:128
OFFSET
#define OFFSET(x)
Definition: pgssubdec.c:679
ctx
AVFormatContext * ctx
Definition: movenc.c:49
decode.h
PGSSubPresentation::id_number
int id_number
Definition: pgssubdec.c:63
AVSubtitle::pts
int64_t pts
Same as packet pts, in AV_TIME_BASE.
Definition: avcodec.h:2233
PGSSubObjects::object
PGSSubObject object[MAX_EPOCH_OBJECTS]
Definition: pgssubdec.c:81
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:271
PGSSubObjects::count
int count
Definition: pgssubdec.c:80
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
display_end_segment
static int display_end_segment(AVCodecContext *avctx, AVSubtitle *sub, const uint8_t *buf, int buf_size)
Parse the display segment packet.
Definition: pgssubdec.c:497
NULL
#define NULL
Definition: coverity.c:32
run
uint8_t run
Definition: svq3.c:204
PGSSubObjectRef::composition_flag
uint8_t composition_flag
Definition: pgssubdec.c:53
PRESENTATION_SEGMENT
@ PRESENTATION_SEGMENT
Definition: pgssubdec.c:45
AVPALETTE_SIZE
#define AVPALETTE_SIZE
Definition: pixfmt.h:32
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
mathops.h
MAX_OBJECT_REFS
#define MAX_OBJECT_REFS
Definition: pgssubdec.c:40
DISPLAY_SEGMENT
@ DISPLAY_SEGMENT
Definition: pgssubdec.c:47
YUV_TO_RGB2_CCIR
#define YUV_TO_RGB2_CCIR(r, g, b, y1)
Definition: colorspace.h:55
decode
static int decode(AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, const AVPacket *avpkt)
Definition: pgssubdec.c:592
ff_dlog
#define ff_dlog(a,...)
Definition: tableprint_vlc.h:28
PGSSubObject::rle
uint8_t * rle
Definition: pgssubdec.c:74
find_palette
static PGSSubPalette * find_palette(int id, PGSSubPalettes *palettes)
Definition: pgssubdec.c:127
PGSSubContext::presentation
PGSSubPresentation presentation
Definition: pgssubdec.c:96
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:366
AVPacket::size
int size
Definition: packet.h:525
codec_internal.h
color
static const uint32_t color[16+AV_CLASS_CATEGORY_NB]
Definition: log.c:94
PGSSubPresentation::palette_id
int palette_id
Definition: pgssubdec.c:64
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
rect::h
int h
Definition: f_ebur128.c:77
PGSSubObjectRef::crop_w
int crop_w
Definition: pgssubdec.c:58
AVSubtitle::end_display_time
uint32_t end_display_time
Definition: avcodec.h:2230
SegmentType
SegmentType
Definition: pgssubdec.c:42
height
#define height
PGSSubPalette::clut
uint32_t clut[256]
Definition: pgssubdec.c:86
rect::x
int x
Definition: f_ebur128.c:77
AV_SUBTITLE_FLAG_FORCED
#define AV_SUBTITLE_FLAG_FORCED
Definition: avcodec.h:2198
SUBTITLE_BITMAP
@ SUBTITLE_BITMAP
A bitmap, pict will be set.
Definition: avcodec.h:2183
PGSSubPresentation
Definition: pgssubdec.c:62
PGSSubPresentation::object_count
int object_count
Definition: pgssubdec.c:65
PGSSubContext::forced_subs_only
int forced_subs_only
Definition: pgssubdec.c:99
MAX_EPOCH_PALETTES
#define MAX_EPOCH_PALETTES
Definition: pgssubdec.c:38
PGSSubObject::rle_remaining_len
unsigned int rle_remaining_len
Definition: pgssubdec.c:76
AVSubtitle::format
uint16_t format
Definition: avcodec.h:2228
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
PGSSubObject::rle_data_len
unsigned int rle_data_len
Definition: pgssubdec.c:75
PGSSubPresentation::objects
PGSSubObjectRef objects[MAX_OBJECT_REFS]
Definition: pgssubdec.c:66
ff_pgssub_decoder
const FFCodec ff_pgssub_decoder
Definition: pgssubdec.c:693
PGSSubPalette::id
int id
Definition: pgssubdec.c:85
av_malloc_array
#define av_malloc_array(a, b)
Definition: tableprint_vlc.h:31
WINDOW_SEGMENT
@ WINDOW_SEGMENT
Definition: pgssubdec.c:46
PGSSubPresentation::pts
int64_t pts
Definition: pgssubdec.c:67
av_fast_padded_malloc
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_malloc but the buffer has additional AV_INPUT_BUFFER_PADDING_SIZE at the end w...
Definition: utils.c:52
decode_rle
static int decode_rle(AVCodecContext *avctx, AVSubtitleRect *rect, const uint8_t *buf, unsigned int buf_size)
Decode the RLE data.
Definition: pgssubdec.c:162
MAX_EPOCH_OBJECTS
#define MAX_EPOCH_OBJECTS
Definition: pgssubdec.c:39
av_mallocz
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:256
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:194
PGSSubObjectRef::id
int id
Definition: pgssubdec.c:51
AVCodecContext::height
int height
Definition: avcodec.h:618
AVCodecContext::pix_fmt
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:657
av_calloc
void * av_calloc(size_t nmemb, size_t size)
Definition: mem.c:264
avcodec.h
AV_PIX_FMT_PAL8
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
Definition: pixfmt.h:84
ret
ret
Definition: filter_design.txt:187
SD
#define SD
Definition: pgssubdec.c:680
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:71
id
enum AVCodecID id
Definition: dts2pts.c:365
state
static struct @399 state
AVCodecContext
main external API structure.
Definition: avcodec.h:445
PGSSubObject::h
int h
Definition: pgssubdec.c:73
PGSSubObject::w
int w
Definition: pgssubdec.c:72
PGSSubContext
Definition: pgssubdec.c:94
PGSSubObjectRef::window_id
int window_id
Definition: pgssubdec.c:52
PGSSubObjectRef::x
int x
Definition: pgssubdec.c:54
close_decoder
static av_cold int close_decoder(AVCodecContext *avctx)
Definition: pgssubdec.c:145
cm
#define cm
Definition: dvbsubdec.c:40
parse_palette_segment
static int parse_palette_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
Parse the palette segment packet.
Definition: pgssubdec.c:327
FF_CODEC_DECODE_SUB_CB
#define FF_CODEC_DECODE_SUB_CB(func)
Definition: codec_internal.h:289
mem.h
RGBA
#define RGBA(r, g, b, a)
Definition: pgssubdec.c:37
alpha
static const int16_t alpha[]
Definition: ilbcdata.h:55
AVPacket
This structure stores compressed data.
Definition: packet.h:501
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:472
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Definition: opt.h:251
cr
static double cr(void *priv, double x, double y)
Definition: vf_geq.c:243
OBJECT_SEGMENT
@ OBJECT_SEGMENT
Definition: pgssubdec.c:44
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:34
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:618
bytestream.h
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:474
PGSSubObject::id
int id
Definition: pgssubdec.c:71
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
PGSSubObjectRef::crop_y
int crop_y
Definition: pgssubdec.c:57
PGSSubContext::palettes
PGSSubPalettes palettes
Definition: pgssubdec.c:97
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
h
h
Definition: vp9dsp_template.c:2038
MAX_NEG_CROP
#define MAX_NEG_CROP
Definition: mathops.h:31
flush_cache
static void flush_cache(AVCodecContext *avctx)
Definition: pgssubdec.c:102
PGSSubPalettes::count
int count
Definition: pgssubdec.c:90
AVSubtitle::start_display_time
uint32_t start_display_time
Definition: avcodec.h:2229
pgsdec_class
static const AVClass pgsdec_class
Definition: pgssubdec.c:686
PGSSubObject::rle_buffer_size
unsigned int rle_buffer_size
Definition: pgssubdec.c:75
PGSSubObjectRef::crop_x
int crop_x
Definition: pgssubdec.c:56