diff options
author | Diego Biurrun | 2013-03-09 23:15:41 +0100 |
---|---|---|
committer | Diego Biurrun | 2013-03-13 21:20:12 +0100 |
commit | 1ae07959ab39a96eee6496b418f377f9085ce4a5 (patch) | |
tree | fc652909f6038002d9cebcdea6973f31715843b2 | |
parent | 1ecdf8912b9ced51b3267cdcdce5e394d0a3bf8e (diff) |
rsodec: Use avpriv_report_missing_feature() where appropriate
-rw-r--r-- | libavformat/rsodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rsodec.c b/libavformat/rsodec.c index 1e1b7d977d..1612572b56 100644 --- a/libavformat/rsodec.c +++ b/libavformat/rsodec.c @@ -43,7 +43,7 @@ static int rso_read_header(AVFormatContext *s) codec = ff_codec_get_id(ff_codec_rso_tags, id); if (codec == AV_CODEC_ID_ADPCM_IMA_WAV) { - av_log(s, AV_LOG_ERROR, "ADPCM in RSO not implemented\n"); + avpriv_report_missing_feature(s, "ADPCM in RSO"); return AVERROR_PATCHWELCOME; } |