diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-09 11:48:53 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-09 11:48:53 +0200 |
commit | 72b3ce11eb673800237497eb74736ac092e9ee0d (patch) | |
tree | b18844cc7f1430280602434ecd4ed8d7b244e570 | |
parent | 5a6de3347ef0da6c51f936a8d94ab58404453300 (diff) | |
download | xine-lib-72b3ce11eb673800237497eb74736ac092e9ee0d.tar.gz xine-lib-72b3ce11eb673800237497eb74736ac092e9ee0d.tar.bz2 |
Remove unused variables.
-rw-r--r-- | src/demuxers/demux_ts.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/demuxers/demux_ts.c b/src/demuxers/demux_ts.c index 0c8b4e974..2b3f77d11 100644 --- a/src/demuxers/demux_ts.c +++ b/src/demuxers/demux_ts.c @@ -1305,7 +1305,6 @@ printf("Program Number is %i, looking for %i\n",program_number,this->program_num case ISO_13818_PES_PRIVATE: for (i = 5; i < coded_length; i += stream[i+1] + 2) { if ((stream[i] == 0x6a) && (this->audio_tracks_count < MAX_AUDIO_TRACKS)) { - uint32_t format_identifier=0; int i, found = 0; for(i = 0; i < this->audio_tracks_count; i++) { if(this->audio_tracks[i].pid == pid) { @@ -2081,7 +2080,6 @@ static int demux_ts_get_optional_data(demux_plugin_t *this_gen, demux_ts_t *this = (demux_ts_t *) this_gen; char *str = data; int channel = *((int *)data); - int track_num; /* be a bit paranoid */ if (this == NULL || this->stream == NULL) |