mirror of https://github.com/mpv-player/mpv
sub: this isn't needed either
This commit is contained in:
parent
22d11d7b3a
commit
b3401e8972
|
@ -560,8 +560,6 @@ static void handle_stream(demuxer_t *demuxer, int i)
|
|||
memcpy(sh_sub->extradata, codec->extradata, codec->extradata_size);
|
||||
sh_sub->extradata_len = codec->extradata_size;
|
||||
}
|
||||
sh_sub->w = codec->width;
|
||||
sh_sub->h = codec->height;
|
||||
|
||||
if (matches_avinputformat_name(priv, "microdvd")) {
|
||||
AVRational r;
|
||||
|
|
|
@ -93,7 +93,6 @@ typedef struct sh_video {
|
|||
typedef struct sh_sub {
|
||||
unsigned char *extradata; // extra header data passed from demuxer
|
||||
int extradata_len;
|
||||
int w, h; // mp4 vobsubs
|
||||
double frame_based; // timestamps are frame-based (and this is the
|
||||
// fallback framerate used for timestamps)
|
||||
bool is_utf8; // if false, subtitle packet charset is unknown
|
||||
|
|
|
@ -207,8 +207,6 @@ void sub_init_from_sh(struct dec_sub *sub, struct sh_stream *sh)
|
|||
sub_set_extradata(sub, sh->sub->extradata, sh->sub->extradata_len);
|
||||
struct sd init_sd = sub->init_sd;
|
||||
init_sd.codec = sh->codec;
|
||||
init_sd.sub_stream_w = sh->sub->w;
|
||||
init_sd.sub_stream_h = sh->sub->h;
|
||||
|
||||
while (sub->num_sd < MAX_NUM_SD) {
|
||||
struct sd *sd = talloc(NULL, struct sd);
|
||||
|
|
3
sub/sd.h
3
sub/sd.h
|
@ -25,9 +25,6 @@ struct sd {
|
|||
// the resolution of the VO, nor does it have to be the OSD resolution.
|
||||
int sub_video_w, sub_video_h;
|
||||
|
||||
// Resolution hints stored in mp4 files.
|
||||
int sub_stream_w, sub_stream_h;
|
||||
|
||||
// Shared renderer for ASS - done to avoid reloading embedded fonts.
|
||||
struct ass_library *ass_library;
|
||||
struct ass_renderer *ass_renderer;
|
||||
|
|
Loading…
Reference in New Issue