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/mov.c | |
parent | 63d744e2be39466e3a734c2987cd713e0bac101e (diff) | |
download | ffmpeg-1ecdf8912b9ced51b3267cdcdce5e394d0a3bf8e.tar.gz |
avformat: av_log_ask_for_sample() ---> avpriv_request_sample()
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 45587cd9a3..edd6f8eafd 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -718,7 +718,7 @@ static int mov_read_mdhd(MOVContext *c, AVIOContext *pb, MOVAtom atom) version = avio_r8(pb); if (version > 1) { - av_log_ask_for_sample(c->fc, "unsupported version %d\n", version); + avpriv_request_sample(c->fc, "Version %d", version); return AVERROR_PATCHWELCOME; } avio_rb24(pb); /* flags */ |