0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

-subfps and -subdelay alters -dumpmpsub's output

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4887 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
laaz 2002-02-28 02:37:13 +00:00
parent 6f4effaf5b
commit e0acf7f92c

View File

@ -517,6 +517,9 @@ int sub_utf8=0;
extern int sub_utf8;
#endif
extern float sub_delay;
extern float sub_fps;
#ifdef USE_ICONV
static iconv_t icdsc;
@ -788,7 +791,8 @@ void dump_mpsub(subtitle* subs, float fps){
FILE *fd;
float a,b;
mpsub_position=0.0;
mpsub_position=sub_uses_time?(sub_delay*100):(sub_delay*fps);
if (sub_fps==0) sub_fps=fps;
fd=fopen ("dump.mpsub", "w");
if (!fd) {
@ -815,8 +819,8 @@ void dump_mpsub(subtitle* subs, float fps){
else
fprintf (fd, " %.2f\n",b);
} else {
fprintf (fd, "%ld %ld\n", (egysub->start)-((long)mpsub_position),
(egysub->end)-(egysub->start));
fprintf (fd, "%ld %ld\n", (long)((egysub->start*(fps/sub_fps))-((mpsub_position*(fps/sub_fps)))),
(long)(((egysub->end)-(egysub->start))*(fps/sub_fps)));
}
mpsub_position = egysub->end;
@ -856,7 +860,7 @@ int main(int argc, char **argv) { // for testing
sub_cp = argv[2];
subs=sub_read_file(argv[1]);
if(!subs){
printf("Couldn't load file... let's write a bugreport :)\n");
printf("Couldn't load file.\n");
exit(1);
}