|
|
@ -761,7 +761,10 @@ static int omx_encode_frame(AVCodecContext *avctx, AVPacket *pkt, |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
// If not, we need to allocate a new buffer with the right
|
|
|
|
// If not, we need to allocate a new buffer with the right
|
|
|
|
// size and copy the input frame into it.
|
|
|
|
// size and copy the input frame into it.
|
|
|
|
uint8_t *buf = av_malloc(av_image_get_buffer_size(avctx->pix_fmt, s->stride, s->plane_size, 1)); |
|
|
|
uint8_t *buf = NULL; |
|
|
|
|
|
|
|
int image_buffer_size = av_image_get_buffer_size(avctx->pix_fmt, s->stride, s->plane_size, 1); |
|
|
|
|
|
|
|
if (image_buffer_size >= 0) |
|
|
|
|
|
|
|
buf = av_malloc(image_buffer_size); |
|
|
|
if (!buf) { |
|
|
|
if (!buf) { |
|
|
|
// Return the buffer to the queue so it's not lost
|
|
|
|
// Return the buffer to the queue so it's not lost
|
|
|
|
append_buffer(&s->input_mutex, &s->input_cond, &s->num_free_in_buffers, s->free_in_buffers, buffer); |
|
|
|
append_buffer(&s->input_mutex, &s->input_cond, &s->num_free_in_buffers, s->free_in_buffers, buffer); |
|
|
|