]> git.sesse.net Git - ffmpeg/commitdiff
lavf: add return to silence compiler warning
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 3 Jan 2013 15:02:47 +0000 (16:02 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 3 Jan 2013 19:02:14 +0000 (20:02 +0100)
The added statement is not reachable

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/utils.c

index 195814b9b35a0f3baffa0690991e577466daa26e..1ffde2328fc6ed0e0b568d27171d5719b183780a 100644 (file)
@@ -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
 }
 
 /*******************************************************/