summaryrefslogtreecommitdiffstats
path: root/libmpdemux/muxer_lavf.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-28 22:38:45 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-28 22:38:45 +0000
commit01d92a32adc89a9c3ac451b47cc279a215ee9c4b (patch)
treeeba1c598b56373cb2ae00af1e502012f37c2526c /libmpdemux/muxer_lavf.c
parent96217887af00ec35aac12bb257f5fa2cf19a1684 (diff)
downloadmpv-01d92a32adc89a9c3ac451b47cc279a215ee9c4b.tar.bz2
mpv-01d92a32adc89a9c3ac451b47cc279a215ee9c4b.tar.xz
cosmetics: typo fix UNSUPORTED --> UNSUPPORTED
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24277 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/muxer_lavf.c')
-rw-r--r--libmpdemux/muxer_lavf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/muxer_lavf.c b/libmpdemux/muxer_lavf.c
index e83ef4b924..00f9140185 100644
--- a/libmpdemux/muxer_lavf.c
+++ b/libmpdemux/muxer_lavf.c
@@ -103,7 +103,7 @@ static offset_t mp_seek(URLContext *h, offset_t pos, int whence)
else if(whence == SEEK_END)
{
off_t size=0;
- if(stream_control(muxer->stream, STREAM_CTRL_GET_SIZE, &size) == STREAM_UNSUPORTED || size < pos)
+ if(stream_control(muxer->stream, STREAM_CTRL_GET_SIZE, &size) == STREAM_UNSUPPORTED || size < pos)
return -1;
pos = size - pos;
}