fix some issues with video textures

This commit is contained in:
David Rose 2006-06-19 13:29:18 +00:00
parent 5a44148f12
commit bcb66a94d7
7 changed files with 288 additions and 275 deletions

View File

@ -23,6 +23,7 @@
#include "clockObject.h"
#include "config_gobj.h"
#include "config_grutil.h"
#include "bamCacheRecord.h"
TypeHandle FFMpegTexture::_type_handle;
@ -127,7 +128,7 @@ reconsider_video_properties(const FFMpegTexture::VideoStream &stream,
//Number of frames is a little questionable if we've got variable
//frame rate. Duration comes in as a generic timestamp,
//and is therefore multiplied by AV_TIME_BASE.
num_frames = (int(stream.pFormatCtx->duration*frame_rate))/AV_TIME_BASE;
num_frames = (int)((stream.pFormatCtx->duration*frame_rate)/AV_TIME_BASE);
if (grutil_cat.is_debug()) {
grutil_cat.debug()
<< "Loaded " << stream._filename << ", " << num_frames << " frames at "
@ -196,7 +197,8 @@ make_texture() {
// Description: Called once per frame, as needed, to load the new
// image contents.
////////////////////////////////////////////////////////////////////
void FFMpegTexture::update_frame(int frame) {
void FFMpegTexture::
update_frame(int frame) {
int max_z = max(_z_size, (int)_pages.size());
for (int z = 0; z < max_z; ++z) {
VideoPage &page = _pages[z];
@ -310,7 +312,12 @@ void FFMpegTexture::update_frame(int frame) {
////////////////////////////////////////////////////////////////////
bool FFMpegTexture::
do_read_one(const Filename &fullpath, const Filename &alpha_fullpath,
int z, int n, int primary_file_num_channels, int alpha_file_channel) {
int z, int n, int primary_file_num_channels, int alpha_file_channel,
BamCacheRecord *record) {
if (record != (BamCacheRecord *)NULL) {
record->add_dependent_file(fullpath);
}
nassertr(n == 0, false);
nassertr(z >= 0 && z < get_z_size(), false);
@ -493,9 +500,6 @@ get_frame_data(int frame) {
int gotFrame;
long long timeStamp=(AV_TIME_BASE/vstream->r_frame_rate.num)*(frame *vstream->r_frame_rate.den);
long long currTimeStamp;
//first find out where to go
if(frame==comingFrom)
{
@ -507,8 +511,11 @@ get_frame_data(int frame) {
}
else
{
double timeStamp=((double)AV_TIME_BASE*frame *vstream->r_frame_rate.den)/vstream->r_frame_rate.num;
double currTimeStamp;
//find point in time
int res=av_seek_frame( pFormatCtx,-1, timeStamp,AVSEEK_FLAG_BACKWARD );
int res=av_seek_frame( pFormatCtx,-1, (long long)timeStamp,AVSEEK_FLAG_BACKWARD );
//Okay, now we're at the nearest keyframe behind our timestamp.
//Hurry up and move through frames until we find a frame just after it.
@ -517,9 +524,8 @@ get_frame_data(int frame) {
av_read_frame( pFormatCtx, &packet );
// should really be checking that this is a video packet
currTimeStamp = (long long)(packet.pts / packet.duration *
AV_TIME_BASE / av_q2d( vstream->r_frame_rate));
currTimeStamp = (((double)AV_TIME_BASE * packet.pts) /
((double)packet.duration * av_q2d( vstream->r_frame_rate)));
if( currTimeStamp > timeStamp )
break;

View File

@ -50,8 +50,8 @@ public:
protected:
virtual void update_frame(int frame);
virtual bool do_read_one(const Filename &fullpath, const Filename &alpha_fullpath,
int z, int n, int primary_file_num_channels, int alpha_file_channel);
int z, int n, int primary_file_num_channels, int alpha_file_channel,
BamCacheRecord *record);
virtual bool do_load_one(const PNMImage &pnmimage, const string &name,
int z, int n);

View File

@ -24,6 +24,7 @@
#include "config_gobj.h"
#include "config_grutil.h"
#include "bamReader.h"
#include "bamCacheRecord.h"
TypeHandle OpenCVTexture::_type_handle;
@ -295,7 +296,12 @@ update_frame(int frame) {
////////////////////////////////////////////////////////////////////
bool OpenCVTexture::
do_read_one(const Filename &fullpath, const Filename &alpha_fullpath,
int z, int n, int primary_file_num_channels, int alpha_file_channel) {
int z, int n, int primary_file_num_channels, int alpha_file_channel,
BamCacheRecord *record) {
if (record != (BamCacheRecord *)NULL) {
record->add_dependent_file(fullpath);
}
nassertr(n == 0, false);
nassertr(z >= 0 && z < get_z_size(), false);
@ -367,14 +373,14 @@ do_read_one(const Filename &fullpath, const Filename &alpha_fullpath,
// texture) to the indicated static image.
////////////////////////////////////////////////////////////////////
bool OpenCVTexture::
do_load_one(const PNMImage &pnmimage, int z, int n) {
do_load_one(const PNMImage &pnmimage, const string &name, int z, int n) {
if (z <= (int)_pages.size()) {
VideoPage &page = modify_page(z);
page._color.clear();
page._alpha.clear();
}
return Texture::do_load_one(pnmimage, z, n);
return Texture::do_load_one(pnmimage, name, z, n);
}
////////////////////////////////////////////////////////////////////

View File

@ -56,7 +56,8 @@ protected:
virtual bool do_read_one(const Filename &fullpath, const Filename &alpha_fullpath,
int z, int n, int primary_file_num_channels, int alpha_file_channel);
virtual bool do_load_one(const PNMImage &pnmimage, int z, int n);
virtual bool do_load_one(const PNMImage &pnmimage, const string &name,
int z, int n);
private:
class VideoPage;