mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
movenc: remove pointless loop around BITEXACT test
This commit is contained in:
parent
7b588bb691
commit
d9432789bd
@ -2041,13 +2041,11 @@ static int mov_write_udta_tag(AVIOContext *pb, MOVMuxContext *mov,
|
||||
AVFormatContext *s)
|
||||
{
|
||||
AVIOContext *pb_buf;
|
||||
int i, ret, size;
|
||||
int ret, size;
|
||||
uint8_t *buf;
|
||||
|
||||
for (i = 0; i < s->nb_streams; i++)
|
||||
if (s->flags & AVFMT_FLAG_BITEXACT) {
|
||||
return 0;
|
||||
}
|
||||
if (s->flags & AVFMT_FLAG_BITEXACT)
|
||||
return 0;
|
||||
|
||||
ret = avio_open_dyn_buf(&pb_buf);
|
||||
if (ret < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user