如何从ffmpeg remuxing解释这个C语言代码

时间:2017-04-20 01:32:17

标签: c ffmpeg

有人可以帮助我这段代码的含义是什么?这是来自ffmpeg remuxing code的代码。

static void log_packet(const AVFormatContext *fmt_ctx, const AVPacket *pkt, const char *tag, int hours, int mins, int secs, int us, int *time )
{
    AVRational *time_base = &fmt_ctx->streams[pkt->stream_index]->time_base;
    total = total + pkt->duration;
  //  printf( "%d:%d:%d.%d \n", hours,  mins,  secs, us );
    *time = av_q2d(*time_base) * pkt->pts ;
}

我是C语言的新手。谢谢!

0 个答案:

没有答案