Commit db63db39 authored by Marton Balint's avatar Marton Balint

avformat/mpegtsenc: move around setting m2ts_mode

Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
parent 565dc3e4
...@@ -850,6 +850,14 @@ static int mpegts_init(AVFormatContext *s) ...@@ -850,6 +850,14 @@ static int mpegts_init(AVFormatContext *s)
int *pids; int *pids;
int ret; int ret;
if (ts->m2ts_mode == -1) {
if (av_match_ext(s->url, "m2ts")) {
ts->m2ts_mode = 1;
} else {
ts->m2ts_mode = 0;
}
}
if (s->max_delay < 0) /* Not set by the caller */ if (s->max_delay < 0) /* Not set by the caller */
s->max_delay = 0; s->max_delay = 0;
...@@ -1002,14 +1010,6 @@ static int mpegts_init(AVFormatContext *s) ...@@ -1002,14 +1010,6 @@ static int mpegts_init(AVFormatContext *s)
av_rescale(ts->sdt_period, 1000, PCR_TIME_BASE), av_rescale(ts->sdt_period, 1000, PCR_TIME_BASE),
av_rescale(ts->pat_period, 1000, PCR_TIME_BASE)); av_rescale(ts->pat_period, 1000, PCR_TIME_BASE));
if (ts->m2ts_mode == -1) {
if (av_match_ext(s->url, "m2ts")) {
ts->m2ts_mode = 1;
} else {
ts->m2ts_mode = 0;
}
}
return 0; return 0;
fail: fail:
......
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