Opened 13 years ago
Closed 13 years ago
#697 closed defect (fixed)
Some H.264 cannot decoded
Reported by: | K.Y.H | Owned by: | |
---|---|---|---|
Priority: | important | Component: | avcodec |
Version: | git-master | Keywords: | h264 regression |
Cc: | Anatoly | Blocked By: | |
Blocking: | Reproduced by developer: | yes | |
Analyzed by developer: | no |
Description (last modified by )
http://www.gokuai.com/f/Ap04i705z8902L84
This file cannot decoded.
This problem can fixing by...
h264_ps.c's line 582..
if(bits_left > 0 && more_rbsp_data_in_pps(h, pps)){ -> if(bits_left && (bits_left > 8 || show_bits(&s->gb, bits_left) != 1 << (bits_left - 1))) {
Attachments (1)
Change History (3)
by , 13 years ago
Attachment: | patchticket697.diff added |
---|
comment:1 by , 13 years ago
Cc: | added |
---|---|
Description: | modified (diff) |
Keywords: | regression added |
Reproduced by developer: | set |
Status: | new → open |
comment:2 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | open → closed |
Fixed localy, will push soon
Thanks
Note:
See TracTickets
for help on using tickets.
Your patch breaks the sample from ticket #685.
For future bugreports:
Please always add a command line (ffmpeg if possible) that allows to reproduce the problem, and please add complete, uncut console output for that command.
Possibly a regression since a7cfef29.