Skip to content

Commit

Permalink
lavf/dashdec: add 3GPP TS26.247 probe in dash demuxer
Browse files Browse the repository at this point in the history
Enabled the 3GP-DASH Release-10/Relase-11(3GPP TS26.247) profile
to dash demuxer probe.

Signed-off-by: Jun Zhao <[email protected]>
  • Loading branch information
mypopydev committed Mar 5, 2020
1 parent ab316a1 commit e27a35e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libavformat/dashdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -2361,7 +2361,8 @@ static int dash_probe(const AVProbeData *p)
if (av_stristr(p->buf, "dash:profile:isoff-on-demand:2011") ||
av_stristr(p->buf, "dash:profile:isoff-live:2011") ||
av_stristr(p->buf, "dash:profile:isoff-live:2012") ||
av_stristr(p->buf, "dash:profile:isoff-main:2011")) {
av_stristr(p->buf, "dash:profile:isoff-main:2011") ||
av_stristr(p->buf, "3GPP:PSS:profile:DASH1")) {
return AVPROBE_SCORE_MAX;
}
if (av_stristr(p->buf, "dash:profile")) {
Expand Down

0 comments on commit e27a35e

Please sign in to comment.