Commit 191203aa authored by hwren's avatar hwren Committed by Michael Niedermayer

lavc/libxavs2.c: fix code style - spaces

Signed-off-by: 's avatarhwren <hwrenx@126.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 6721cd94
...@@ -59,7 +59,7 @@ typedef struct XAVS2EContext { ...@@ -59,7 +59,7 @@ typedef struct XAVS2EContext {
static av_cold int xavs2_init(AVCodecContext *avctx) static av_cold int xavs2_init(AVCodecContext *avctx)
{ {
XAVS2EContext *cae= avctx->priv_data; XAVS2EContext *cae = avctx->priv_data;
int bit_depth, code; int bit_depth, code;
bit_depth = avctx->pix_fmt == AV_PIX_FMT_YUV420P ? 8 : 10; bit_depth = avctx->pix_fmt == AV_PIX_FMT_YUV420P ? 8 : 10;
...@@ -115,15 +115,13 @@ static av_cold int xavs2_init(AVCodecContext *avctx) ...@@ -115,15 +115,13 @@ static av_cold int xavs2_init(AVCodecContext *avctx)
xavs2_opt_set2("InitialQP", "%d", cae->qp); xavs2_opt_set2("InitialQP", "%d", cae->qp);
} }
ff_mpeg12_find_best_frame_rate(avctx->framerate, &code, NULL, NULL, 0); ff_mpeg12_find_best_frame_rate(avctx->framerate, &code, NULL, NULL, 0);
xavs2_opt_set2("FrameRate", "%d", code); xavs2_opt_set2("FrameRate", "%d", code);
cae->encoder = cae->api->encoder_create(cae->param); cae->encoder = cae->api->encoder_create(cae->param);
if (!cae->encoder) { if (!cae->encoder) {
av_log(avctx,AV_LOG_ERROR, "Can not create encoder. Null pointer returned\n"); av_log(avctx, AV_LOG_ERROR, "Can not create encoder. Null pointer returned\n");
return AVERROR(EINVAL); return AVERROR(EINVAL);
} }
...@@ -182,7 +180,7 @@ static int xavs2_encode_frame(AVCodecContext *avctx, AVPacket *pkt, ...@@ -182,7 +180,7 @@ static int xavs2_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
/* create the XAVS2 video encoder */ /* create the XAVS2 video encoder */
/* read frame data and send to the XAVS2 video encoder */ /* read frame data and send to the XAVS2 video encoder */
if (cae->api->encoder_get_buffer(cae->encoder, &pic) < 0) { if (cae->api->encoder_get_buffer(cae->encoder, &pic) < 0) {
av_log(avctx,AV_LOG_ERROR, "failed to get frame buffer\n"); av_log(avctx, AV_LOG_ERROR, "failed to get frame buffer\n");
return AVERROR_EXTERNAL; return AVERROR_EXTERNAL;
} }
if (frame) { if (frame) {
...@@ -221,9 +219,8 @@ static int xavs2_encode_frame(AVCodecContext *avctx, AVPacket *pkt, ...@@ -221,9 +219,8 @@ static int xavs2_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
cae->api->encoder_encode(cae->encoder, NULL, &cae->packet); cae->api->encoder_encode(cae->encoder, NULL, &cae->packet);
} }
if ((cae->packet.len) && (cae->packet.state != XAVS2_STATE_FLUSH_END)){ if ((cae->packet.len) && (cae->packet.state != XAVS2_STATE_FLUSH_END)) {
if (av_new_packet(pkt, cae->packet.len) < 0) {
if (av_new_packet(pkt, cae->packet.len) < 0){
av_log(avctx, AV_LOG_ERROR, "packet alloc failed\n"); av_log(avctx, AV_LOG_ERROR, "packet alloc failed\n");
cae->api->encoder_packet_unref(cae->encoder, &cae->packet); cae->api->encoder_packet_unref(cae->encoder, &cae->packet);
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment