summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-03 16:02:47 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-01-03 20:02:14 +0100
commitbbb11f383ee86cb7e6dbd5205f817d6a92e91d99 (patch)
tree4a753aa6890490ade800c99f7c0e2ad401094b00 /libavformat
parentbe01d1a24ddca88bded154f5fae77c6373e67cfe (diff)
lavf: add return to silence compiler warning
The added statement is not reachable Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/utils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 195814b9b3..1ffde2328f 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2123,6 +2123,7 @@ int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int
}
// try some generic seek like seek_frame_generic() but with new ts semantics
+ return -1; //unreachable
}
/*******************************************************/