ffmpeg # start_time in AVFormatContext

static int open_input_file(OptionsContext *o, const char *filename)
{
    InputFile *f;
    AVFormatContext *ic;
...
    /* get default parameters from command line */
    ic = avformat_alloc_context();
    if (!ic) {
        print_error(filename, AVERROR(ENOMEM));
        exit_program(1);
    }
...
if (find_stream_info) {
        ...
        /* If not enough info to get the stream parameters, we decode the
           first frames to get it. (used in mpeg case for example) */
        ret = avformat_find_stream_info(ic, opts);
        ...
           }

...
    // o->start_time是命令行中"-ss"的時(shí)間打瘪,單位是AV_TIME_BASE
    timestamp = (o->start_time == AV_NOPTS_VALUE) ? 0 : o->start_time;
    /* add the stream start time */
    if (!o->seek_timestamp && ic->start_time != AV_NOPTS_VALUE)
        timestamp += ic->start_time; // 這里的ic->start_time 是什么呢?

...
/* if seeking requested, we execute it */
    if (o->start_time != AV_NOPTS_VALUE) {
        int64_t seek_timestamp = timestamp; // 最終要seek的時(shí)間點(diǎn) 單位AV_TIME_BASE

       ...
                // seek到目標(biāo)時(shí)間點(diǎn)
                ret = avformat_seek_file(ic, -1, INT64_MIN, seek_timestamp, seek_timestamp, 0);
        if (ret < 0) {
            av_log(NULL, AV_LOG_WARNING, "%s: could not seek to position %0.3f\n",
                   filename, (double)timestamp / AV_TIME_BASE);
        }
    }

}

AVFormatContext中的start_time定義如下:

typedef struct AVFormatContext {
...
    /**
     * Position of the first frame of the component, in
     * AV_TIME_BASE fractional seconds. NEVER set this value directly:
     * It is deduced from the AVStream values.
     *
     * Demuxing only, set by libavformat.
     */
    int64_t start_time;
...
}

可見這個(gè)是只在解封裝的時(shí)候用到,是第一幀的時(shí)間位置悼枢。
其實(shí)是該文件所有流中犀概,起始時(shí)間戳最小的那個(gè)。
它是如何獲取的呢?

1

/**
 * Estimate the stream timings from the one of each components.
 *
 * Also computes the global bitrate if possible.
 */
static void update_stream_timings(AVFormatContext *ic)
{
    int64_t start_time, start_time1, start_time_text, end_time, end_time1, end_time_text;
...
    start_time = INT64_MAX;
    start_time_text = INT64_MAX;
...
for (i = 0; i < ic->nb_streams; i++) {
        AVStream *st = ic->streams[i];
        int is_text = st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE ||
                      st->codecpar->codec_type == AVMEDIA_TYPE_DATA;
        if (st->start_time != AV_NOPTS_VALUE && st->time_base.den) {
            start_time1 = av_rescale_q(st->start_time, st->time_base,
                                       AV_TIME_BASE_Q);
            if (is_text)
                start_time_text = FFMIN(start_time_text, start_time1); // 取小值
            else
                start_time = FFMIN(start_time, start_time1); // 取小值
           ...
          }
      } // end of for 

// 比較
    if (start_time == INT64_MAX || (start_time > start_time_text && start_time - (uint64_t)start_time_text < AV_TIME_BASE))
        start_time = start_time_text;
    else if (start_time > start_time_text)
        av_log(ic, AV_LOG_VERBOSE, "Ignoring outlier non primary stream starttime %f\n", start_time_text / (float)AV_TIME_BASE);

...
    if (start_time != INT64_MAX) {
        ic->start_time = start_time; // 真正賦值的地方
...
      }
...
}

2
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末挂滓,一起剝皮案震驚了整個(gè)濱河市苦银,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌赶站,老刑警劉巖幔虏,帶你破解...
    沈念sama閱讀 206,602評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異贝椿,居然都是意外死亡想括,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,442評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門烙博,熙熙樓的掌柜王于貴愁眉苦臉地迎上來瑟蜈,“玉大人烟逊,你說我怎么就攤上這事∑谈” “怎么了宪躯?”我有些...
    開封第一講書人閱讀 152,878評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長位迂。 經(jīng)常有香客問我访雪,道長,這世上最難降的妖魔是什么囤官? 我笑而不...
    開封第一講書人閱讀 55,306評(píng)論 1 279
  • 正文 為了忘掉前任冬阳,我火速辦了婚禮,結(jié)果婚禮上党饮,老公的妹妹穿的比我還像新娘肝陪。我一直安慰自己,他們只是感情好刑顺,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,330評(píng)論 5 373
  • 文/花漫 我一把揭開白布氯窍。 她就那樣靜靜地躺著,像睡著了一般蹲堂。 火紅的嫁衣襯著肌膚如雪狼讨。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,071評(píng)論 1 285
  • 那天柒竞,我揣著相機(jī)與錄音政供,去河邊找鬼。 笑死朽基,一個(gè)胖子當(dāng)著我的面吹牛布隔,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播稼虎,決...
    沈念sama閱讀 38,382評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼衅檀,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了霎俩?” 一聲冷哼從身側(cè)響起哀军,我...
    開封第一講書人閱讀 37,006評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎打却,沒想到半個(gè)月后杉适,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,512評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡学密,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,965評(píng)論 2 325
  • 正文 我和宋清朗相戀三年淘衙,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片腻暮。...
    茶點(diǎn)故事閱讀 38,094評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡彤守,死狀恐怖毯侦,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情具垫,我是刑警寧澤侈离,帶...
    沈念sama閱讀 33,732評(píng)論 4 323
  • 正文 年R本政府宣布,位于F島的核電站筝蚕,受9級(jí)特大地震影響卦碾,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜起宽,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,283評(píng)論 3 307
  • 文/蒙蒙 一洲胖、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧坯沪,春花似錦绿映、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,286評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至藻糖,卻和暖如春淹冰,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背巨柒。 一陣腳步聲響...
    開封第一講書人閱讀 31,512評(píng)論 1 262
  • 我被黑心中介騙來泰國打工樱拴, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人洋满。 一個(gè)月前我還...
    沈念sama閱讀 45,536評(píng)論 2 354
  • 正文 我出身青樓疹鳄,卻偏偏與公主長得像,于是被迫代替她去往敵國和親芦岂。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,828評(píng)論 2 345