Browse Source

avcodec/snow: replace unspecific error code

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
4cb7cd4c84
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/snow.c

+ 1
- 1
libavcodec/snow.c View File

@@ -679,7 +679,7 @@ int ff_snow_frame_start(SnowContext *s){
s->ref_frames= i;
if(s->ref_frames==0){
av_log(s->avctx,AV_LOG_ERROR, "No reference frames\n");
return -1;
return AVERROR_INVALIDDATA;
}
}
if ((ret = ff_snow_get_buffer(s, s->current_picture)) < 0)


Loading…
Cancel
Save