give AVInput/OutputFormat structs consistent names

Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård
2006-07-09 23:40:53 +00:00
parent 21227514de
commit d2a067d1d9
72 changed files with 299 additions and 299 deletions

View File

@@ -1790,7 +1790,7 @@ static int decode_thread(void *arg)
}
is->ic = ic;
#ifdef CONFIG_NETWORK
use_play = (ic->iformat == &rtsp_demux);
use_play = (ic->iformat == &rtsp_demuxer);
#else
use_play = 0;
#endif
@@ -1884,7 +1884,7 @@ static int decode_thread(void *arg)
else
av_read_play(ic);
}
if (is->paused && ic->iformat == &rtsp_demux) {
if (is->paused && ic->iformat == &rtsp_demuxer) {
/* wait 10 ms to avoid trying to get another packet */
/* XXX: horrible */
SDL_Delay(10);