Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 19, 2006, 12:35:05 AM (18 years ago)
Author:
hdavid
Message:

some cleanup and fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/avi_play/src/lib/graphics/importer/movie_player.cc

    r6600 r6611  
    6262  av_free(frame);
    6363
    64   avcodec_default_free_buffers(codec_context);
    65 
    6664  // Close the codec
    6765  avcodec_close(codec_context);
     
    8078  frame_number = 0;
    8179  loading = false;
    82 
    83   /*material = new Material;
    84   material->setDiffuseMap("maps/radialTransparency.png");
    85 
    86   model = new PrimitiveModel(PRIM_PLANE, 10.0);
    87 
    88   LightManager* lightMan = LightManager::getInstance();
    89   lightMan->setAmbientColor(.1,.1,.1);
    90   (new Light())->setAbsCoor(5.0, 10.0, 40.0);
    91   (new Light())->setAbsCoor(-10, -20, -100);
    92   */
    9380}
    9481
     
    344331    status = PLAY;
    345332    timer = 0;
    346 
    347     this->gotoFrame(start_frame);
    348 
    349     PRINTF(0)("start\n");
    350333  }
    351334}
     
    354337{
    355338  if(status == PAUSE)
    356   {
    357339    status = PLAY;
    358     PRINTF(0)("resume\n");
    359   }
    360340}
    361341
     
    363343{
    364344  if(status == PLAY)
    365   {
    366345    status = PAUSE;
    367     PRINTF(0)("pause\n");
    368   }
    369346}
    370347
     
    372349{
    373350  status = STOP;
    374 
    375   PRINTF(0)("stop\n");
    376351}
    377352
     
    389364        this->skipFrame(actual_frame - frame_number - 1);
    390365    }
    391     //PRINTF(0)("frame_number: %i\n", frame_number);
    392   }
    393 }
    394 
    395 /*const void MoviePlayer::draw()
    396 {
    397   material->select();
    398   glBindTexture(GL_TEXTURE_2D, texture);
    399   model->draw();
    400 
    401   LightManager::getInstance()->draw();
    402 }*/
     366  }
     367}
    403368
    404369GLuint MoviePlayer::getTexture()
Note: See TracChangeset for help on using the changeset viewer.