Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-09-16 18:37:01 +0400
committerDiego Biurrun <diego@biurrun.de>2007-09-16 18:37:01 +0400
commit0ab1ebea310f172a92addcf9414ffd5e5722e3de (patch)
tree4eb3021d54d242ed3577b88bb692f8ef157d4fb3 /libavformat/nutdec.c
parent50c21814b9de5635cf01e2d1ea091a9a272a4d67 (diff)
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
Diffstat (limited to 'libavformat/nutdec.c')
-rw-r--r--libavformat/nutdec.c1
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){