diff mencoder.c @ 4088:4435dc3b8bef

Add DVD subtitles to menoder
author kmkaplan
date Fri, 11 Jan 2002 16:06:45 +0000
parents b28af7b58f4c
children 22fadd4022b5
line wrap: on
line diff
--- a/mencoder.c	Fri Jan 11 12:14:29 2002 +0000
+++ b/mencoder.c	Fri Jan 11 16:06:45 2002 +0000
@@ -182,6 +182,10 @@
 #include "cfg-mplayer-def.h"
 #include "cfg-mencoder.h"
 
+#ifdef USE_DVDREAD
+#include "spudec.h"
+#endif
+
 //---------------------------------------------------------------------------
 
 // dummy datas for gui :(
@@ -257,6 +261,19 @@
 
 //---------------------------------------------------------------------------
 
+void *vo_spudec=NULL;
+
+static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){
+    vo_draw_alpha_yv12(w,h,src,srca,stride,vo_image + vo_w * y0 + x0,vo_w);
+}
+
+static void draw_sub(void) {
+#ifdef USE_DVDREAD
+    if (vo_spudec)
+	spudec_draw_scaled(vo_spudec, vo_w, vo_h, draw_alpha);
+#endif
+}
+
 int dec_audio(sh_audio_t *sh_audio,unsigned char* buffer,int total){
     int size=0;
     int eof=0;
@@ -560,6 +577,11 @@
 video_out.draw_slice=draw_slice;
 video_out.draw_frame=draw_frame;
 
+#ifdef USE_DVDREAD
+vo_spudec=spudec_new_scaled(stream->priv?((dvd_priv_t *)(stream->priv))->cur_pgc->palette:NULL,
+			    sh_video->disp_w, sh_video->disp_h);
+#endif
+
 // set up output file:
 muxer_f=fopen(out_filename,"wb");
 if(!muxer_f) {
@@ -1118,6 +1140,18 @@
     ++skip_flag; // skip
   }
 
+#ifdef USE_DVDREAD
+// DVD sub:
+ if(vo_spudec){
+     unsigned char* packet=NULL;
+     int len;
+     while((len=ds_get_packet_sub(d_dvdsub,&packet))>0){
+	 mp_msg(MSGT_MENCODER,MSGL_V,"\rDVD sub: len=%d  v_pts=%5.3f  s_pts=%5.3f  \n",len,d_video->pts,d_dvdsub->pts);
+	 spudec_assemble(vo_spudec,packet,len,100*d_dvdsub->pts);
+     }
+     spudec_heartbeat(vo_spudec,100*d_video->pts);
+ }
+#endif
 
 switch(mux_v->codec){
 case VCODEC_COPY:
@@ -1145,6 +1179,7 @@
     return 0; /* FIXME */
 #else
     blit_frame=decode_video(&video_out,sh_video,start,in_size,0);
+    draw_sub();
     if(skip_flag>0) break;
     if(!blit_frame){
 	// empty.