[FFmpeg-cvslog] rsodec: Use avpriv_report_missing_feature() where appropriate
Diego Biurrun
git at videolan.org
Thu Mar 14 13:03:54 CET 2013
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Sat Mar 9 23:15:41 2013 +0100| [1ae07959ab39a96eee6496b418f377f9085ce4a5] | committer: Diego Biurrun
rsodec: Use avpriv_report_missing_feature() where appropriate
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1ae07959ab39a96eee6496b418f377f9085ce4a5
---
libavformat/rsodec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/rsodec.c b/libavformat/rsodec.c
index 1e1b7d9..1612572 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;
}
More information about the ffmpeg-cvslog
mailing list