summaryrefslogtreecommitdiff
path: root/libavformat/epafdec.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-03-15 17:13:52 +0000
committerPaul B Mahol <onemda@gmail.com>2013-03-15 18:10:28 +0000
commita9b424879f101b56cf75c2db889477bba188fe20 (patch)
treea9e67fe3fba92feaca7bdeb8122ebe2772f339ae /libavformat/epafdec.c
parent3d751b1ef6619b20631b17c880aa96f2dd3a11dd (diff)
lavc & lavf: replace deprecated av_log* functions
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/epafdec.c')
-rw-r--r--libavformat/epafdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/epafdec.c b/libavformat/epafdec.c
index ffb8b95ec4..c737892325 100644
--- a/libavformat/epafdec.c
+++ b/libavformat/epafdec.c
@@ -77,7 +77,7 @@ static int epaf_read_header(AVFormatContext *s)
st->codec->codec_id = AV_CODEC_ID_PCM_S8;
break;
case 1:
- av_log_missing_feature(s, "24-bit Paris PCM format", 1);
+ avpriv_request_sample(s, "24-bit Paris PCM format");
default:
return AVERROR_INVALIDDATA;
}