diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-10-27 21:38:40 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-10-28 02:29:51 +0100 |
commit | 232b8a5a438ae1eb9efc7e535d9c1809ac164e5c (patch) | |
tree | accc1fad54337640ed6f29f7e8011158c6864b6e | |
parent | eaa6bade377a33a83e0e0dd0ef2106508efd6790 (diff) | |
download | ffmpeg-232b8a5a438ae1eb9efc7e535d9c1809ac164e5c.tar.gz |
avformat/img2enc: re enable atomic writes with split planes
They work now after fixing the implementation
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/img2enc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavformat/img2enc.c b/libavformat/img2enc.c index 8a8e6e1173..cd4a9a86a7 100644 --- a/libavformat/img2enc.c +++ b/libavformat/img2enc.c @@ -75,10 +75,6 @@ static int write_header(AVFormatContext *s) img->use_rename = proto && !strcmp(proto, "file"); - //The current atomic rename implementation is not compatible with split planes - if (img->split_planes) - img->use_rename = 0; - return 0; } |