Browse Source

lavc/roqvideodec: fix error message

Remove redundant reference to codec name, it is already mentioned in the
log header.
tags/n1.0
Stefano Sabatini 12 years ago
parent
commit
efa3d5af1e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/roqvideodec.c

+ 1
- 1
libavcodec/roqvideodec.c View File

@@ -192,7 +192,7 @@ static int roq_decode_frame(AVCodecContext *avctx,

s->current_frame->reference = 3;
if ((ret = avctx->reget_buffer(avctx, s->current_frame)) < 0) {
av_log(avctx, AV_LOG_ERROR, " RoQ: get_buffer() failed\n");
av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
return ret;
}



Loading…
Cancel
Save