mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
vble: remove vble_error_close
It does not make much sense to factor the error handling to its own av_always_inline function. Fixes "format not a string literal and no format arguments" warning in the av_log.
This commit is contained in:
parent
c433a3f9a5
commit
29ae0565d9
@ -196,14 +196,6 @@ static av_cold int vble_decode_close(AVCodecContext *avctx)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static av_always_inline int vble_error_close(AVCodecContext *avctx,
|
|
||||||
const char *message)
|
|
||||||
{
|
|
||||||
av_log(avctx, AV_LOG_ERROR, message);
|
|
||||||
vble_decode_close(avctx);
|
|
||||||
return AVERROR(ENOMEM);
|
|
||||||
}
|
|
||||||
|
|
||||||
static av_cold int vble_decode_init(AVCodecContext *avctx)
|
static av_cold int vble_decode_init(AVCodecContext *avctx)
|
||||||
{
|
{
|
||||||
VBLEContext *ctx = avctx->priv_data;
|
VBLEContext *ctx = avctx->priv_data;
|
||||||
@ -216,21 +208,29 @@ static av_cold int vble_decode_init(AVCodecContext *avctx)
|
|||||||
avctx->bits_per_raw_sample = 8;
|
avctx->bits_per_raw_sample = 8;
|
||||||
avctx->coded_frame = avcodec_alloc_frame();
|
avctx->coded_frame = avcodec_alloc_frame();
|
||||||
|
|
||||||
if (!avctx->coded_frame)
|
if (!avctx->coded_frame) {
|
||||||
return vble_error_close(avctx, "Could not allocate frame.\n");
|
av_log(avctx, AV_LOG_ERROR, "Could not allocate frame.\n");
|
||||||
|
return AVERROR(ENOMEM);
|
||||||
|
}
|
||||||
|
|
||||||
ctx->size = avpicture_get_size(avctx->pix_fmt,
|
ctx->size = avpicture_get_size(avctx->pix_fmt,
|
||||||
avctx->width, avctx->height);
|
avctx->width, avctx->height);
|
||||||
|
|
||||||
ctx->len = av_malloc(ctx->size * sizeof(*ctx->len));
|
ctx->len = av_malloc(ctx->size * sizeof(*ctx->len));
|
||||||
|
|
||||||
if (!ctx->len)
|
if (!ctx->len) {
|
||||||
return vble_error_close(avctx, "Could not allocate lengths buffer.\n");
|
av_log(avctx, AV_LOG_ERROR, "Could not allocate lengths buffer.\n");
|
||||||
|
vble_decode_close(avctx);
|
||||||
|
return AVERROR(ENOMEM);
|
||||||
|
}
|
||||||
|
|
||||||
ctx->val = av_malloc(ctx->size * sizeof(*ctx->val));
|
ctx->val = av_malloc(ctx->size * sizeof(*ctx->val));
|
||||||
|
|
||||||
if (!ctx->val)
|
if (!ctx->val) {
|
||||||
return vble_error_close(avctx, "Could not allocate values buffer.\n");
|
av_log(avctx, AV_LOG_ERROR, "Could not allocate values buffer.\n");
|
||||||
|
vble_decode_close(avctx);
|
||||||
|
return AVERROR(ENOMEM);
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user