Go to the documentation of this file.
32 uint32_t global_palette[16];
38 #define PUTNIBBLE(val)\
41 *q++ = bitbuf | ((val) & 0x0f);\
47 const uint8_t *bitmap,
int linesize,
52 unsigned int bitbuf = 0;
58 for (y = 0; y <
h; ++y) {
60 for(x = 0; x <
w; x +=
len) {
69 }
else if (
len < 0x10) {
72 }
else if (
len < 0x40) {
76 }
else if (x+
len ==
w) {
102 int alpha_a = 8, alpha_b = 8;
104 for (
i = 24;
i >= 0;
i -= 8) {
105 d = alpha_a * (
int)((
a >>
i) & 0xFF) -
106 alpha_b * (
int)((
b >>
i) & 0xFF);
122 unsigned count[256] = { 0 };
123 uint32_t *palette = (uint32_t *)
r->data[1];
125 int x, y,
i, j, match,
d, best_d,
av_uninit(best_j);
126 uint8_t *p =
r->data[0];
128 for (y = 0; y <
r->h; y++) {
129 for (x = 0; x <
r->w; x++)
131 p +=
r->linesize[0] -
r->w;
133 for (
i = 0;
i < 256;
i++) {
138 match =
color < 0x33000000 ? 0 :
color < 0xCC000000 ? 1 : 17;
141 for (j = 0; j < 16; j++) {
151 hits[match] += count[
i];
156 int out_alpha[4],
unsigned hits[33])
159 int i, j, bright,
mult;
161 int selected[4] = { 0 };
162 uint32_t pseudopal[33] = { 0 };
163 uint32_t refcolor[3] = { 0x00000000, 0xFFFFFFFF, 0xFF000000 };
169 for (
i = 0;
i < 16;
i++) {
170 if (!(hits[1 +
i] + hits[17 +
i]))
174 for (j = 0; j < 3; j++, color >>= 8)
175 bright += (
color & 0xFF) < 0x40 || (
color & 0xFF) >= 0xC0;
177 hits[ 1 +
i] *=
mult;
178 hits[17 +
i] *=
mult;
182 for (
i = 0;
i < 4;
i++) {
183 for (j = 0; j < 33; j++)
184 if (hits[j] > hits[selected[
i]])
186 hits[selected[
i]] = 0;
191 for (
i = 0;
i < 16;
i++) {
195 for (
i = 0;
i < 3;
i++) {
197 for (j =
i + 1; j < 4; j++) {
200 FFSWAP(
int, selected[
i], selected[j]);
207 for (
i = 0;
i < 4;
i++) {
208 out_palette[
i] = selected[
i] ? (selected[
i] - 1) & 0xF : 0;
209 out_alpha [
i] = !selected[
i] ? 0 : selected[
i] < 17 ? 0x80 : 0xFF;
214 const uint32_t palette[],
215 const int out_palette[],
unsigned int const out_alpha[])
219 uint32_t pseudopal[4];
221 for (
i = 0;
i < 4;
i++)
222 pseudopal[
i] = (out_alpha[
i] << 24) |
224 for (
i = 0;
i < 256;
i++) {
226 for (j = 0; j < 4; j++) {
242 q = dst->
data[0] + (
src->x - dst->
x) +
244 for (y = 0; y <
src->h; y++) {
245 for (x = 0; x <
src->w; x++)
246 *(q++) = cmap[*(p++)];
247 p +=
src->linesize[0] -
src->w;
253 uint8_t *outbuf,
int outbuf_size,
258 int offset1, offset2;
259 int i, rects =
h->num_rects,
ret;
260 unsigned global_palette_hits[33] = { 0 };
265 uint8_t *vrect_data =
NULL;
269 if (rects == 0 || !
h->rects)
271 for (
i = 0;
i < rects;
i++)
277 for (
i = 0;
i < rects;
i++)
283 vrect = *
h->rects[0];
290 int xmin =
h->rects[0]->x, xmax = xmin +
h->rects[0]->w;
291 int ymin =
h->rects[0]->y, ymax = ymin +
h->rects[0]->h;
292 for (
i = 1;
i < rects;
i++) {
293 xmin =
FFMIN(xmin,
h->rects[
i]->x);
294 ymin =
FFMIN(ymin,
h->rects[
i]->y);
295 xmax =
FFMAX(xmax,
h->rects[
i]->x +
h->rects[
i]->w);
296 ymax =
FFMAX(ymax,
h->rects[
i]->y +
h->rects[
i]->h);
300 vrect.
w = xmax - xmin;
301 vrect.
h = ymax - ymin;
306 global_palette_hits[0] = vrect.
w * vrect.
h;
307 for (
i = 0;
i < rects;
i++)
308 global_palette_hits[0] -=
h->rects[
i]->w *
h->rects[
i]->h;
311 for (
i = 0;
i < rects;
i++)
313 select_palette(avctx, out_palette, out_alpha, global_palette_hits);
318 vrect.
data [0] = vrect_data;
320 for (
i = 0;
i < rects;
i++) {
322 out_palette, out_alpha);
325 for (
i = 0;
i < 4;
i++)
329 out_palette, out_alpha);
333 for (
i = 0;
i < 4;
i++)
336 out_palette[
i], out_alpha[
i] >> 4);
341 offset1 = q - outbuf;
343 if ((q - outbuf) + vrect.
w * vrect.
h / 2 + 17 + 21 > outbuf_size) {
349 vrect.
w, (vrect.
h + 1) >> 1, cmap);
350 offset2 = q - outbuf;
352 vrect.
w, vrect.
h >> 1, cmap);
363 bytestream_put_be16(&qq, q - outbuf);
366 bytestream_put_be16(&q, (
h->start_display_time*90) >> 10);
367 bytestream_put_be16(&q, (q - outbuf) + 8 + 12 + 2);
369 *q++ = (out_palette[3] << 4) | out_palette[2];
370 *q++ = (out_palette[1] << 4) | out_palette[0];
372 *q++ = (out_alpha[3] & 0xF0) | (out_alpha[2] >> 4);
373 *q++ = (out_alpha[1] & 0xF0) | (out_alpha[0] >> 4);
376 x2 = vrect.
x + vrect.
w - 1;
377 y2 = vrect.
y + vrect.
h - 1;
388 *q++ = (vrect.
x << 4) | ((x2 >> 8) & 0xf);
392 *q++ = (vrect.
y << 4) | ((y2 >> 8) & 0xf);
397 bytestream_put_be16(&q, offset1);
398 bytestream_put_be16(&q, offset2);
400 *q++ = forced ? 0x00 : 0x01;
404 bytestream_put_be16(&q, (
h->end_display_time*90) >> 10);
405 bytestream_put_be16(&q, (q - outbuf) - 2 );
410 bytestream_put_be16(&qq, q - outbuf);
446 static const uint32_t default_palette[16] = {
447 0x000000, 0x0000FF, 0x00FF00, 0xFF0000,
448 0xFFFF00, 0xFF00FF, 0x00FFFF, 0xFFFFFF,
449 0x808000, 0x8080FF, 0x800080, 0x80FF80,
450 0x008080, 0xFF8080, 0x555555, 0xAAAAAA,
466 for (
i = 0;
i < 16;
i++)
478 unsigned char *buf,
int buf_size,
488 #define OFFSET(x) offsetof(DVDSubtitleContext, x)
489 #define SE AV_OPT_FLAG_SUBTITLE_PARAM | AV_OPT_FLAG_ENCODING_PARAM
492 {
"even_rows_fix",
"Make number of rows even (workaround for some players)",
OFFSET(even_rows_fix),
AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1,
SE},
static const AVOption options[]
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
static const AVClass dvdsubenc_class
static void copy_rectangle(AVSubtitleRect *dst, AVSubtitleRect *src, int cmap[])
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
static float sub(float src0, float src1)
void ff_dvdsub_parse_palette(uint32_t *palette, const char *p)
uint32_t global_palette[16]
static void count_colors(AVCodecContext *avctx, unsigned hits[33], const AVSubtitleRect *r)
Count colors used in a rectangle, quantizing alpha and grouping by nearest global palette entry.
AVCodec p
The public AVCodec.
static void select_palette(AVCodecContext *avctx, int out_palette[4], int out_alpha[4], unsigned hits[33])
int x
top left corner of pict, undefined when pict is not set
#define AV_BPRINT_SIZE_AUTOMATIC
#define AVERROR_BUFFER_TOO_SMALL
Buffer too small.
static int bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf)
static int16_t mult(Float11 *f1, Float11 *f2)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static int encode_dvd_subtitles(AVCodecContext *avctx, uint8_t *outbuf, int outbuf_size, const AVSubtitle *h)
int y
top left corner of pict, undefined when pict is not set
#define av_assert0(cond)
assert() equivalent, that is always enabled.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
int w
width of pict, undefined when pict is not set
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
#define PTRDIFF_SPECIFIER
@ AV_CODEC_ID_DVD_SUBTITLE
const char * av_default_item_name(void *ptr)
Return the context name.
uint8_t * data[4]
data+linesize for the bitmap of this subtitle.
static int dvdsub_encode(AVCodecContext *avctx, unsigned char *buf, int buf_size, const AVSubtitle *sub)
#define FF_CODEC_ENCODE_SUB_CB(func)
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
static void build_color_map(AVCodecContext *avctx, int cmap[], const uint32_t palette[], const int out_palette[], unsigned int const out_alpha[])
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
static const uint32_t color[16+AV_CLASS_CATEGORY_NB]
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
#define AV_SUBTITLE_FLAG_FORCED
@ SUBTITLE_BITMAP
A bitmap, pict will be set.
#define i(width, name, range_min, range_max)
static void dvd_encode_rle(uint8_t **pq, const uint8_t *bitmap, int linesize, int w, int h, const int cmap[256])
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
static int color_distance(uint32_t a, uint32_t b)
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
const char * name
Name of the codec implementation.
void * av_calloc(size_t nmemb, size_t size)
int h
height of pict, undefined when pict is not set
#define FFSWAP(type, a, b)
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
void av_bprintf(AVBPrint *buf, const char *fmt,...)
main external API structure.
static int dvdsub_init(AVCodecContext *avctx)
const FFCodec ff_dvdsub_encoder
int width
picture width / height.
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...