You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avformat/async: Add missing else
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -439,7 +439,7 @@ static int64_t async_test_seek(URLContext *h, int64_t pos, int whence)
|
|||||||
|
|
||||||
if (whence == AVSEEK_SIZE) {
|
if (whence == AVSEEK_SIZE) {
|
||||||
return c->logical_size;
|
return c->logical_size;
|
||||||
} if (whence == SEEK_CUR) {
|
} else if (whence == SEEK_CUR) {
|
||||||
new_logical_pos = pos + c->logical_pos;
|
new_logical_pos = pos + c->logical_pos;
|
||||||
} else if (whence == SEEK_SET){
|
} else if (whence == SEEK_SET){
|
||||||
new_logical_pos = pos;
|
new_logical_pos = pos;
|
||||||
|
Reference in New Issue
Block a user