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/media_container.cc

    r6486 r6510  
    2525#include "media_container.h"
    2626
     27#include "resource_manager.h"
     28
    2729/* header for debug output */
    2830#include "debug.h"
     
    8284
    8385  // Open video file
    84   if (av_open_input_file(&format_context, filename, NULL, 0, NULL) !=0 )
    85   {
    86     PRINTF(1)("Could not open %s\n", filename);
     86  if (av_open_input_file(&format_context, ResourceManager::getFullName(filename), NULL, 0, NULL) !=0 )
     87  {
     88    PRINTF(1)("Could not open %s\n", ResourceManager::getFullName(filename));
    8789    return false;
    8890  }
     
    9193  if (av_find_stream_info(format_context) < 0)
    9294  {
    93     PRINTF(1)("Could not find stream information in %s\n", filename);
     95    PRINTF(1)("Could not find stream information in %s\n", ResourceManager::getFullName(filename));
    9496    return false;
    9597  }
     
    100102  if(video_stream == -1)
    101103  {
    102     PRINTF(1)("Could not find a video stream in %s\n", filename);
     104    PRINTF(1)("Could not find a video stream in %s\n", ResourceManager::getFullName(filename));
    103105    return false;
    104106  }
    105107
    106108  // Get a pointer to the codec context for the video stream
    107   // NOTE: different code for the 0.4.9-pre1 release of ffmpeg (tardis)
    108   // codec_context = &format_context->streams[video_stream]->codec;
    109109  codec_context = format_context->streams[video_stream]->codec;
    110110
Note: See TracChangeset for help on using the changeset viewer.