Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
180 views

diff/patch for images

I'm writing a project where I need to transfer a set of similar images over the net. To speed things up, I thought about doing what most movie codecs do. having keyframes and then just send the ...
4
votes
3answers
567 views

binary diff library for Java

There are several questions about text-diff libraries for Java on SO, but none about binary diff. So here I go: I'm looking for a binary diff library, implemented in Java. I found javaxdelta and GNU ...
4
votes
1answer
494 views

Binary diff algorithm for commercial software

I'm working on application sending changed files to other computers. Currently a changed file is sent completely even if the change is minor. I'm looking for a library (C,C++,Java) that would allow me ...
4
votes
5answers
374 views

Abuse of version control

Is version control suited for a project where content is essentially binary data files ? I am thinking about package that weight something like 10 giga, with a lot of BMP and TGA files. Can ...