当前位置:   article > 正文

C++ ffmpeg硬件解码的实现方法_ffmpeg 硬解码

ffmpeg 硬解码

什么是硬件解码

普通解码是利用cpu去解码也就是软件解码 硬件解码就是利用gpu去解码

为什么要使用硬件解码

首先最大的好处 快硬解播放出来的视频较为流畅,并且能够延长移动设备播放视频的时间; 而软解由于软解加大CPU工作负荷,会占用过多的移动CPU资源,如果CPU能力不足,则软件也将受到影响 最主要就是一个字 快

本文福利, 免费领取C++音视频学习资料包、技术视频/代码,内容包括(音视频开发,面试题,FFmpeg ,webRTC ,rtmp ,hls ,rtsp ,ffplay ,编解码,推拉流,srs)↓↓↓↓↓↓见下面↓↓文章底部点击免费领取↓↓

怎样使用硬件解码

ffmpeg内部为我们提供了友好的接口去实现硬件解码

注意事项

ffmpeg内部有很多编解码器 并不是所有的编解码器都支持硬件解码 并且就算支持硬件解码的编解码器也不一定能支持你的显卡 也就是说在使用硬件解码时我们首先要去判断这个解码器是否支持在这个平台对这个显卡进行硬件编解码 不然是无法使用的

对显卡厂家SDK进行封装和集成,实现部分的硬件编解码

其次在ffmpeg中软件编解码器可以实现相关硬解加速。如在h264解码器中可以使用cuda 加速,qsv加速,dxva2 加速,d3d11va加速,opencl加速等。cuda qsv等就是不同公司推出的针对gpu编程的工具包

AV_CODEC_ID_H264;代表是h264编解码器。而name代表某一个编码器或解码器。通常我们使用avcodec_find_decoder(ID)和avcodec_find_encoder(ID)来解码器和编码器。默认采用的软件编解码。如果我们需要使用硬件编解码,采用avcodec_find_encoder_by_name(name)和avcodec_find_decoder_by_name(name)来指定编码器。其他代码流程与软件编解码一致。

  1. //codec = avcodec_find_decoder(AV_CODEC_ID_H264);
  2. codec = avcodec_find_decoder_by_name("h264_cuvid");
  3. if (!codec) {
  4. fprintf(stderr, "Codec not found\n");
  5. exit(1);
  6. }

通过id找到的可能并不是你预期中的编解码器 通过name找到的一定是你想要的

下面是ffmpeg官方的硬件解码例子 我加上了中文注释方便理解

  1. #include <stdio.h>
  2. #include <libavcodec/avcodec.h>
  3. #include <libavformat/avformat.h>
  4. #include <libavutil/pixdesc.h>
  5. #include <libavutil/hwcontext.h>
  6. #include <libavutil/opt.h>
  7. #include <libavutil/avassert.h>
  8. #include <libavutil/imgutils.h>
  9. static AVBufferRef *hw_device_ctx = NULL;
  10. static enum AVPixelFormat hw_pix_fmt;
  11. static FILE *output_file = NULL;
  12. static int hw_decoder_init(AVCodecContext *ctx, const enum AVHWDeviceType type)
  13. {
  14. int err = 0;
  15. //创建硬件设备信息上下文
  16. if ((err = av_hwdevice_ctx_create(&hw_device_ctx, type,
  17. NULL, NULL, 0)) < 0) {
  18. fprintf(stderr, "Failed to create specified HW device.\n");
  19. return err;
  20. }
  21. //绑定编解码器上下文和硬件设备信息上下文
  22. ctx->hw_device_ctx = av_buffer_ref(hw_device_ctx);
  23. return err;
  24. }
  25. static enum AVPixelFormat get_hw_format(AVCodecContext *ctx,
  26. const enum AVPixelFormat *pix_fmts)
  27. {
  28. const enum AVPixelFormat *p;
  29. for (p = pix_fmts; *p != -1; p++) {
  30. if (*p == hw_pix_fmt)
  31. return *p;
  32. }
  33. fprintf(stderr, "Failed to get HW surface format.\n");
  34. return AV_PIX_FMT_NONE;
  35. }
  36. static int decode_write(AVCodecContext *avctx, AVPacket *packet)
  37. {
  38. AVFrame *frame = NULL, *sw_frame = NULL;
  39. AVFrame *tmp_frame = NULL;
  40. uint8_t *buffer = NULL;
  41. int size;
  42. int ret = 0;
  43. ret = avcodec_send_packet(avctx, packet);
  44. if (ret < 0) {
  45. fprintf(stderr, "Error during decoding\n");
  46. return ret;
  47. }
  48. while (1) {
  49. if (!(frame = av_frame_alloc()) || !(sw_frame = av_frame_alloc())) {
  50. fprintf(stderr, "Can not alloc frame\n");
  51. ret = AVERROR(ENOMEM);
  52. goto fail;
  53. }
  54. ret = avcodec_receive_frame(avctx, frame);
  55. if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) {
  56. av_frame_free(&frame);
  57. av_frame_free(&sw_frame);
  58. return 0;
  59. }
  60. else if (ret < 0) {
  61. fprintf(stderr, "Error while decoding\n");
  62. goto fail;
  63. }
  64. if (frame->format == hw_pix_fmt) {
  65. /* retrieve data from GPU to CPU */
  66. if ((ret = av_hwframe_transfer_data(sw_frame, frame, 0)) < 0) {
  67. fprintf(stderr, "Error transferring the data to system memory\n");
  68. goto fail;
  69. }
  70. tmp_frame = sw_frame;
  71. }
  72. else
  73. tmp_frame = frame;
  74. size = av_image_get_buffer_size(tmp_frame->format, tmp_frame->width,
  75. tmp_frame->height, 1);
  76. buffer = av_malloc(size);
  77. if (!buffer) {
  78. fprintf(stderr, "Can not alloc buffer\n");
  79. ret = AVERROR(ENOMEM);
  80. goto fail;
  81. }
  82. ret = av_image_copy_to_buffer(buffer, size,
  83. (const uint8_t * const *)tmp_frame->data,
  84. (const int *)tmp_frame->linesize, tmp_frame->format,
  85. tmp_frame->width, tmp_frame->height, 1);
  86. if (ret < 0) {
  87. fprintf(stderr, "Can not copy image to buffer\n");
  88. goto fail;
  89. }
  90. if ((ret = fwrite(buffer, 1, size, output_file)) < 0) {
  91. fprintf(stderr, "Failed to dump raw data.\n");
  92. goto fail;
  93. }
  94. fail:
  95. av_frame_free(&frame);
  96. av_frame_free(&sw_frame);
  97. av_freep(&buffer);
  98. if (ret < 0)
  99. return ret;
  100. }
  101. }
  102. int main(int argc, char *argv[])
  103. {
  104. AVFormatContext *input_ctx = NULL;
  105. int video_stream, ret;
  106. AVStream *video = NULL;
  107. AVCodecContext *decoder_ctx = NULL;
  108. AVCodec *decoder = NULL;
  109. AVPacket packet;
  110. enum AVHWDeviceType type;
  111. int i;
  112. if (argc < 4) {
  113. fprintf(stderr, "Usage: %s <device type> <input file> <output file>\n", argv[0]);
  114. return -1;
  115. }
  116. //通过你传入的名字来找到对应的硬件解码类型
  117. type = av_hwdevice_find_type_by_name(argv[1]);
  118. if (type == AV_HWDEVICE_TYPE_NONE) {
  119. fprintf(stderr, "Device type %s is not supported.\n", argv[1]);
  120. fprintf(stderr, "Available device types:");
  121. while ((type = av_hwdevice_iterate_types(type)) != AV_HWDEVICE_TYPE_NONE)
  122. fprintf(stderr, " %s", av_hwdevice_get_type_name(type));
  123. fprintf(stderr, "\n");
  124. return -1;
  125. }
  126. /* open the input file */
  127. if (avformat_open_input(&input_ctx, argv[2], NULL, NULL) != 0) {
  128. fprintf(stderr, "Cannot open input file '%s'\n", argv[2]);
  129. return -1;
  130. }
  131. if (avformat_find_stream_info(input_ctx, NULL) < 0) {
  132. fprintf(stderr, "Cannot find input stream information.\n");
  133. return -1;
  134. }
  135. /* find the video stream information */
  136. ret = av_find_best_stream(input_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, &decoder, 0);
  137. if (ret < 0) {
  138. fprintf(stderr, "Cannot find a video stream in the input file\n");
  139. return -1;
  140. }
  141. video_stream = ret;
  142. //去遍历所有编解码器支持的硬件解码配置 如果和之前你指定的是一样的 那么就可以继续执行了 不然就找不到
  143. for (i = 0;; i++) {
  144. const AVCodecHWConfig *config = avcodec_get_hw_config(decoder, i);
  145. if (!config) {
  146. fprintf(stderr, "Decoder %s does not support device type %s.\n",
  147. decoder->name, av_hwdevice_get_type_name(type));
  148. return -1;
  149. }
  150. if (config->methods & AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX &&
  151. config->device_type == type) {
  152. //把硬件支持的像素格式设置进去
  153. hw_pix_fmt = config->pix_fmt;
  154. break;
  155. }
  156. }
  157. if (!(decoder_ctx = avcodec_alloc_context3(decoder)))
  158. return AVERROR(ENOMEM);
  159. video = input_ctx->streams[video_stream];
  160. if (avcodec_parameters_to_context(decoder_ctx, video->codecpar) < 0)
  161. return -1;
  162. //填入回调函数 通过这个函数 编解码器能够知道显卡支持的像素格式
  163. decoder_ctx->get_format = get_hw_format;
  164. if (hw_decoder_init(decoder_ctx, type) < 0)
  165. return -1;
  166. //绑定完成后 打开编解码器
  167. if ((ret = avcodec_open2(decoder_ctx, decoder, NULL)) < 0) {
  168. fprintf(stderr, "Failed to open codec for stream #%u\n", video_stream);
  169. return -1;
  170. }
  171. /* open the file to dump raw data */
  172. output_file = fopen(argv[3], "w+");
  173. /* actual decoding and dump the raw data */
  174. while (ret >= 0) {
  175. if ((ret = av_read_frame(input_ctx, &packet)) < 0)
  176. break;
  177. if (video_stream == packet.stream_index)
  178. ret = decode_write(decoder_ctx, &packet);
  179. av_packet_unref(&packet);
  180. }
  181. /* flush the decoder */
  182. packet.data = NULL;
  183. packet.size = 0;
  184. ret = decode_write(decoder_ctx, &packet);
  185. av_packet_unref(&packet);
  186. if (output_file)
  187. fclose(output_file);
  188. avcodec_free_context(&decoder_ctx);
  189. avformat_close_input(&input_ctx);
  190. av_buffer_unref(&hw_device_ctx);
  191. return 0;
  192. }

关键函数解析

enum AVHWDeviceType av_hwdevice_find_type_by_name(const char *name);

通过传入的参数查找对应的硬件类型 其中 AVHWDeviceType值如下

const AVCodecHWConfig *avcodec_get_hw_config(const AVCodec *codec, int index);

拿到编解码器支持的硬件配置比如硬件支持的像素格式等等

 

  1. static enum AVPixelFormat get_hw_format(AVCodecContext *ctx,
  2. const enum AVPixelFormat *pix_fmts)
  3. {
  4. const enum AVPixelFormat *p;
  5. for (p = pix_fmts; *p != -1; p++) {
  6. if (*p == hw_pix_fmt)
  7. return *p;
  8. }
  9. fprintf(stderr, "Failed to get HW surface format.\n");
  10. return AV_PIX_FMT_NONE;
  11. }

这是一个回调函数,它的作用就是告诉解码器codec自己的目标像素格式是什么。在上一步骤获取到了硬解码器codec可以支持的目标格式之后,就通过这个回调函数告知给codec

  • fmt是这个解码器codec支持的像素格式,且按照质量优劣进行排序;
  • 如果没有特别的需要,这个步骤是可以省略的。内部默认会使用“native”的格式。

int av_hwdevice_ctx_create(AVBufferRef **pdevice_ref, enum AVHWDeviceType type, const char *device, AVDictionary *opts, int flags)

这个函数的作用是,创建硬件设备相关的上下文信息AVHWDeviceContext,包括分配内存资源、对硬件设备进行初始化。

准备好硬件设备上下文AVHWDeviceContext后,需要把这个信息绑定到AVCodecContext,就可以像软解一样的流程执行解码操作了。绑定操作如下

注意这里硬件设备信息上下文是通过AVBuffer来存储的引用 并不是实体

int av_hwframe_transfer_data(AVFrame *dst, const AVFrame *src, int flags)

这个函数是负责在cpu内存和硬件内存(原文是hw surface)之间做数据交换的。也就是说,它不但可以把数据从硬件surface上搬回系统内存,反向操作也支持;甚至可以直接在硬件内存之间做数据交互。

本文福利, 免费领取C++音视频学习资料包、技术视频/代码,内容包括(音视频开发,面试题,FFmpeg ,webRTC ,rtmp ,hls ,rtsp ,ffplay ,编解码,推拉流,srs)↓↓↓↓↓↓见下面↓↓文章底部点击免费领取↓↓

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/446294
推荐阅读
相关标签
  

闽ICP备14008679号