diff options
author | wm4 <wm4@nowhere> | 2015-03-03 15:19:33 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-03-03 15:19:33 +0100 |
commit | b3401e8972399ecccff6c639cb845939ee6a8efc (patch) | |
tree | f046db307d57cc5a97a3e7e5baa11326765b272e /demux | |
parent | 22d11d7b3a4f82128245ed5e0b7dfc91755ad188 (diff) |
sub: this isn't needed either
Diffstat (limited to 'demux')
-rw-r--r-- | demux/demux_lavf.c | 2 | ||||
-rw-r--r-- | demux/stheader.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/demux/demux_lavf.c b/demux/demux_lavf.c index 4c960403da..0275b1afd2 100644 --- a/demux/demux_lavf.c +++ b/demux/demux_lavf.c @@ -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; diff --git a/demux/stheader.h b/demux/stheader.h index d0f409742f..fbfba01367 100644 --- a/demux/stheader.h +++ b/demux/stheader.h @@ -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 |