diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-25 23:54:28 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-03-13 20:42:21 +0100 |
commit | 1ecdf8912b9ced51b3267cdcdce5e394d0a3bf8e (patch) | |
tree | dde426a2250d3b95a4f2d8560272ca6687fbd55b /libavformat/mtv.c | |
parent | 63d744e2be39466e3a734c2987cd713e0bac101e (diff) | |
download | ffmpeg-1ecdf8912b9ced51b3267cdcdce5e394d0a3bf8e.tar.gz |
avformat: av_log_ask_for_sample() ---> avpriv_request_sample()
Diffstat (limited to 'libavformat/mtv.c')
-rw-r--r-- | libavformat/mtv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mtv.c b/libavformat/mtv.c index 1566faa086..3c2ae1f56d 100644 --- a/libavformat/mtv.c +++ b/libavformat/mtv.c @@ -108,7 +108,7 @@ static int mtv_read_header(AVFormatContext *s) audio_subsegments = avio_rl16(pb); if (audio_subsegments == 0) { - av_log_ask_for_sample(s, "MTV files without audio are not supported\n"); + avpriv_request_sample(s, "MTV files without audio"); return AVERROR_PATCHWELCOME; } |