ericmckean / webm

Automatically exported from code.google.com/p/webm
0 stars 0 forks source link

--tile-rows > 0 causes a crash #657

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
v1.2.0-4943-g152181b

Source is 720p, but I don't think this much matters. Also occurs with 
cpu-used=2.

$ ./vpxenc m-5s.y4m --codec=vp9 -p 2 --tile-rows=2 --limit=10 --cpu-used=1 -o 
m.webm
Pass 1/2 frame   10/11      1672B    1337b/f   40324b/s  209835 us (47.66 fps)
Pass 2/2 frame   10/0          0B  214700 us 46.58 fps [ETA  unknown] vpxenc: 
../vp9/encoder/vp9_bitstream.c:1249: encode_tiles: Assertion 
`tok[tile_row][tile_col] == tok_end' failed.
Aborted (core dumped)

$ ./vpxenc m-5s.y4m --codec=vp9 -p 2 --tile-rows=1 --limit=10 --cpu-used=1 -o 
m.webm
Pass 1/2 frame   10/11      1672B    1337b/f   40324b/s  203914 us (49.04 fps)
Pass 2/2 frame   10/0          0B  208751 us 47.90 fps [ETA  unknown] vpxenc: 
../vp9/encoder/vp9_bitstream.c:591: write_modes_b: Assertion `*tok < tok_end' 
failed.
Aborted (core dumped)

Original issue reported on code.google.com by jz...@google.com on 3 Nov 2013 at 9:19

GoogleCodeExporter commented 9 years ago

Original comment by ya...@google.com on 7 Nov 2013 at 10:45

GoogleCodeExporter commented 9 years ago
wanted to test on m-5s.y4m. could you please let me know where to get it? thanks

Original comment by jingn...@google.com on 9 Nov 2013 at 5:32

GoogleCodeExporter commented 9 years ago
The issue was triggered by the fact that row tile was ignored in bit-stream 
writing and decoding. It is resolved by:

https://gerrit.chromium.org/gerrit/#/c/67781/
https://gerrit.chromium.org/gerrit/#/c/67776/

Original comment by jingn...@google.com on 11 Nov 2013 at 5:32