summaryrefslogtreecommitdiff
path: root/libavformat/lvfdec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/lvfdec.c')
-rw-r--r--libavformat/lvfdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/lvfdec.c b/libavformat/lvfdec.c
index 08a089135e..f8dda58571 100644
--- a/libavformat/lvfdec.c
+++ b/libavformat/lvfdec.c
@@ -41,7 +41,7 @@ static int lvf_read_header(AVFormatContext *s)
if (!nb_streams)
return AVERROR_INVALIDDATA;
if (nb_streams > 2) {
- av_log_ask_for_sample(s, "too many streams\n");
+ avpriv_request_sample(s, "%d streams", nb_streams);
return AVERROR_PATCHWELCOME;
}
@@ -87,7 +87,7 @@ static int lvf_read_header(AVFormatContext *s)
avio_seek(s->pb, 2048 + 8, SEEK_SET);
return 0;
default:
- av_log_ask_for_sample(s, "unknown id\n");
+ avpriv_request_sample(s, "id %d", id);
return AVERROR_PATCHWELCOME;
}