Browse Source

avcodec/libxvid: improve return codes

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
e881a96632
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/libxvid.c

+ 2
- 2
libavcodec/libxvid.c View File

@@ -695,7 +695,7 @@ static int xvid_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
/* Initialize input image fields */
if( avctx->pix_fmt != AV_PIX_FMT_YUV420P ) {
av_log(avctx, AV_LOG_ERROR, "Xvid: Color spaces other than 420p not supported\n");
return -1;
return AVERROR(EINVAL);
}

xvid_enc_frame.input.csp = XVID_CSP_PLANAR; /* YUV420P */
@@ -782,7 +782,7 @@ static int xvid_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
if (!xerr)
return 0;
av_log(avctx, AV_LOG_ERROR, "Xvid: Encoding Error Occurred: %i\n", xerr);
return -1;
return AVERROR_EXTERNAL;
}
}



Loading…
Cancel
Save