Commit 1572484f authored by Anton Khirnov's avatar Anton Khirnov

bktr: don't error when AVFormatParameters.time_base isn't set.

There's a private option for it now.
parent 42abb9a8
...@@ -251,11 +251,6 @@ static int grab_read_header(AVFormatContext *s1, AVFormatParameters *ap) ...@@ -251,11 +251,6 @@ static int grab_read_header(AVFormatContext *s1, AVFormatParameters *ap)
AVRational fps; AVRational fps;
int ret = 0; int ret = 0;
if (ap->time_base.den <= 0) {
ret = AVERROR(EINVAL);
goto out;
}
#if FF_API_FORMAT_PARAMETERS #if FF_API_FORMAT_PARAMETERS
if (ap->standard) { if (ap->standard) {
if (!strcasecmp(ap->standard, "pal")) if (!strcasecmp(ap->standard, "pal"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment