summaryrefslogtreecommitdiff
path: root/libavformat/dashenc.c
diff options
context:
space:
mode:
authorChris Miceli <chris@miceli.net.au>2020-08-31 14:16:39 +1000
committerMichael Niedermayer <michael@niedermayer.cc>2020-08-31 23:43:06 +0200
commit41366522899f209d116d663ebedf00e3282e7bb2 (patch)
treebf893fb1ac1c1c17275a7cd64f0fb04282a3fe80 /libavformat/dashenc.c
parent303d252a4b4c104685dc46152c26abaf7ff2ce60 (diff)
libavformat/dashenc: Reduce confusion in par error message
In ticket #8754 there is discourse surrounding the error message which is printed upon a mismatched aspect ratio in derived encodings. This should make it clearer to the user as to the issues which they are experiencing. Reviewed-by: "Jeyapal, Karthick" <kjeyapal@akamai.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/dashenc.c')
-rw-r--r--libavformat/dashenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index dc3306a56a..2d757b3a87 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -1686,7 +1686,7 @@ static int dash_init(AVFormatContext *s)
1024 * 1024);
if (as->par.num && av_cmp_q(par, as->par)) {
- av_log(s, AV_LOG_ERROR, "Conflicting stream par values in Adaptation Set %d\n", os->as_idx);
+ av_log(s, AV_LOG_ERROR, "Conflicting stream aspect ratios values in Adaptation Set %d. Please ensure all adaptation sets have the same aspect ratio\n", os->as_idx);
return AVERROR(EINVAL);
}
as->par = par;