2011-01-16 18:03:08 +00:00
|
|
|
#ifndef MPLAYER_SD_H
|
|
|
|
#define MPLAYER_SD_H
|
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
#include "dec_sub.h"
|
2013-11-18 17:46:44 +00:00
|
|
|
#include "demux/packet.h"
|
2013-06-01 17:44:12 +00:00
|
|
|
|
2015-12-07 22:47:18 +00:00
|
|
|
// up to 210 ms overlaps or gaps are removed
|
|
|
|
#define SUB_GAP_THRESHOLD 0.210
|
2015-12-05 22:55:56 +00:00
|
|
|
// don't change timings if durations are smaller
|
|
|
|
#define SUB_GAP_KEEP 0.4
|
|
|
|
|
2013-06-01 17:44:12 +00:00
|
|
|
struct sd {
|
2015-12-26 17:34:18 +00:00
|
|
|
struct mpv_global *global;
|
2013-12-21 18:06:37 +00:00
|
|
|
struct mp_log *log;
|
2013-06-01 17:44:12 +00:00
|
|
|
struct MPOpts *opts;
|
|
|
|
|
|
|
|
const struct sd_functions *driver;
|
|
|
|
void *priv;
|
|
|
|
|
2016-03-03 17:48:56 +00:00
|
|
|
struct attachment_list *attachments;
|
2016-01-12 22:48:19 +00:00
|
|
|
struct mp_codec_params *codec;
|
sub: make preloading more robust
Subtitles can be preloaded, which means they're fully read and copied
into ASS_Track. This in turn is mainly for the sake of being able to do
subtitle seeking (when it comes down to it, subtitle seeking is the
cause for most trouble here).
Commit a714f8e92 broke preloaded subtitles which have events with
unknown duration, such as some MicroDVD samples. The event list gets
cleared on every seek, so the property of being preloaded obviously gets
lost.
Fix this by moving most of the preloading logic to dec_sub.c. If the
subtitle list gets cleared, they are not considered preloaded anymore,
and the logic for demuxed subtitles is used.
As another minor thing, preloadeding subtitles did neither disable the
demux stream, nor did it discard packets. Thus you could get queue
overflows in theory (harmless, but annoying). Fix this by explicitly
discarding packets in preloaded mode.
In summary, now the only difference between preloaded and normal
demuxing are:
1. a seek is issued, and all packets are read on start
2. during playback, discard the packets instead of feeding them to the
subtitle decoder
This is still petty annoying. It would be nice if maintaining the
subtitle index (and maybe a subtitle packet cache for instant subtitle
presentation when seeking back) could be maintained in the demuxer
instead. Half of all file formats with interleaved subtitles have
this anyway (mp4, mkv muxed with newer mkvmerge).
2016-03-06 13:50:36 +00:00
|
|
|
|
|
|
|
// Set to false as soon as the decoder discards old subtitle events.
|
|
|
|
// (only needed if sd_functions.accept_packets_in_advance == false)
|
|
|
|
bool preload_ok;
|
2013-06-01 17:44:12 +00:00
|
|
|
};
|
2011-01-16 18:03:08 +00:00
|
|
|
|
|
|
|
struct sd_functions {
|
2013-06-03 19:49:39 +00:00
|
|
|
const char *name;
|
2013-04-28 19:12:11 +00:00
|
|
|
bool accept_packets_in_advance;
|
2013-06-01 17:44:12 +00:00
|
|
|
int (*init)(struct sd *sd);
|
|
|
|
void (*decode)(struct sd *sd, struct demux_packet *packet);
|
2013-06-01 17:44:55 +00:00
|
|
|
void (*reset)(struct sd *sd);
|
2015-12-26 17:35:36 +00:00
|
|
|
void (*select)(struct sd *sd, bool selected);
|
2013-06-01 17:44:55 +00:00
|
|
|
void (*uninit)(struct sd *sd);
|
|
|
|
|
2015-12-05 22:54:00 +00:00
|
|
|
bool (*accepts_packet)(struct sd *sd); // implicit default if NULL: true
|
2013-06-28 23:34:11 +00:00
|
|
|
int (*control)(struct sd *sd, enum sd_ctrl cmd, void *arg);
|
2013-06-01 17:54:31 +00:00
|
|
|
|
2013-06-01 17:44:12 +00:00
|
|
|
void (*get_bitmaps)(struct sd *sd, struct mp_osd_res dim, double pts,
|
2012-08-25 18:22:39 +00:00
|
|
|
struct sub_bitmaps *res);
|
2013-06-01 17:44:12 +00:00
|
|
|
char *(*get_text)(struct sd *sd, double pts);
|
2011-01-16 18:03:08 +00:00
|
|
|
};
|
|
|
|
|
2015-12-18 00:54:14 +00:00
|
|
|
struct lavc_conv;
|
|
|
|
struct lavc_conv *lavc_conv_create(struct mp_log *log, const char *codec_name,
|
|
|
|
char *extradata, int extradata_len);
|
|
|
|
char *lavc_conv_get_extradata(struct lavc_conv *priv);
|
|
|
|
char **lavc_conv_decode(struct lavc_conv *priv, struct demux_packet *packet);
|
|
|
|
void lavc_conv_reset(struct lavc_conv *priv);
|
|
|
|
void lavc_conv_uninit(struct lavc_conv *priv);
|
2013-06-01 17:54:18 +00:00
|
|
|
|
2011-01-16 18:03:08 +00:00
|
|
|
#endif
|