]> git.sesse.net Git - ffmpeg/blobdiff - doc/developer.texi
avformat/mov: Fix memory leak when reading DDTS box.
[ffmpeg] / doc / developer.texi
index dbe1f5421f554115eb8c327d153394c6cb26f2a8..98540c8f992caf19a143d6e01da2b36aabf6af68 100644 (file)
@@ -131,6 +131,11 @@ designated struct initializers (@samp{struct s x = @{ .i = 17 @};});
 
 @item
 compound literals (@samp{x = (struct s) @{ 17, 23 @};}).
+
+@item
+Implementation defined behavior for signed integers is assumed to match the
+expected behavior for two's complement. Non representable values in integer
+casts are binary truncated. Shift right of signed values uses sign extension.
 @end itemize
 
 These features are supported by all compilers we care about, so we will not