[issue1586] libx264.c::encode_nals disregards buffer size

2010-11-12 Thread Carl Eugen Hoyos
Carl Eugen Hoyos added the comment: No information after months -> issue closed. -- status: open -> closed FFmpeg issue tracker

[issue1586] libx264.c::encode_nals disregards buffer size

2010-07-27 Thread Carl Eugen Hoyos
Carl Eugen Hoyos added the comment: Steps to reproduce, complete, uncut output and backtrace missing. -- status: new -> open substatus: new -> needs_more_info FFmpeg issue tracker _

[issue1586] libx264.c::encode_nals disregards buffer size

2009-12-04 Thread David Sveningsson
David Sveningsson added the comment: Sorry, what I meant was ofcourse "assert(out_size < buffer_size);". _ FFmpeg issue tracker _

[issue1586] libx264.c::encode_nals disregards buffer size

2009-12-04 Thread David Sveningsson
New submission from David Sveningsson : libx264.c::encode_nals assumes that the buffer is large enough to hold the data. The following code sometimes fires the assertion error: size_t buffer_size = FF_MIN_BUFFER_SIZE; [...] size_t out_size = avcodec_encode_video(c, buffer, buffer_size, src); ass