summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-27 21:40:09 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-27 21:40:09 +0000
commit0bfd6cb4f1d431e57afecf805873dfda9c058bf5 (patch)
tree62304a79aabc285d66e291139263b35ff2e5e701 /stream
parentc803ba9baf2570286085ce68a139c64d89fd8e52 (diff)
downloadmpv-0bfd6cb4f1d431e57afecf805873dfda9c058bf5.tar.bz2
mpv-0bfd6cb4f1d431e57afecf805873dfda9c058bf5.tar.xz
in stream_control() remove redefinition of d in a case block, previously assigned in the same function
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24249 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_dvd.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/stream/stream_dvd.c b/stream/stream_dvd.c
index 1625fdbf97..4e9748a812 100644
--- a/stream/stream_dvd.c
+++ b/stream/stream_dvd.c
@@ -732,7 +732,6 @@ static int control(stream_t *stream,int cmd,void* arg)
}
case STREAM_CTRL_SEEK_TO_TIME:
{
- dvd_priv_t *d = stream->priv;
if(stream_cache_size > 0) return STREAM_UNSUPORTED;
if(dvd_seek_to_time(stream, d->vts_file, *((double*)arg)))
return 1;