Is it possible to do completely lossless encoding in h264? By lossless, I mean that if I feed it a series of frames and encode them, and then if I extract all the frames from the encoded video, I will get the exact same frames as in the input, pixel by pixel, frame by frame. Is that actually possible? Take this example:

I generate a bunch of frames, then I encode the image sequence to an uncompressed AVI (with something like virtualdub), I then apply lossless h264 (the help files claim that setting --qp 0 makes lossless compression, but I am not sure if that means that there is no loss at any point of the process or that just the quantization is lossless). I can then extract the frames from the resulting h264 video with something like mplayer.

I tried with Handbrake first, but it turns out it doesn't support lossless encoding. I tried x264 but it crashes. It may be because my source AVI file is in RGB colorspace instead of YV12. I don't know how to feed a series of YV12 bitmaps and in what format to x264 anyway, so I cannot even try.

In summary what I want to know if that is there a way to go from

Series of lossless bitmaps (in any colorspace) -> some transformation -> h264 encode -> h264 decode -> some transformation -> the original series of lossless bitmaps

If there a way to achieve this?

EDIT: There is a VERY valid point about lossless H264 not making too much sense. I am well aware that there is no way I could tell (with just my eyes) the difference between and uncompressed clip and another compressed at a high rate in H264, but I don't think it is not without uses. For example, it may be useful for storing video for editing without taking huge amounts of space and not losing quality and spending too much encoding time every time the file is saved.

UPDATE 2: Now x264 doesn't crash. I can use as sources either avisynth or lossless yv12 lagarith (to avoid the colorspace compression warning). Howerver, even with --qp 0 and a rgb or yv12 source I still get some differences, minimal but present. This is troubling, because all the information I have found on lossless predictive coding (--qp 0) claims that the whole encoding should be lossless, but I am unable to verifiy this.

link|improve this question

2  
I never even knew h.264 defined a loss-less schema... – pst Jul 15 '11 at 1:47
1  
I don't believe you can do h.264 in a lossless mode. Why would you want to anyway? – Brad Jul 15 '11 at 1:52
What's wrong with being lossy? – Gnarly Jul 15 '11 at 2:04
Movie CG studios often send their productions (with shipping companies) on airplanes because it's cheaper and faster than sending it on the internet. When you hear stories like this suddenly a question like this makes perfect sense. And yes, there is lossless mode for h.264. – Karoly Horvath Jul 15 '11 at 23:44
feedback

4 Answers

up vote 1 down vote accepted

If you can't get lossless compression using a h.264 encoder and decoder, perhaps you could look into two alternatives:

(1) Rather than passing all the data in h.264 format, some people are experimenting with transmitting some of the data with a residual "side channel":

  • (h.264 file) -> h264 decode -> some transformation -> a lossy approximation of the original series of bitmaps
  • (compressed residual file) --> decoder -> a series of lossless residual bitmaps
  • For each pixel in each bitmap, approximate_pixel + residual_pixel = a pixel bit-for-bit equal to the original pixel.

(2) Use Dirac video compression format in "lossless" mode.

link|improve this answer
Yeah... actually I ended up doing something very similar to that (Option 1). I also tried using Lagarith codec, that is probably similar to option 2. My bad for not writing about it here. Thanks a lot for the answer though. – cloudraven Aug 27 '11 at 2:13
feedback

This isn't exactly an answer to your question, but rather a reason why being lossy can be better than lossless.

Here is a comparison of the same image but encoded differently with a lossy and lossless format.

PNG (lossless) 148 kB:

enter image description here

JPEG-8 (lossy) 36 kB:

enter image description here

JPEG-10 (lossy) 65 kB:

enter image description here

JPEG-12 (lossy) 122 kB:

enter image description here

Now open up both the PNG (lossless) image and the JPEG-10 (lossy) image in two new tabs in your web browser. Flip back and forth, you can see a faint difference but barely. My point is that you would never tell the difference in quality without looking at both of them at the same time and examining them closely. Lossless data compression is not worth it in most cases because lossy formats can give you the exact quality at a lower cost (file size).

link|improve this answer
1  
+1 For the details, but it might be a requirement that it is loss-less (for whatever reason). Also, a gradient image is hardly a fair test ;-) Compare with some fine font and distinct lines.. – pst Jul 15 '11 at 2:29
I know what you mean, but I think the detail can be seen well enough in the start orb and the task bar. – Gnarly Jul 15 '11 at 2:49
1  
lossy can be problematic for movie production. you cannot tell the difference between lossless and lossy with the human eye in unprocessed format. but try to add filters like brightness, levels and contrast to it and you'll start to notice the differences. – Karoly Horvath Jul 15 '11 at 23:36
but is it "truly" lossless? In the tests I have done even when using --qp 0 with x264, I get slightly different frames after decoding. Is there other setting I need to use other than enabling predictive lossless coding? – cloudraven Jul 16 '11 at 0:19
feedback

If x264 does lossless encoding but doesn't like your input format, then your best bet is to use ffmpeg to deal with the input file. Try starting with something like

ffmpeg -i input.avi -f yuv4mpegpipe -pix_fmt yuv420p -y /dev/stdout \
  | x264 $OPTIONS -o output.264 /dev/stdin

and adding options from there. YUV4MPEG is a lossless uncompressed format suitable for piping between different video tools; ffmpeg knows how to write it and x264 knows how to read it.

link|improve this answer
1  
Thanks! So far I haven't been able to get back to my exact original videos with x264 (now it likes my input format). There are always lingering (very very subtle) artifacts, so maybe ffmpeg can help me there. Will I lose color information from the original avi when converting to yuv420p? Even if that is the case, is there a way to extract individual frames from the yuv4mpeg uncompressed stream so that I can compare them with the frames in the x264 stream, or at least to decode the yuv4mpeg back from the x264 stream. If h264 can be truly lossless they should be identical. – cloudraven Jul 15 '11 at 22:58
2  
There's probably some minor loss of precision in the conversion from RGB to YUV, but I believe that's unavoidable as YUV is H.264's native colorspace. However, I forgot that YUV420P isn't actually a fully lossless pixel format -- it reduces the chroma information it stores somewhat. Try choosing other options from ffmpeg -pix_fmts and seeing if x264 will accept them. yuv444p would be a good start; it's YUV but with full chroma information per-pixel. – hobbs Jul 16 '11 at 0:43
That's what I thought. I tried doing the following to discard colorspace reduction: Encode video using lagarith (lossless yv12) so that I would have my images in a colorspace suitable for h264. I extracted all the frames from that video and kept a copy. I encoded the video with x264 --qp0 (no color conversion happened this time) and then I extracted the frames of the resulting video. They didn't match my backup. There shouldn't be a loss of info going from YV12 to RGB right? Am I doing something wrong? – cloudraven Jul 16 '11 at 0:55
feedback

I don't know your requirements for compression and decompression, but a general purpose archiver (like 7-zip with LZMA2) should be able to compress about as small or, in some cases, even significantly smaller than a lossless video codec. And it is much simpler and safer than a whole video processing chain. The downside is the much slower speed, and that you have to extract before seeing it. But for images, I think you should try it.

There is also lossless image formats, like .png.

For encoding lossless RGB with x264, you should use the command line version of x264 (you can't trust GUIs in this edge case, they will probably mess-up) r2020 or newer, with something like that:

x264 --qp 0 --preset fast --input-csp rgb --output-csp rgb --colormatrix GBR --output "the_lossless_output.mkv" "someinput.avs"

Any losses/differences between the input and output should be from some colour space conversion (either before encoding, or at playback), wrong settings or some header/meta-data that was lost. x264 don't supports RGBA, but RGB is ok. YUV 4:4:4 compression is more efficient, but you will lose some data in colour space conversion as your input is RGB. YV12/i420 is much smaller, and by far the most common colour space in video, but you have less chroma resolution.

More information on x264 settings: http://mewiki.project357.com/wiki/X264_Settings

Also, avoid lagarith. It uses x87 floating point... and there are better alternatives. http://codecs.multimedia.cx/?p=303 http://mod16.org/hurfdurf/?p=142

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.