mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
cin: replace cin with ogv if available
This commit is contained in:
parent
a72fa5af3a
commit
f76fa5526f
2 changed files with 42 additions and 25 deletions
|
@ -694,7 +694,7 @@ SCR_LoadAVcodec(const char *arg, const char *dot)
|
|||
break;
|
||||
}
|
||||
|
||||
Com_sprintf(name, sizeof(name), "%s/video/%s", path, arg);
|
||||
Com_sprintf(name, sizeof(name), "%s/video/%s%s", path, arg, dot);
|
||||
cin.av_video = cinavdecode_open(name);
|
||||
if (cin.av_video)
|
||||
{
|
||||
|
@ -1012,38 +1012,49 @@ SCR_PlayCinematic(char *arg)
|
|||
}
|
||||
|
||||
#ifdef AVMEDIADECODE
|
||||
if (dot && (!strcmp(dot, ".ogv") ||
|
||||
if (dot && (!strcmp(dot, ".cin") ||
|
||||
!strcmp(dot, ".ogv") ||
|
||||
!strcmp(dot, ".mpg") ||
|
||||
!strcmp(dot, ".smk") ||
|
||||
!strcmp(dot, ".roq")))
|
||||
{
|
||||
if (!SCR_LoadAVcodec(arg, dot))
|
||||
char namewe[256];
|
||||
|
||||
/* Remove the extension */
|
||||
memset(namewe, 0, 256);
|
||||
memcpy(namewe, arg, strlen(arg) - strlen(dot));
|
||||
|
||||
if (SCR_LoadAVcodec(namewe, ".ogv") ||
|
||||
SCR_LoadAVcodec(namewe, ".roq") ||
|
||||
SCR_LoadAVcodec(namewe, ".mpg") ||
|
||||
SCR_LoadAVcodec(namewe, dot))
|
||||
{
|
||||
SCR_EndLoadingPlaque();
|
||||
|
||||
cin.color_bits = 32;
|
||||
cls.state = ca_active;
|
||||
|
||||
cin.s_rate = cin.av_video->rate;
|
||||
cin.s_width = 2;
|
||||
cin.s_channels = cin.av_video->channels;
|
||||
cin.audio_buf = Z_Malloc(cin.av_video->audio_frame_size);
|
||||
|
||||
cin.width = cin.av_video->width;
|
||||
cin.height = cin.av_video->height;
|
||||
cin.fps = cin.av_video->fps;
|
||||
|
||||
cl.cinematicframe = 0;
|
||||
cin.pic = SCR_ReadNextAVFrame();
|
||||
cl.cinematictime = Sys_Milliseconds();
|
||||
|
||||
cin.video_type = video_av;
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
cin.av_video = NULL;
|
||||
cl.cinematictime = 0; /* done */
|
||||
return;
|
||||
}
|
||||
|
||||
SCR_EndLoadingPlaque();
|
||||
|
||||
cin.color_bits = 32;
|
||||
cls.state = ca_active;
|
||||
|
||||
cin.s_rate = cin.av_video->rate;
|
||||
cin.s_width = 2;
|
||||
cin.s_channels = cin.av_video->channels;
|
||||
cin.audio_buf = Z_Malloc(cin.av_video->audio_frame_size);
|
||||
|
||||
cin.width = cin.av_video->width;
|
||||
cin.height = cin.av_video->height;
|
||||
cin.fps = cin.av_video->fps;
|
||||
|
||||
cl.cinematicframe = 0;
|
||||
cin.pic = SCR_ReadNextAVFrame();
|
||||
cl.cinematictime = Sys_Milliseconds();
|
||||
|
||||
cin.video_type = video_av;
|
||||
return;
|
||||
}
|
||||
|
||||
#else
|
||||
|
|
|
@ -154,6 +154,12 @@ Qcommon_Buildstring(void)
|
|||
#else
|
||||
printf(" - Systemwide installation\n");
|
||||
#endif
|
||||
|
||||
#ifdef AVMEDIADECODE
|
||||
printf(" + AVcodec decode\n");
|
||||
#else
|
||||
printf(" - AVcodec decode\n");
|
||||
#endif
|
||||
#endif
|
||||
|
||||
printf("Platform: %s\n", YQ2OSTYPE);
|
||||
|
|
Loading…
Reference in a new issue