Mercurial > mplayer.hg
changeset 20158:7297d76977be
gcc 2.95 fix
author | ods15 |
---|---|
date | Wed, 11 Oct 2006 20:53:33 +0000 |
parents | eec5cccc1734 |
children | 5bb2619601f2 |
files | stream/stream_dvd.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/stream/stream_dvd.c Wed Oct 11 20:08:54 2006 +0000 +++ b/stream/stream_dvd.c Wed Oct 11 20:53:33 2006 +0000 @@ -142,10 +142,10 @@ int dvd_lang_from_aid(stream_t *stream, int id) { dvd_priv_t *d; + int i; if (!stream) return 0; d = stream->priv; if (!d) return 0; - int i; for(i=0;i<d->nr_of_channels;i++) { if(d->audio_streams[i].id==id) return d->audio_streams[i].language;