Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 16, 2006, 4:29:04 PM (18 years ago)
Author:
hdavid
Message:

branches/avi_play: fixed loading

File:
1 edited

Legend:

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

    r6486 r6510  
    2525#include "movie_player.h"
    2626
     27#include "resource_manager.h"
     28
    2729// header for debug output
    2830#include "debug.h"
     
    9698
    9799  // Open video file
    98   if (av_open_input_file(&format_context, filename, NULL, 0, NULL) !=0 )
    99   {
    100     PRINTF(1)("Could not open %s\n", filename);
     100  if (av_open_input_file(&format_context, ResourceManager::getFullName(filename), NULL, 0, NULL) !=0 )
     101  {
     102    PRINTF(1)("Could not open %s\n", ResourceManager::getFullName(filename));
    101103    return false;
    102104  }
     
    105107  if (av_find_stream_info(format_context) < 0)
    106108  {
    107     PRINTF(1)("Could not find stream information in %s\n", filename);
     109    PRINTF(1)("Could not find stream information in %s\n", ResourceManager::getFullName(filename));
    108110    return false;
    109111  }
     
    114116  if(video_stream == -1)
    115117  {
    116     PRINTF(1)("Could not find a video stream in %s\n", filename);
     118    PRINTF(1)("Could not find a video stream in %s\n", ResourceManager::getFullName(filename));
    117119    return false;
    118120  }
Note: See TracChangeset for help on using the changeset viewer.