On Tue, Apr 16, 2013 at 03:19:32PM +0200, Anton Khirnov wrote:
> --- a/libavcodec/rv10.c
> +++ b/libavcodec/rv10.c
> @@ -258,13 +258,13 @@ static int rv10_decode_picture_header(MpegEncContext *s)
>  
>      if (pb_frame) {
>          av_log(s->avctx, AV_LOG_ERROR, "pb frame not supported\n");
> -        return -1;
> +        return AVERROR_PATCHWELCOME;

avpriv_log_missing_feature or avpriv_request_sample

> @@ -311,23 +311,23 @@ static int rv20_decode_picture_header(RVDecContext *rv)
>  
>      if (s->last_picture_ptr == NULL && s->pict_type == AV_PICTURE_TYPE_B) {
> -        av_log(s->avctx, AV_LOG_ERROR, "early B pix\n");
> +        av_log(s->avctx, AV_LOG_ERROR, "early B frame\n");

B-frame

Otherwise LGTM.

Diego
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to