最新版ffmpeg源碼分析

 最新版ffmpeg源碼分析一:框架windows

(ffmpeg v0.9)數組

框架
最新版的ffmpeg中發現了一個新的東西:avconv,並且ffmpeg.c與avconv.c一個模樣,一研究才發現是libav下把ffmpeg更名爲avconv了.網絡

到底libav與ffmpeg如今是什麼個關係?我也搞得希裏糊塗的,先無論它了.app

ffmpeg的主要功能是音視頻的轉換和處理.其功能之強大已經到了匪夷所思的地步(有點替它吹了).它的主要特色是能作到把多個輸入文件中的任意幾個流從新組合到輸出文件中,固然輸出文件也能夠有多個.框架

因此咱們就會發現,在ffmpeg.c中,有相似於以下的一些變量:
static InputStream *input_streams = NULL; 
static int         nb_input_streams = 0; 
static InputFile   *input_files   = NULL; 
static int         nb_input_files   = 0; 
 
 
static OutputStream *output_streams = NULL; 
static int        nb_output_streams = 0; 
static OutputFile   *output_files   = NULL; 
static int        nb_output_files   = 0;</span> 
<span style="font-size:18px;">static InputStream *input_streams = NULL;
static int         nb_input_streams = 0;
static InputFile   *input_files   = NULL;
static int         nb_input_files   = 0;ide


static OutputStream *output_streams = NULL;
static int        nb_output_streams = 0;
static OutputFile   *output_files   = NULL;
static int        nb_output_files   = 0;</span>
其中:
input_streams 是輸入流的數組,nb_input_streams是輸入流的個數.
InputFile 是輸入文件(也多是設備)的數組,input_files是輸入文件的個數.
下面的輸出相關的變量們就不用解釋了. www.2cto.com函數

能夠看出,文件和流是分別保存的.因而,能夠想象,結構InputStream中應有其所屬的文件在input_files中的序號,結構OutputStream中也應有其所屬文件在output_files中的序號.輸入流數組應是這樣填充的:每當在輸入文件中找到一個流時,就把它添加到input_streams中,因此一個輸入文件對應的流們在input_streams中是緊靠着的,因而InputFile結構中應有其第一個流在input_streams中的開始序號和被放在input_streams中的流的個數,由於並非一個輸入文件中全部的流都會被轉到輸出文件中.咱們看一下InputFile:
<span style="font-size:18px;">typedef struct InputFile { 
    AVFormatContext *ctx; 
    int eof_reached;      /* true if eof reached */ 
    int ist_index;        /* index of first stream in input_streams */ 
    int buffer_size;      /* current total buffer size */ 
    int64_t ts_offset; 
    int nb_streams;       /* number of stream that ffmpeg is aware of; may be different
                             from ctx.nb_streams if new streams appear during av_read_frame() */ 
    int rate_emu; 
} InputFile;</span> 
<span style="font-size:18px;">typedef struct InputFile {
    AVFormatContext *ctx;
    int eof_reached;      /* true if eof reached */
    int ist_index;        /* index of first stream in input_streams */
    int buffer_size;      /* current total buffer size */
    int64_t ts_offset;
    int nb_streams;       /* number of stream that ffmpeg is aware of; may be different
                             from ctx.nb_streams if new streams appear during av_read_frame() */
    int rate_emu;
} InputFile;</span>
注意其中的ist_index和nb_streams。源碼分析

在輸出流中,除了要保存其所在的輸出文件在output_files中的序號,還應保存其對應的輸入流在input_streams中的序號,也應保存其在所屬輸出文件中的流序號.而輸出文件中呢,只需保存它的第一個流在output_streams中的序號,可是爲啥不保存輸出文件中流的個數呢?我也不知道,但我知道確定不用保存也不影響實現功能(嘿嘿,至關於沒說).
各位看官看到這裏應該明白ffmpeg是怎樣作到能夠把多個文件中的任意個流從新組和到輸出文件中了吧?ui

流和文件都準備好了,下面就是轉換,那麼轉換過程是怎樣的呢?仍是我來猜一猜吧:
首先打開輸入文件們,而後跟據輸入流們準備並打開解碼器們,而後跟據輸出流們準備並打開編碼器們,而後建立輸出文件們,而後爲全部輸出文件們寫好頭部,而後就在循環中把輸入流轉換到輸出流並寫入輸出文件中,轉換完後跳出循環,而後寫入文件尾,最後關閉全部的輸出文件.編碼


概述就先到這裏吧,後面會對幾個重要函數作詳細分析

 

最新版ffmpeg源碼分析二:transcode()函數

仍是先看一下主函數吧:(省略了不少無關大雅的代碼)

[cpp] view plaincopy

  1. int main(int argc, char **argv)  
  2. {  
  3.     OptionsContext o = { 0 };  
  4.     int64_t ti;  
  5.   
  6.     //與命令行分析有關的結構的初始化,下面再也不羅嗦  
  7.     reset_options(&o, 0);  
  8.   
  9.     //設置日誌級別  
  10.     av_log_set_flags(AV_LOG_SKIP_REPEATED);  
  11.     parse_loglevel(argc, argv, options);  
  12.   
  13.     if (argc > 1 && !strcmp(argv[1], "-d"))  {  
  14.         run_as_daemon = 1;  
  15.         av_log_set_callback(log_callback_null);  
  16.         argc--;  
  17.         argv++;  
  18.     }  
  19.   
  20.     //註冊組件們  
  21.     avcodec_register_all();  
  22. #if CONFIG_AVDEVICE  
  23.     avdevice_register_all();  
  24. #endif  
  25. #if CONFIG_AVFILTER  
  26.     avfilter_register_all();  
  27. #endif  
  28.     av_register_all();  
  29.     //初始化網絡,windows下須要  
  30.     avformat_network_init();  
  31.   
  32.     show_banner();  
  33.   
  34.     term_init();  
  35.   
  36.     //分析命令行輸入的參數們  
  37.     parse_options(&o, argc, argv, options, opt_output_file);  
  38.   
  39.     //文件的轉換就在此函數中發生  
  40.     if (transcode(output_files, nb_output_files, input_files, nb_input_files)< 0)  
  41.         exit_program(1);  
  42.   
  43.     exit_program(0);  
  44.     return 0;  
  45. }  

下面是transcode()函數,轉換就發生在它裏面.不廢話,看註釋吧,應很詳細了

[cpp] view plaincopy

  1. static int transcode(  
  2.         OutputFile *output_files,//輸出文件數組  
  3.         int nb_output_files,//輸出文件的數量  
  4.         InputFile *input_files,//輸入文件數組  
  5.         int nb_input_files)//輸入文件的數量  
  6. {  
  7.     int ret, i;  
  8.     AVFormatContext *is, *os;  
  9.     OutputStream *ost;  
  10.     InputStream *ist;  
  11.     uint8_t *no_packet;  
  12.     int no_packet_count = 0;  
  13.     int64_t timer_start;  
  14.     int key;  
  15.   
  16.     if (!(no_packet = av_mallocz(nb_input_files)))  
  17.         exit_program(1);  
  18.   
  19.     //設置編碼參數,打開全部輸出流的編碼器,打開全部輸入流的解碼器,寫入全部輸出文件的文件頭,因而準備好了  
  20.     ret = transcode_init(output_files, nb_output_files, input_files,nb_input_files);  
  21.     if (ret < 0)  
  22.         goto fail;  
  23.   
  24.     if (!using_stdin){  
  25.         av_log(NULL, AV_LOG_INFO, "Press [q] to stop, [?] for help\n");  
  26.     }  
  27.   
  28.     timer_start = av_gettime();  
  29.   
  30.     //循環,直到收到系統信號才退出  
  31.     for (; received_sigterm == 0;)  
  32.     {  
  33.         int file_index, ist_index;  
  34.         AVPacket pkt;  
  35.         int64_t ipts_min;  
  36.         double opts_min;  
  37.         int64_t cur_time = av_gettime();  
  38.   
  39.         ipts_min = INT64_MAX;  
  40.         opts_min = 1e100;  
  41.         /* if 'q' pressed, exits */  
  42.         if (!using_stdin)  
  43.         {  
  44.             //先查看用戶按下了什麼鍵,跟據鍵作出相應的反應  
  45.             static int64_t last_time;  
  46.             if (received_nb_signals)  
  47.                 break;  
  48.             /* read_key() returns 0 on EOF */  
  49.             if (cur_time - last_time >= 100000 && !run_as_daemon){  
  50.                 key = read_key();  
  51.                 last_time = cur_time;  
  52.             }else{  
  53. <span>          </span>.................................  
  54.         }  
  55.   
  56.         /* select the stream that we must read now by looking at the 
  57.          smallest output pts */  
  58.         //下面這個循環的目的是找一個最小的輸出pts(也就是離當前最近的)的輸出流  
  59.         file_index = -1;  
  60.         for (i = 0; i < nb_output_streams; i++){  
  61.             OutputFile *of;  
  62.             int64_t ipts;  
  63.             double opts;  
  64.             ost = &output_streams[i];//循環每個輸出流  
  65.             of = &output_files[ost->file_index];//輸出流對應的輸出文件  
  66.             os = output_files[ost->file_index].ctx;//輸出流對應的FormatContext  
  67.             ist = &input_streams[ost->source_index];//輸出流對應的輸入流  
  68.   
  69.             if (ost->is_past_recording_time || //是否過了錄製時間?(可能用戶指定了一個錄製時間段)  
  70.                     no_packet[ist->file_index]|| //對應的輸入流這個時間內沒有數據?  
  71.                     (os->pb && avio_tell(os->pb) >= of->limit_filesize))//是否超出了錄製範圍(也是用戶指定的)  
  72.                 continue;//是的,符合上面某一條,那麼再看下一個輸出流吧  
  73.   
  74.             //判斷當前輸入流所在的文件是否可使用(我也不很明白)  
  75.             opts = ost->st->pts.val * av_q2d(ost->st->time_base);  
  76.             ipts = ist->pts;  
  77.             if (!input_files[ist->file_index].eof_reached)   {  
  78.                 if (ipts < ipts_min){  
  79.                     //每找到一個pts更小的輸入流就記錄下來,這樣循環完全部的輸出流時就找到了  
  80.                     //pts最小的輸入流,及輸入文件的序號  
  81.                     ipts_min = ipts;  
  82.                     if (input_sync)  
  83.                         file_index = ist->file_index;  
  84.                 }  
  85.                 if (opts < opts_min){  
  86.                     opts_min = opts;  
  87.                     if (!input_sync)  
  88.                         file_index = ist->file_index;  
  89.                 }  
  90.             }  
  91.   
  92.             //難道下面這句話的意思是:若是當前的輸出流已接收的幀數,超出用戶指定的輸出最大幀數時,  
  93.             //則當前輸出流所屬的輸出文件對應的全部輸出流,都算超過了錄像時間?  
  94.             if (ost->frame_number >= ost->max_frames){  
  95.                 int j;  
  96.                 for (j = 0; j < of->ctx->nb_streams; j++)  
  97.                     output_streams[of->ost_index + j].is_past_recording_time =   1;  
  98.                 continue;  
  99.             }  
  100.         }  
  101.         /* if none, if is finished */  
  102.         if (file_index < 0)  {  
  103.             //若是沒有找到合適的輸入文件  
  104.             if (no_packet_count){  
  105.                 //若是是由於有的輸入文件暫時得不到數據,則還不算是結束  
  106.                 no_packet_count = 0;  
  107.                 memset(no_packet, 0, nb_input_files);  
  108.                 usleep(10000);  
  109.                 continue;  
  110.             }  
  111.             //所有轉換完成了,跳出大循環  
  112.             break;  
  113.         }  
  114.   
  115.         //從找到的輸入文件中讀出一幀(多是音頻也多是視頻),並放到fifo隊列中  
  116.         is = input_files[file_index].ctx;  
  117.         ret = av_read_frame(is, &pkt);  
  118.         if (ret == AVERROR(EAGAIN)) {  
  119.             //此時發生了暫時沒數據的狀況  
  120.             no_packet[file_index] = 1;  
  121.             no_packet_count++;  
  122.             continue;  
  123.         }  
  124.   
  125.         //下文判斷是否有輸入文件到最後了  
  126.         if (ret < 0){  
  127.             input_files[file_index].eof_reached = 1;  
  128.             if (opt_shortest)  
  129.                 break;  
  130.             else  
  131.                 continue;  
  132.         }  
  133.   
  134.         no_packet_count = 0;  
  135.         memset(no_packet, 0, nb_input_files);  
  136.   
  137.         if (do_pkt_dump){  
  138.             av_pkt_dump_log2(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump,  
  139.                     is->streams[pkt.stream_index]);  
  140.         }  
  141.         /* the following test is needed in case new streams appear 
  142.          dynamically in stream : we ignore them */  
  143.         //若是在輸入文件中遇到一個突然冒出的流,那麼咱們不鳥它  
  144.         if (pkt.stream_index >= input_files[file_index].nb_streams)  
  145.             goto discard_packet;  
  146.   
  147.         //取得當前得到的幀對應的輸入流  
  148.         ist_index = input_files[file_index].ist_index + pkt.stream_index;  
  149.         ist = &input_streams[ist_index];  
  150.         if (ist->discard)  
  151.             goto discard_packet;  
  152.   
  153.         //從新鼓搗一下幀的時間戳  
  154.         if (pkt.dts != AV_NOPTS_VALUE)  
  155.             pkt.dts += av_rescale_q(input_files[ist->file_index].ts_offset,  
  156.                     AV_TIME_BASE_Q, ist->st->time_base);  
  157.         if (pkt.pts != AV_NOPTS_VALUE)  
  158.             pkt.pts += av_rescale_q(input_files[ist->file_index].ts_offset,  
  159.                     AV_TIME_BASE_Q, ist->st->time_base);  
  160.   
  161.         if (pkt.pts != AV_NOPTS_VALUE)  
  162.             pkt.pts *= ist->ts_scale;  
  163.         if (pkt.dts != AV_NOPTS_VALUE)  
  164.             pkt.dts *= ist->ts_scale;  
  165.   
  166.         if (pkt.dts != AV_NOPTS_VALUE && ist->next_pts != AV_NOPTS_VALUE  
  167.                 && (is->iformat->flags & AVFMT_TS_DISCONT))  
  168.         {  
  169.             int64_t pkt_dts = av_rescale_q(pkt.dts, ist->st->time_base,  
  170.                     AV_TIME_BASE_Q);  
  171.             int64_t delta = pkt_dts - ist->next_pts;  
  172.             if ((delta < -1LL * dts_delta_threshold * AV_TIME_BASE  
  173.                     || (delta > 1LL * dts_delta_threshold * AV_TIME_BASE  
  174.                             && ist->st->codec->codec_type  
  175.                                     != AVMEDIA_TYPE_SUBTITLE)  
  176.                     || pkt_dts + 1 < ist->pts) && !copy_ts)  
  177.             {  
  178.                 input_files[ist->file_index].ts_offset -= delta;  
  179.                 av_log( NULL,   AV_LOG_DEBUG,  
  180.                         "timestamp discontinuity %"PRId64", new offset= %"PRId64"\n",  
  181.                         delta, input_files[ist->file_index].ts_offset);  
  182.                 pkt.dts -= av_rescale_q(delta, AV_TIME_BASE_Q,  ist->st->time_base);  
  183.                 if (pkt.pts != AV_NOPTS_VALUE)  
  184.                     pkt.pts -= av_rescale_q(delta, AV_TIME_BASE_Q,  ist->st->time_base);  
  185.             }  
  186.         }  
  187.   
  188.         //把這一幀轉換並寫入到輸出文件中  
  189.         if (output_packet(ist, output_streams, nb_output_streams, &pkt) < 0){  
  190.             av_log(NULL, AV_LOG_ERROR,  
  191.                     "Error while decoding stream #%d:%d\n",  
  192.                     ist->file_index, ist->st->index);  
  193.             if (exit_on_error)  
  194.                 exit_program(1);  
  195.             av_free_packet(&pkt);  
  196.             continue;  
  197.         }  
  198.   
  199. discard_packet:  
  200.         av_free_packet(&pkt);  
  201.   
  202.         /* dump report by using the output first video and audio streams */  
  203.         print_report(output_files, output_streams, nb_output_streams, 0,  
  204.                 timer_start, cur_time);  
  205.     }  
  206.   
  207.     //文件處理完了,把緩衝中剩餘的數據寫到輸出文件中  
  208.     for (i = 0; i < nb_input_streams; i++){  
  209.         ist = &input_streams[i];  
  210.         if (ist->decoding_needed){  
  211.             output_packet(ist, output_streams, nb_output_streams, NULL);  
  212.         }  
  213.     }  
  214.     flush_encoders(output_streams, nb_output_streams);  
  215.   
  216.     term_exit();  
  217.   
  218.     //爲輸出文件寫文件尾(有的不須要).  
  219.     for (i = 0; i < nb_output_files; i++){  
  220.         os = output_files[i].ctx;  
  221.         av_write_trailer(os);  
  222.     }  
  223.   
  224.     /* dump report by using the first video and audio streams */  
  225.     print_report(output_files, output_streams, nb_output_streams, 1,  
  226.             timer_start, av_gettime());  
  227.   
  228.     //關閉全部的編碼器  
  229.     for (i = 0; i < nb_output_streams; i++){  
  230.         ost = &output_streams[i];  
  231.         if (ost->encoding_needed){  
  232.             av_freep(&ost->st->codec->stats_in);  
  233.             avcodec_close(ost->st->codec);  
  234.         }  
  235. #if CONFIG_AVFILTER  
  236.         avfilter_graph_free(&ost->graph);  
  237. #endif  
  238.     }  
  239.   
  240.     //關閉全部的解碼器  
  241.     for (i = 0; i < nb_input_streams; i++){  
  242.         ist = &input_streams[i];  
  243.         if (ist->decoding_needed){  
  244.             avcodec_close(ist->st->codec);  
  245.         }  
  246.     }  
  247.   
  248.     /* finished ! */  
  249.     ret = 0;  
  250.   
  251.     fail: av_freep(&bit_buffer);  
  252.     av_freep(&no_packet);  
  253.   
  254.     if (output_streams) {  
  255.         for (i = 0; i < nb_output_streams; i++)  {  
  256.             ost = &output_streams[i];  
  257.             if (ost)    {  
  258.                 if (ost->stream_copy)  
  259.                     av_freep(&ost->st->codec->extradata);  
  260.                 if (ost->logfile){  
  261.                     fclose(ost->logfile);  
  262.                     ost->logfile = NULL;  
  263.                 }  
  264.                 av_fifo_free(ost->fifo); /* works even if fifo is not 
  265.                  initialized but set to zero */  
  266.                 av_freep(&ost->st->codec->subtitle_header);  
  267.                 av_free(ost->resample_frame.data[0]);  
  268.                 av_free(ost->forced_kf_pts);  
  269.                 if (ost->video_resample)  
  270.                     sws_freeContext(ost->img_resample_ctx);  
  271.                 swr_free(&ost->swr);  
  272.                 av_dict_free(&ost->opts);  
  273.             }  
  274.         }  
  275.     }  
  276.     return ret;  
  277. }  

 

 

ffmpeg源碼分析三

transcode_init()函數是在轉換前作準備工做的.其大致要完成的任務在第一篇中已作了猜想.此處看一下它的真面目,不廢話,看註釋吧:

[cpp] view plaincopy

  1. //爲轉換過程作準備  
  2. static int transcode_init(OutputFile *output_files,  
  3.         int nb_output_files,  
  4.         InputFile *input_files,  
  5.         int nb_input_files)  
  6. {  
  7.     int ret = 0, i, j, k;  
  8.     AVFormatContext *oc;  
  9.     AVCodecContext *codec, *icodec;  
  10.     OutputStream *ost;  
  11.     InputStream *ist;  
  12.     char error[1024];  
  13.     int want_sdp = 1;  
  14.   
  15.     /* init framerate emulation */  
  16.     //初始化幀率仿真(轉換時是不按幀率來的,但若是要求幀率仿真,就能夠作到)  
  17.     for (i = 0; i < nb_input_files; i++)  
  18.     {  
  19.         InputFile *ifile = &input_files[i];  
  20.         //若是一個輸入文件被要求幀率仿真(指的是即便是轉換也像播放那樣按照幀率來進行),  
  21.         //則爲這個文件中全部流記錄下開始時間  
  22.         if (ifile->rate_emu)  
  23.             for (j = 0; j < ifile->nb_streams; j++)  
  24.                 input_streams[j + ifile->ist_index].start = av_gettime();  
  25.     }  
  26.   
  27.     /* output stream init */  
  28.     for (i = 0; i < nb_output_files; i++)  
  29.     {  
  30.         //什麼也沒作,只是作了個判斷而已  
  31.         oc = output_files[i].ctx;  
  32.         if (!oc->nb_streams && !(oc->oformat->flags & AVFMT_NOSTREAMS))  
  33.         {  
  34.             av_dump_format(oc, i, oc->filename, 1);  
  35.             av_log(NULL, AV_LOG_ERROR,  
  36.                     "Output file #%d does not contain any stream\n", i);  
  37.             return AVERROR(EINVAL);  
  38.         }  
  39.     }  
  40.   
  41.     //輪循全部的輸出流,跟據對應的輸入流,設置其編解碼器的參數  
  42.     for (i = 0; i < nb_output_streams; i++)  
  43.     {  
  44.         //輪循全部的輸出流  
  45.         ost = &output_streams[i];  
  46.         //輸出流對應的FormatContext  
  47.         oc = output_files[ost->file_index].ctx;  
  48.         //取得輸出流對應的輸入流  
  49.         ist = &input_streams[ost->source_index];  
  50.   
  51.         //attachment_filename是否是這樣的東西:一個文件,它單獨容納一個輸出流?此處不懂  
  52.         if (ost->attachment_filename)  
  53.             continue;  
  54.   
  55.         codec = ost->st->codec;//輸出流的編解碼器結構  
  56.         icodec = ist->st->codec;//輸入流的編解碼器結構  
  57.   
  58.         //先把能複製的複製一下  
  59.         ost->st->disposition = ist->st->disposition;  
  60.         codec->bits_per_raw_sample = icodec->bits_per_raw_sample;  
  61.         codec->chroma_sample_location = icodec->chroma_sample_location;  
  62.   
  63.         //若是隻是複製一個流(不用解碼後再編碼),則把輸入流的編碼參數直接複製給輸出流  
  64.         //此時是不須要解碼也不須要編碼的,因此不需打開解碼器和編碼器  
  65.         if (ost->stream_copy)  
  66.         {  
  67.             //計算輸出流的編解碼器的extradata的大小,而後分配容納extradata的緩衝  
  68.             //而後把輸入流的編解碼器的extradata複製到輸出流的編解碼器中  
  69.             uint64_t extra_size = (uint64_t) icodec->extradata_size  
  70.                     + FF_INPUT_BUFFER_PADDING_SIZE;  
  71.   
  72.             if (extra_size > INT_MAX)    {  
  73.                 return AVERROR(EINVAL);  
  74.             }  
  75.   
  76.             /* if stream_copy is selected, no need to decode or encode */  
  77.             codec->codec_id = icodec->codec_id;  
  78.             codec->codec_type = icodec->codec_type;  
  79.   
  80.             if (!codec->codec_tag){  
  81.                 if (!oc->oformat->codec_tag  
  82.                     ||av_codec_get_id(oc->oformat->codec_tag,icodec->codec_tag) == codec->codec_id  
  83.                     ||av_codec_get_tag(oc->oformat->codec_tag,icodec->codec_id) <= 0)  
  84.                     codec->codec_tag = icodec->codec_tag;  
  85.             }  
  86.   
  87.             codec->bit_rate = icodec->bit_rate;  
  88.             codec->rc_max_rate = icodec->rc_max_rate;  
  89.             codec->rc_buffer_size = icodec->rc_buffer_size;  
  90.             codec->extradata = av_mallocz(extra_size);  
  91.             if (!codec->extradata){  
  92.                 return AVERROR(ENOMEM);  
  93.             }  
  94.             memcpy(codec->extradata, icodec->extradata, icodec->extradata_size);  
  95.             codec->extradata_size = icodec->extradata_size;  
  96.   
  97.             //從新鼓搗一下time base(這傢伙就是幀率)  
  98.             codec->time_base = ist->st->time_base;  
  99.             //若是輸出文件是avi,作一點特殊處理  
  100. if (!strcmp(oc->oformat->name, "avi"))    {  
  101. if (copy_tb < 0  
  102. && av_q2d(icodec->time_base) * icodec->ticks_per_frame    >  
  103. 2 * av_q2d(ist->st->time_base)  
  104. && av_q2d(ist->st->time_base) < 1.0 / 500  
  105. || copy_tb == 0)  
  106. {  
  107. codec->time_base = icodec->time_base;  
  108. codec->time_base.num *= icodec->ticks_per_frame;  
  109. codec->time_base.den *= 2;  
  110. }  
  111. }  
  112. else if (!(oc->oformat->flags & AVFMT_VARIABLE_FPS))  
  113. {  
  114. if (copy_tb < 0  
  115. && av_q2d(icodec->time_base) * icodec->ticks_per_frame  
  116. > av_q2d(ist->st->time_base)  
  117. && av_q2d(ist->st->time_base) < 1.0 / 500  
  118. || copy_tb == 0)  
  119. {  
  120. codec->time_base = icodec->time_base;  
  121. codec->time_base.num *= icodec->ticks_per_frame;  
  122. }  
  123. }  
  124. //再修正一下幀率  
  125. av_reduce(&codec->time_base.num, &codec->time_base.den,  
  126. codec->time_base.num, codec->time_base.den, INT_MAX);  
  127. //單獨複製各不一樣媒體本身的編碼參數  
  128. switch (codec->codec_type)  
  129. {  
  130. case AVMEDIA_TYPE_AUDIO:  
  131. //音頻的  
  132. if (audio_volume != 256){  
  133. av_log( NULL,AV_LOG_FATAL,  
  134. "-acodec copy and -vol are incompatible (frames are not decoded)\n");  
  135. exit_program(1);  
  136. }  
  137. codec->channel_layout = icodec->channel_layout;  
  138. codec->sample_rate = icodec->sample_rate;  
  139. codec->channels = icodec->channels;  
  140. codec->frame_size = icodec->frame_size;  
  141. codec->audio_service_type = icodec->audio_service_type;  
  142. codec->block_align = icodec->block_align;  
  143. break;  
  144. case AVMEDIA_TYPE_VIDEO:  
  145. //視頻的  
  146. codec->pix_fmt = icodec->pix_fmt;  
  147. codec->width = icodec->width;  
  148. codec->height = icodec->height;  
  149. codec->has_b_frames = icodec->has_b_frames;  
  150. if (!codec->sample_aspect_ratio.num){  
  151. codec->sample_aspect_ratio = ost->st->sample_aspect_ratio =  
  152. ist->st->sample_aspect_ratio.num ?ist->st->sample_aspect_ratio :  
  153. ist->st->codec->sample_aspect_ratio.num ?ist->st->codec->sample_aspect_ratio :(AVRational){0, 1};  
  154. }  
  155. ost->st->avg_frame_rate = ist->st->avg_frame_rate;  
  156. break;  
  157. case AVMEDIA_TYPE_SUBTITLE:  
  158. //字幕的  
  159. codec->width  = icodec->width;  
  160. codec->height = icodec->height;  
  161. break;  
  162. case AVMEDIA_TYPE_DATA:  
  163. case AVMEDIA_TYPE_ATTACHMENT:  
  164. //??的  
  165. break;  
  166. default:  
  167. abort();  
  168. }  
  169. }  
  170. else  
  171. {  
  172. //若是不是複製,就麻煩多了  
  173. //獲取編碼器  
  174. if (!ost->enc)  
  175. ost->enc = avcodec_find_encoder(ost->st->codec->codec_id);  
  176. //由於須要轉換,因此既需解碼又需編碼  
  177. ist->decoding_needed = 1;  
  178. ost->encoding_needed = 1;  
  179. switch(codec->codec_type)  
  180. {  
  181. case AVMEDIA_TYPE_AUDIO:  
  182. //鼓搗音頻編碼器的參數,基本上是把一些不合適的參數替換掉  
  183. ost->fifo = av_fifo_alloc(1024);//音頻數據所在的緩衝  
  184. if (!ost->fifo)  {  
  185. return AVERROR(ENOMEM);  
  186. }  
  187. //採樣率  
  188. if (!codec->sample_rate)  
  189. codec->sample_rate = icodec->sample_rate;  
  190. choose_sample_rate(ost->st, ost->enc);  
  191. codec->time_base = (AVRational){1, codec->sample_rate};  
  192. //樣點格式  
  193. if (codec->sample_fmt == AV_SAMPLE_FMT_NONE)  
  194. codec->sample_fmt = icodec->sample_fmt;  
  195. choose_sample_fmt(ost->st, ost->enc);  
  196. //聲道  
  197. if (ost->audio_channels_mapped)  {  
  198. /* the requested output channel is set to the number of 
  199. * -map_channel only if no -ac are specified */  
  200. if (!codec->channels)    {  
  201. codec->channels = ost->audio_channels_mapped;  
  202. codec->channel_layout = av_get_default_channel_layout(codec->channels);  
  203. if (!codec->channel_layout)  {  
  204. av_log(NULL, AV_LOG_FATAL, "Unable to find an appropriate channel layout for requested number of channel\n);  
  205. exit_program(1);  
  206. }  
  207. }  
  208. /* fill unused channel mapping with -1 (which means a muted 
  209. * channel in case the number of output channels is bigger 
  210. * than the number of mapped channel) */  
  211. for (j = ost->audio_channels_mapped; j < FF_ARRAY_ELEMS(ost->audio_channels_map); j++)  
  212. <span>  </span>ost->audio_channels_map[j] = -1;  
  213. }else if (!codec->channels){  
  214. codec->channels = icodec->channels;  
  215. codec->channel_layout = icodec->channel_layout;  
  216. }  
  217. if (av_get_channel_layout_nb_channels(codec->channel_layout) != codec->channels)  
  218. codec->channel_layout = 0;  
  219. //是否須要重採樣  
  220. ost->audio_resample = codec->sample_rate != icodec->sample_rate || audio_sync_method > 1;  
  221. ost->audio_resample |= codec->sample_fmt != icodec->sample_fmt ||  
  222. codec->channel_layout != icodec->channel_layout;  
  223. icodec->request_channels = codec->channels;  
  224. ost->resample_sample_fmt = icodec->sample_fmt;  
  225. ost->resample_sample_rate = icodec->sample_rate;  
  226. ost->resample_channels = icodec->channels;  
  227. break;  
  228. case AVMEDIA_TYPE_VIDEO:  
  229. //鼓搗視頻編碼器的參數,基本上是把一些不合適的參數替換掉  
  230. if (codec->pix_fmt == PIX_FMT_NONE)  
  231. codec->pix_fmt = icodec->pix_fmt;  
  232. choose_pixel_fmt(ost->st, ost->enc);  
  233. if (ost->st->codec->pix_fmt == PIX_FMT_NONE){  
  234. av_log(NULL, AV_LOG_FATAL, "Video pixel format is unknown, stream cannot be encoded\n");  
  235. exit_program(1);  
  236. }  
  237. //寬高  
  238. if (!codec->width || !codec->height){  
  239. codec->width = icodec->width;  
  240. codec->height = icodec->height;  
  241. }  
  242. //視頻是否須要重採樣  
  243. ost->video_resample = codec->width != icodec->width ||  
  244. codec->height != icodec->height ||  
  245. codec->pix_fmt != icodec->pix_fmt;  
  246. if (ost->video_resample){  
  247. codec->bits_per_raw_sample= frame_bits_per_raw_sample;  
  248. }  
  249. ost->resample_height = icodec->height;  
  250. ost->resample_width = icodec->width;  
  251. ost->resample_pix_fmt = icodec->pix_fmt;  
  252. //計算幀率  
  253. if (!ost->frame_rate.num)  
  254. ost->frame_rate = ist->st->r_frame_rate.num ?  
  255. ist->st->r_frame_rate : (AVRational){25,1};  
  256. if (ost->enc && ost->enc->supported_framerates && !ost->force_fps)  {  
  257. int idx = av_find_nearest_q_idx(ost->frame_rate,ost->enc->supported_framerates);  
  258. ost->frame_rate = ost->enc->supported_framerates[idx];  
  259. }  
  260. codec->time_base = (AVRational)  {ost->frame_rate.den, ost->frame_rate.num};  
  261. if( av_q2d(codec->time_base) < 0.001 &&  
  262. video_sync_method &&  
  263. (video_sync_method==1 ||  
  264. (video_sync_method<0 &&  !  
  265. (oc->oformat->flags & AVFMT_VARIABLE_FPS))))  
  266. {  
  267. av_log(oc, AV_LOG_WARNING, "Frame rate very high for a muxer not effciciently supporting it.\n"  
  268. "Please consider specifiying a lower framerate, a different muxer or -vsync 2\n");  
  269. }  
  270. <span>  </span>for (j = 0; j < ost->forced_kf_count; j++)  
  271. ost->forced_kf_pts[j] = av_rescale_q(ost->forced_kf_pts[j],  
  272. AV_TIME_BASE_Q, codec->time_base);  
  273. break;  
  274. case AVMEDIA_TYPE_SUBTITLE:  
  275. break;  
  276. default:  
  277. abort();  
  278. break;  
  279. }  
  280. /* two pass mode */  
  281. if (codec->codec_id != CODEC_ID_H264 &&  
  282. (codec->flags & (CODEC_FLAG_PASS1 | CODEC_FLAG_PASS2)))  
  283. {  
  284. char logfilename[1024];  
  285. FILE *f;  
  286. snprintf(logfilename, sizeof(logfilename), "%s-%d.log",  
  287. pass_logfilename_prefix ? pass_logfilename_prefix : DEFAULT_PASS_LOGFILENAME_PREFIX,  
  288. i);  
  289. if (codec->flags & CODEC_FLAG_PASS2){  
  290. char *logbuffer;  
  291. size_t logbuffer_size;  
  292. if (cmdutils_read_file(logfilename, &logbuffer, &logbuffer_size) < 0){  
  293. av_log(NULL, AV_LOG_FATAL,  
  294. "Error reading log file '%s' for pass-2 encoding\n",  
  295. logfilename);  
  296. exit_program(1);  
  297. }  
  298. codec->stats_in = logbuffer;  
  299. }  
  300. if (codec->flags & CODEC_FLAG_PASS1){  
  301. f = fopen(logfilename, "wb");  
  302. if (!f) {  
  303. av_log(NULL, AV_LOG_FATAL, "Cannot write log file '%s' for pass-1 encoding: %s\n",  
  304. logfilename, strerror(errno));  
  305. exit_program(1);  
  306. }  
  307. ost->logfile = f;  
  308. }  
  309. }  
  310. }  
  311. if (codec->codec_type == AVMEDIA_TYPE_VIDEO){  
  312. /* maximum video buffer size is 6-bytes per pixel, plus DPX header size (1664)*/  
  313. //計算編碼輸出緩衝的大小,計算一個最大值  
  314. int size = codec->width * codec->height;  
  315. bit_buffer_size = FFMAX(bit_buffer_size, 7 * size + 10000);  
  316. }  
  317. }  
  318. //分配編碼後數據所在的緩衝  
  319. if (!bit_buffer)  
  320. bit_buffer = av_malloc(bit_buffer_size);  
  321. if (!bit_buffer){  
  322. av_log(NULL, AV_LOG_ERROR,  
  323. "Cannot allocate %d bytes output buffer\n",  
  324. bit_buffer_size);  
  325. return AVERROR(ENOMEM);  
  326. }  
  327. //輪循全部輸出流,打開每一個輸出流的編碼器  
  328. for (i = 0; i < nb_output_streams; i++)  
  329. {  
  330. ost = &output_streams[i];  
  331. if (ost->encoding_needed){  
  332. //固然,只有在須要編碼時纔打開編碼器  
  333. AVCodec *codec = ost->enc;  
  334. AVCodecContext *dec = input_streams[ost->source_index].st->codec;  
  335. if (!codec) {  
  336. snprintf(error, sizeof(error),  
  337. "Encoder (codec %s) not found for output stream #%d:%d",  
  338. avcodec_get_name(ost->st->codec->codec_id),  
  339. ost->file_index, ost->index);  
  340. ret = AVERROR(EINVAL);  
  341. goto dump_format;  
  342. }  
  343. if (dec->subtitle_header){  
  344. ost->st->codec->subtitle_header = av_malloc(dec->subtitle_header_size);  
  345. if (!ost->st->codec->subtitle_header){  
  346. ret = AVERROR(ENOMEM);  
  347. goto dump_format;  
  348. }  
  349. memcpy(ost->st->codec->subtitle_header,  
  350. dec->subtitle_header,dec->subtitle_header_size);  
  351. ost->st->codec->subtitle_header_size = dec->subtitle_header_size;  
  352. }  
  353. //打開啦  
  354. if (avcodec_open2(ost->st->codec, codec, &ost->opts) < 0)   {  
  355. snprintf(error, sizeof(error),  
  356. "Error while opening encoder for output stream #%d:%d - maybe incorrect parameters such as bit_rate, rate, width or height",  
  357. ost->file_index, ost->index);  
  358. ret = AVERROR(EINVAL);  
  359. goto dump_format;  
  360. }  
  361. assert_codec_experimental(ost->st->codec, 1);  
  362. assert_avoptions(ost->opts);  
  363. if (ost->st->codec->bit_rate && ost->st->codec->bit_rate < 1000)  
  364. av_log(NULL, AV_LOG_WARNING,  
  365. "The bitrate parameter is set too low."  
  366. " It takes bits/s as argument, not kbits/s\n");  
  367. extra_size += ost->st->codec->extradata_size;  
  368. if (ost->st->codec->me_threshold)  
  369. input_streams[ost->source_index].st->codec->debug |= FF_DEBUG_MV;  
  370. }  
  371. }  
  372. //初始化全部的輸入流(主要作的就是在須要時打開解碼器)  
  373. for (i = 0; i < nb_input_streams; i++)  
  374. if ((ret = init_input_stream(i, output_streams, nb_output_streams,  
  375. error, sizeof(error))) < 0)  
  376. goto dump_format;  
  377. /* discard unused programs */  
  378. for (i = 0; i < nb_input_files; i++){  
  379. InputFile *ifile = &input_files[i];  
  380. for (j = 0; j < ifile->ctx->nb_programs; j++){  
  381. AVProgram *p = ifile->ctx->programs[j];  
  382. int discard = AVDISCARD_ALL;  
  383. for (k = 0; k < p->nb_stream_indexes; k++){  
  384. if (!input_streams[ifile->ist_index + p->stream_index[k]].discard){  
  385. discard = AVDISCARD_DEFAULT;  
  386. break;  
  387. }  
  388. }  
  389. p->discard = discard;  
  390. }  
  391. }  
  392. //打開全部輸出文件,寫入媒體文件頭  
  393. for (i = 0; i < nb_output_files; i++){  
  394. oc = output_files[i].ctx;  
  395. oc->interrupt_callback = int_cb;  
  396. if (avformat_write_header(oc, &output_files[i].opts) < 0){  
  397. snprintf(error, sizeof(error),  
  398. "Could not write header for output file #%d (incorrect codec parameters ?)",  
  399. i);  
  400. ret = AVERROR(EINVAL);  
  401. goto dump_format;  
  402. }  

424.//        assert_avoptions(output_files[i].opts);  

  1. if (strcmp(oc->oformat->name, "rtp")){  
  2. want_sdp = 0;  
  3. }  
  4. }  
  5. return 0;  

431.}

相關文章
相關標籤/搜索