summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-21 08:18:51 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-21 08:18:51 +0000
commit2f76cfc28a0466ad6dfdb7edc7affe91983d6eaa (patch)
treeeb19a1c8b1633bf9a6544a56dab02f1821b6f08d /mplayer.c
parent9a6313ed24efaeb22b86ddc6309ee28e3bbde0e4 (diff)
downloadmpv-2f76cfc28a0466ad6dfdb7edc7affe91983d6eaa.tar.bz2
mpv-2f76cfc28a0466ad6dfdb7edc7affe91983d6eaa.tar.xz
Revert r23530.
r23530 breaks policy: notification was not sent to mailing list, agreements of other devs were not received. Code also should be reviewed/cleaned up/fixed. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23593 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/mplayer.c b/mplayer.c
index fcb7948397..39414e5453 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -1040,10 +1040,6 @@ void init_vo_spudec(void) {
spudec_set_font_factor(vo_spudec,font_factor);
}
-#ifdef HAVE_TV_TELETEXT
- if (vo_spudec==NULL && mpctx->demuxer->type==DEMUXER_TYPE_TV)
- vo_spudec=spudec_new_scaled(NULL, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h);
-#endif
if (vo_spudec!=NULL)
inited_flags|=INITED_SPUDEC;
}
@@ -1626,7 +1622,6 @@ static int generate_video_frame(sh_video_t *sh_video, demux_stream_t *d_video)
decoded_frame = decode_video(sh_video, start, in_size, 0, pts);
if (decoded_frame) {
update_subtitles(sh_video, mpctx->d_sub, 0);
- update_teletext(sh_video, mpctx->demuxer, 0);
update_osd_msg();
current_module = "filter video";
if (filter_video(sh_video, decoded_frame, sh_video->pts))
@@ -2041,7 +2036,6 @@ static double update_video(int *blit_frame)
++total_frame_cnt;
}
update_subtitles(sh_video, mpctx->d_sub, 0);
- update_teletext(sh_video, mpctx->demuxer, 0);
update_osd_msg();
current_module = "decode_video";
decoded_frame = decode_video(sh_video, start, in_size, drop_frame,
@@ -2255,7 +2249,6 @@ static int seek(MPContext *mpctx, double amount, int style)
// be completely wrong (probably 0).
mpctx->sh_video->pts = mpctx->d_video->pts;
update_subtitles(mpctx->sh_video, mpctx->d_sub, 1);
- update_teletext(mpctx->sh_video, mpctx->demuxer, 1);
}
if (mpctx->sh_audio) {
@@ -3130,11 +3123,7 @@ demux_info_print(mpctx->demuxer);
//================== Read SUBTITLES (DVD & TEXT) ==========================
if(vo_spudec==NULL && mpctx->sh_video &&
- (mpctx->stream->type==STREAMTYPE_DVD || mpctx->stream->type == STREAMTYPE_DVDNAV ||
-#ifdef HAVE_TV_TELETEXT
- mpctx->demuxer->type==DEMUXER_TYPE_TV ||
-#endif
- mpctx->d_sub->id >= 0)){
+ (mpctx->stream->type==STREAMTYPE_DVD || mpctx->stream->type == STREAMTYPE_DVDNAV || mpctx->d_sub->id >= 0)){
init_vo_spudec();
}