Commit ccecbbdb authored by ods15's avatar ods15

Original Commit: r32 | ods15 | 2006-09-22 18:37:50 +0300 (Fri, 22 Sep 2006) | 2 lines

add framing bit

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6441 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 42682d79
...@@ -546,6 +546,8 @@ static int put_main_header(venc_context_t * venc, uint8_t ** out) { ...@@ -546,6 +546,8 @@ static int put_main_header(venc_context_t * venc, uint8_t ** out) {
put_bits(&pb, 8, venc->modes[i].mapping); put_bits(&pb, 8, venc->modes[i].mapping);
} }
put_bits(&pb, 1, 1); // framing
flush_put_bits(&pb); flush_put_bits(&pb);
hlens[2] = (put_bits_count(&pb) + 7) / 8; hlens[2] = (put_bits_count(&pb) + 7) / 8;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment