[Mplayer-cvslog] CVS: main/libmpdemux video.c,1.21,1.22
Atmosfear
atmos4 at mplayerhq.hu
Thu Jul 25 05:37:31 CEST 2002
- Previous message: [Mplayer-cvslog] CVS: main sub_cc.c,NONE,1.1 sub_cc.h,NONE,1.1 mplayer.c,1.529,1.530 mencoder.c,1.141,1.142 cfg-common.h,1.49,1.50 Makefile,1.195,1.196
- Next message: [Mplayer-cvslog] CVS: main/libmpcodecs dec_video.c,1.139,1.140
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var/tmp.root/cvs-serv21348/libmpdemux
Modified Files:
video.c
Log Message:
DVD Closed Captioning support, patch by Matteo Giani <matgiani at ctonet.it>, small changes by me.
Index: video.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/video.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- video.c 27 Jun 2002 10:12:31 -0000 1.21
+++ video.c 25 Jul 2002 03:37:28 -0000 1.22
@@ -19,6 +19,9 @@
#include "parse_es.h"
#include "mpeg_hdr.h"
+/* sub_cc (closed captions)*/
+#include "../sub_cc.h"
+
/* biCompression constant */
#define BI_RGB 0L
@@ -184,11 +187,19 @@
static void process_userdata(unsigned char* buf,int len){
int i;
+ if(!memcmp(buf,"CC",2)) /* if the user data starts with "CC", assume it is a CC info packet */
+ {
+ if(verbose)printf("video.c: process_userdata() detected Closed Captions!\n");
+ if(subcc_enabled) subcc_process_data(buf+2,len-2);
+ }
+ if(verbose)
+ {
printf( "user_data: len=%3d %02X %02X %02X %02X '",
len, buf[0], buf[1], buf[2], buf[3]);
for(i=0;i<len;i++)
if(buf[i]>=32 && buf[i]<127) putchar(buf[i]);
printf("'\n");
+ }
}
int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps){
@@ -234,7 +245,7 @@
switch(i){
case 0x1B3: mp_header_process_sequence_header (&picture, &videobuffer[start]);break;
case 0x1B5: mp_header_process_extension (&picture, &videobuffer[start]);break;
- case 0x1B2: if(verbose) process_userdata (&videobuffer[start], videobuf_len-start);break;
+ case 0x1B2: process_userdata (&videobuffer[start], videobuf_len-start);break;
}
}
- Previous message: [Mplayer-cvslog] CVS: main sub_cc.c,NONE,1.1 sub_cc.h,NONE,1.1 mplayer.c,1.529,1.530 mencoder.c,1.141,1.142 cfg-common.h,1.49,1.50 Makefile,1.195,1.196
- Next message: [Mplayer-cvslog] CVS: main/libmpcodecs dec_video.c,1.139,1.140
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list