diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-12-07 11:30:07 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-07 15:29:14 +0100 |
commit | c7e8187d9d60a61a05f5788e502ec2baf02c7e10 (patch) | |
tree | b7fc2aaee831f658194af465a84f9c37e3cfeeed /libavformat/utils.c | |
parent | ff159e7816796c52fda7bcf6d87066a14784ee36 (diff) | |
download | ffmpeg-c7e8187d9d60a61a05f5788e502ec2baf02c7e10.tar.gz |
avformat/utils: Drop unused goto label.
libavformat/utils.c:2165:2: warning: label ‘fail’ defined but not used
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index ea075e7286..1df042f0fe 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2162,7 +2162,6 @@ static int try_decode_frame(AVStream *st, AVPacket *avpkt, AVDictionary **option pkt.size -= ret; } } - fail: return ret; } |