diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-09-16 14:37:01 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-09-16 14:37:01 +0000 |
commit | 0ab1ebea310f172a92addcf9414ffd5e5722e3de (patch) | |
tree | 4eb3021d54d242ed3577b88bb692f8ef157d4fb3 | |
parent | 50c21814b9de5635cf01e2d1ea091a9a272a4d67 (diff) | |
download | ffmpeg-0ab1ebea310f172a92addcf9414ffd5e5722e3de.tar.gz |
warning fix:
nutdec.c: In function ‘nut_read_timestamp’:
nutdec.c:759: warning: label ‘resync’ defined but not used
Originally committed as revision 10506 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/nutdec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c index 9592a11161..91b13009ea 100644 --- a/libavformat/nutdec.c +++ b/libavformat/nutdec.c @@ -756,7 +756,6 @@ static int64_t nut_read_timestamp(AVFormatContext *s, int stream_index, int64_t av_log(s, AV_LOG_DEBUG, "read_timestamp(X,%d,%"PRId64",%"PRId64")\n", stream_index, *pos_arg, pos_limit); pos= *pos_arg; -resync: do{ pos= find_startcode(bc, SYNCPOINT_STARTCODE, pos)+1; if(pos < 1){ |