Browse Source

lavf/libquvi: fix error reporting.

tags/n2.0
Clément Bœsch 12 years ago
parent
commit
e66a10689b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/libquvi.c

+ 2
- 2
libavformat/libquvi.c View File

@@ -97,8 +97,8 @@ static int libquvi_read_header(AVFormatContext *s)
return 0;

quvi_fail:
av_log(s, AV_LOG_ERROR, "%s\n", quvi_strerror(&q, rc));
ret = rc;
av_log(s, AV_LOG_ERROR, "%s\n", quvi_strerror(q, rc));
ret = AVERROR_EXTERNAL;

end:
quvi_parse_close(&m);


Loading…
Cancel
Save