mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
lavf/file: cosmetic: Remove superfluous ternary operator
This commit is contained in:
parent
e1613476ff
commit
585bd4922a
@ -91,7 +91,7 @@ static int file_open(URLContext *h, const char *filename, int flags)
|
||||
return AVERROR(errno);
|
||||
h->priv_data = (void *) (intptr_t) fd;
|
||||
|
||||
h->is_streamed = (0==fstat(fd, &st) && S_ISFIFO(st.st_mode)) ? 1 : 0;
|
||||
h->is_streamed = 0==fstat(fd, &st) && S_ISFIFO(st.st_mode);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user