frminf = &app_obj->frame_info;
concat_count = frminf->cnt_concatenated_movie;
criFwPrt_DrawText(x, y, "Concat Count : %d", concat_count); y++; y++;
video = &mvinf.video_prm[0];
criFwPrt_DrawText(x, y, "<Playing Movie Info>"); y++;
criFwPrt_DrawText(x, y, "Size, Framerate : (%d x %d), %6.3f[fps]", video->width, video->height, (CriFloat32)video->framerate/1000.0f); y++;
criFwPrt_DrawText(x, y, "Frame No Per File : %d", frminf->frame_no_per_file); y++;
criFwPrt_DrawText(x, y, "Bitrate : %4.2f [Mbps]", (CriFloat32)mvinf.max_bitrate/1000000.0f); y++; y++;
CriBool criManaPlayer_GetMovieInfo(CriManaPlayerHn player, CriManaMovieInfo *mvinf)
Get movie header information.
You can determine when playback was switched to the currently playing movie in sequence from the cnt_concatenated_movie member of the
CriManaFrameInfo structure. You can also get information about the currently playing movie by calling the
criManaPlayer_GetMovieInfo function during concatenated playback.