Changeset 30526


Ignore:
Timestamp:
10/13/14 11:45:59 (8 years ago)
Author:
nit
Message:

fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/player.h

    r30435 r30526  
    12321232//////////////////////////////NEUER CODE //////////////////////////////
    12331233#ifdef EPLAYER4
    1234         char ** tmpTrackList[2][100];
    1235         TrackList = tmpTrackList;
    1236        
    1237         if(m_gst_playbin != NULL) {
     1234        //char ** tmpTrackList[2][100];
     1235        TrackList = malloc(sizeof(char *) * ((100 * 2) + 1));
     1236        //TrackList = tmpTrackList;
     1237       
     1238        if(m_gst_playbin != NULL)
     1239        {
    12381240                gint i, n_video = 0, n_audio = 0, n_text = 0;
    12391241               
     
    12461248                        case 1:
    12471249printf("1: n_audio=%d\n", n_audio);
    1248                                 for(i = 0; i < n_audio - 1; i++)
     1250                                for(i = 0; i < n_audio; i++)
    12491251                                {
    12501252printf("2: i=%d\n", i);
Note: See TracChangeset for help on using the changeset viewer.