diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-03 16:02:47 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-03 20:02:14 +0100 |
commit | bbb11f383ee86cb7e6dbd5205f817d6a92e91d99 (patch) | |
tree | 4a753aa6890490ade800c99f7c0e2ad401094b00 /libavformat/utils.c | |
parent | be01d1a24ddca88bded154f5fae77c6373e67cfe (diff) | |
download | ffmpeg-bbb11f383ee86cb7e6dbd5205f817d6a92e91d99.tar.gz |
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/utils.c')
-rw-r--r-- | libavformat/utils.c | 1 |
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 } /*******************************************************/ |