ffmpeg_sample解讀_hw_decode_main


title: ffmpeg_sample解讀_hw_decode_main
date: 2020-10-28 10:15:02
tags: [讀書筆記]
typora-copy-images-to: ./imgs
typora-root-url: ./imgs


總結(jié)

  • 硬件解碼數(shù)據(jù),其實和軟解碼比較類似. 都是初始化解碼器上下文,配置參數(shù),然后讀取packet數(shù)據(jù)送入解碼器,取出freme.
  • 硬解碼需要初始化硬件解碼上下文,然后把上下文綁定到解碼器上下文上

流程圖

graph TB
ahftbn[av_hwdevice_find_type_by_name]
-->afoi[avformat_open_input]
-->affsi[avformat_find_stream_info]
-->afbs[av_find_best_stream]
-->acghc[avcodec_get_hw_config]
-->alc[avcodec_alloc_context3]
-->acptc[avcodec_parameters_to_context]
-->hdi[hw_decoder_init]
-->ahcc[av_hwdevice_ctx_create]
-->aco[avcodec_open2]
-->arf{av_read_frame>0?}
arf-->|no|release
arf -->|yes|dw[decode_write]
-->acsp[avcodec_send_packet]
-->afa[av_frame_alloc]
-->acrf{avcodec_receive_frame>0}
-->|yes|ahftd[av_hwframe_transfer_data]
-->aigbs[av_image_get_buffer_size]
-->aictb[av_image_copy_to_buffer]
-->acrf
acrf-->|no|release
image-20201029170355411

代碼


/**
 * @file
 * HW-Accelerated decoding example.
 *
 * @example hw_decode.c
 * This example shows how to do HW-accelerated decoding with output
 * frames from the HW video surfaces.
 */

#include <stdio.h>

#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libavutil/pixdesc.h>
#include <libavutil/hwcontext.h>
#include <libavutil/opt.h>
#include <libavutil/avassert.h>
#include <libavutil/imgutils.h>

static AVBufferRef *hw_device_ctx = NULL;
static enum AVPixelFormat hw_pix_fmt;
static FILE *output_file = NULL;

static int hw_decoder_init(AVCodecContext *ctx, const enum AVHWDeviceType type) {
    int err = 0;

    //根據(jù)類型.找到合適的硬件解碼器上下文,硬解碼的相關(guān)信息在hw_device中
    if ((err = av_hwdevice_ctx_create(&hw_device_ctx, type,
                                      NULL, NULL, 0)) < 0) {
        fprintf(stderr, "Failed to create specified HW device.\n");
        return err;
    }
    //把硬解碼上下文保存在解碼器上下文中.同時釋放原有的引用,拷貝新的引用
    ctx->hw_device_ctx = av_buffer_ref(hw_device_ctx);

    return err;
}

//獲取硬件格式
static enum AVPixelFormat get_hw_format(AVCodecContext *ctx,
                                        const enum AVPixelFormat *pix_fmts) {
    const enum AVPixelFormat *p;

    for (p = pix_fmts; *p != -1; p++) {
        if (*p == hw_pix_fmt)
            return *p;
    }

    fprintf(stderr, "Failed to get HW surface format.\n");
    return AV_PIX_FMT_NONE;
}

static int decode_write(AVCodecContext *avctx, AVPacket *packet) {
    AVFrame *frame = NULL, *sw_frame = NULL;
    AVFrame *tmp_frame = NULL;
    uint8_t *buffer = NULL;
    int size;
    int ret = 0;
//數(shù)據(jù)送入解碼器,
    ret = avcodec_send_packet(avctx, packet);
    if (ret < 0) {
        fprintf(stderr, "Error during decoding\n");
        return ret;
    }

    while (1) {
        //分配解碼幀
        if (!(frame = av_frame_alloc()) || !(sw_frame = av_frame_alloc())) {
            fprintf(stderr, "Can not alloc frame\n");
            ret = AVERROR(ENOMEM);
            goto fail;
        }
// 獲取解碼后的數(shù)據(jù)
        ret = avcodec_receive_frame(avctx, frame);
        if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) {
            av_frame_free(&frame);
            av_frame_free(&sw_frame);
            return 0;
        } else if (ret < 0) {
            fprintf(stderr, "Error while decoding\n");
            goto fail;
        }

        if (frame->format == hw_pix_fmt) {
            /* retrieve data from GPU to CPU */
            //解碼后的數(shù)據(jù)frame送入,然后取回數(shù)據(jù)到sw_frame
            if ((ret = av_hwframe_transfer_data(sw_frame, frame, 0)) < 0) {
                fprintf(stderr, "Error transferring the data to system memory\n");
                goto fail;
            }
            tmp_frame = sw_frame;
        } else
            tmp_frame = frame;
//輸出數(shù)據(jù)大小
        size = av_image_get_buffer_size(tmp_frame->format, tmp_frame->width,
                                        tmp_frame->height, 1);
        buffer = av_malloc(size);
        if (!buffer) {
            fprintf(stderr, "Can not alloc buffer\n");
            ret = AVERROR(ENOMEM);
            goto fail;
        }
        //把圖片數(shù)據(jù)tmp_frame->data,拷貝到一個buf中 .后邊會寫出buf
        ret = av_image_copy_to_buffer(buffer, size,
                                      (const uint8_t *const *) tmp_frame->data,
                                      (const int *) tmp_frame->linesize, tmp_frame->format,
                                      tmp_frame->width, tmp_frame->height, 1);
        if (ret < 0) {
            fprintf(stderr, "Can not copy image to buffer\n");
            goto fail;
        }
//寫到文件中
        if ((ret = fwrite(buffer, 1, size, output_file)) < 0) {
            fprintf(stderr, "Failed to dump raw data.\n");
            goto fail;
        }

        fail:
        av_frame_free(&frame);
        av_frame_free(&sw_frame);
        av_freep(&buffer);
        if (ret < 0)
            return ret;
    }
}

/***
 * 硬件解碼數(shù)據(jù),其實和軟解碼比較類似. 都是初始化解碼器上下文,配置參數(shù),然后讀取packet數(shù)據(jù)送入解碼器,取出freme.
 * 硬解碼需要初始化硬件解碼上下文,然后把上下文綁定到解碼器上下文上
 * @param argc
 * @param argv
 * @return
 * 優(yōu)點(diǎn):

比軟件處理速度快。
減少CPU的負(fù)荷餐胀,更省電。
避免數(shù)據(jù)拷貝否灾。許多硬件解碼器能夠生成輸出到硬件設(shè)備(比如顯存)的surface,這意味渲染輸出之前不需要額外的數(shù)據(jù)拷貝墨技。在某些情況下,它還可以支持硬件設(shè)備的surface輸入與編碼器一起使用健提,以避免在轉(zhuǎn)碼時候的數(shù)據(jù)拷貝伟叛。
缺點(diǎn):

硬件編碼器生成的輸出質(zhì)量通常比好的軟件編碼器低得多[1]。
硬件加速方案依賴于各硬件和平臺的支持统刮,沒有統(tǒng)一的方案。
對于特定處理(比如編解碼)硬件加速的支持和更新迭代速度慢侥蒙。

作者:smallest_one
鏈接:http://www.reibang.com/p/c3f4daf2aaa3
來源:簡書
著作權(quán)歸作者所有。商業(yè)轉(zhuǎn)載請聯(lián)系作者獲得授權(quán)鞭衩,非商業(yè)轉(zhuǎn)載請注明出處娃善。
 */
int hw_decode_main(int argc, char *argv[]) {
    AVFormatContext *input_ctx = NULL;
    int video_stream, ret;
    AVStream *video = NULL;
    AVCodecContext *decoder_ctx = NULL;
    AVCodec *decoder = NULL;
    AVPacket packet;
    enum AVHWDeviceType type;
    int i;

    if (argc < 4) {
        fprintf(stderr, "Usage: %s <device type> <input file> <output file>\n", argv[0]);
        return -1;
    }
//通過名稱找到硬件解碼器
    type = av_hwdevice_find_type_by_name(argv[1]);
    if (type == AV_HWDEVICE_TYPE_NONE) {
        fprintf(stderr, "Device type %s is not supported.\n", argv[1]);
        fprintf(stderr, "Available device types:");
        while ((type = av_hwdevice_iterate_types(type)) != AV_HWDEVICE_TYPE_NONE)
            fprintf(stderr, " %s", av_hwdevice_get_type_name(type));
        fprintf(stderr, "\n");
        return -1;
    }

    /* open the input file */
    //打開輸入文件.
    if (avformat_open_input(&input_ctx, argv[2], NULL, NULL) != 0) {
        fprintf(stderr, "Cannot open input file '%s'\n", argv[2]);
        return -1;
    }
//找了流信息
    if (avformat_find_stream_info(input_ctx, NULL) < 0) {
        fprintf(stderr, "Cannot find input stream information.\n");
        return -1;
    }
//找到視頻流,獲取解碼器
    /* find the video stream information */
    ret = av_find_best_stream(input_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, &decoder, 0);
    if (ret < 0) {
        fprintf(stderr, "Cannot find a video stream in the input file\n");
        return -1;
    }
    video_stream = ret;

    for (i = 0;; i++) {
        //從解碼器中取回硬件解碼器的配置
        const AVCodecHWConfig *config = avcodec_get_hw_config(decoder, i);
        if (!config) {
            fprintf(stderr, "Decoder %s does not support device type %s.\n",
                    decoder->name, av_hwdevice_get_type_name(type));
            return -1;
        }
        //配置信息支持硬件解碼,并且格式匹配
        if (config->methods & AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX &&
            config->device_type == type) {
            hw_pix_fmt = config->pix_fmt;
            break;
        }
    }
//解碼器上下文分配數(shù)據(jù)
    if (!(decoder_ctx = avcodec_alloc_context3(decoder)))
        return AVERROR(ENOMEM);

    video = input_ctx->streams[video_stream];
    //視頻流信息拷貝到解碼器上下文
    if (avcodec_parameters_to_context(decoder_ctx, video->codecpar) < 0)
        return -1;

    decoder_ctx->get_format = get_hw_format;
//初始化硬件解碼器
    if (hw_decoder_init(decoder_ctx, type) < 0)
        return -1;
//用硬件解碼器的數(shù)據(jù)初始化解碼器上下文
    if ((ret = avcodec_open2(decoder_ctx, decoder, NULL)) < 0) {
        fprintf(stderr, "Failed to open codec for stream #%u\n", video_stream);
        return -1;
    }
//打開寫出文件
    /* open the file to dump raw data */
    output_file = fopen(argv[3], "w+b");

    /* actual decoding and dump the raw data */
    //老流程了.獲取packet.解碼出frame.寫入文件
    while (ret >= 0) {
        if ((ret = av_read_frame(input_ctx, &packet)) < 0)
            break;

        if (video_stream == packet.stream_index)
            //解碼并寫出數(shù)據(jù)
            ret = decode_write(decoder_ctx, &packet);

        av_packet_unref(&packet);
    }
//刷新硬件解碼器最后的數(shù)據(jù)
    /* flush the decoder */
    packet.data = NULL;
    packet.size = 0;
    ret = decode_write(decoder_ctx, &packet);
    av_packet_unref(&packet);

    if (output_file)
        fclose(output_file);
    avcodec_free_context(&decoder_ctx);
    avformat_close_input(&input_ctx);
    av_buffer_unref(&hw_device_ctx);

    return 0;
}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市炬丸,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌稠炬,老刑警劉巖,帶你破解...
    沈念sama閱讀 217,277評論 6 503
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件首启,死亡現(xiàn)場離奇詭異,居然都是意外死亡闽坡,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,689評論 3 393
  • 文/潘曉璐 我一進(jìn)店門外厂,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人代承,你說我怎么就攤上這事÷坫玻” “怎么了?”我有些...
    開封第一講書人閱讀 163,624評論 0 353
  • 文/不壞的土叔 我叫張陵幔亥,是天一觀的道長。 經(jīng)常有香客問我察纯,道長,這世上最難降的妖魔是什么饼记? 我笑而不...
    開封第一講書人閱讀 58,356評論 1 293
  • 正文 為了忘掉前任,我火速辦了婚禮具则,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘博肋。我一直安慰自己蜂厅,他們只是感情好拔稳,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,402評論 6 392
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著巴比,像睡著了一般。 火紅的嫁衣襯著肌膚如雪轻绞。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 51,292評論 1 301
  • 那天政勃,我揣著相機(jī)與錄音,去河邊找鬼奸远。 笑死,一個胖子當(dāng)著我的面吹牛懒叛,可吹牛的內(nèi)容都是我干的丸冕。 我是一名探鬼主播胖烛,決...
    沈念sama閱讀 40,135評論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼佩番!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起趟畏,我...
    開封第一講書人閱讀 38,992評論 0 275
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎拱镐,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體持际,經(jīng)...
    沈念sama閱讀 45,429評論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡蜘欲,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,636評論 3 334
  • 正文 我和宋清朗相戀三年晌柬,在試婚紗的時候發(fā)現(xiàn)自己被綠了郭脂。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,785評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡展鸡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出莹弊,到底是詐尸還是另有隱情,我是刑警寧澤涡尘,帶...
    沈念sama閱讀 35,492評論 5 345
  • 正文 年R本政府宣布,位于F島的核電站考抄,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏川梅。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,092評論 3 328
  • 文/蒙蒙 一贫途、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧潮饱,春花似錦、人聲如沸香拉。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,723評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至盛险,卻和暖如春瞄摊,著一層夾襖步出監(jiān)牢的瞬間苦掘,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,858評論 1 269
  • 我被黑心中介騙來泰國打工鹤啡, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 47,891評論 2 370
  • 正文 我出身青樓隙畜,卻偏偏與公主長得像,于是被迫代替她去往敵國和親说贝。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,713評論 2 354

推薦閱讀更多精彩內(nèi)容