decoder_ctx->get_format = [this](AVCodecContext* a, const AVPixelFormat* b){return get_hw_format(a, b); };
безуспешно.
Вот сообщение об ошибке:
Ошибка C2440 '=': невозможно преобразовать из
'FFreader::maindecode::' в 'AVPixelFormat (__cdecl
*)(AVCodecContext *,const AVPixelFormat *)' имя проекта FFreader.h 210< /p>
Я пробую пример hw_decode.c из FFMPEG, однако я использую эти функции внутри класса: [code]class FFreader { AVPixelFormat get_hw_format(AVCodecContext* ctx, const AVPixelFormat* pix_fmts) { [/code] и т. д. VS2022 жалуется на назначение: почему? как это исправить? [code]decoder_ctx->get_format = get_hw_format; [/code] Я пробовал с лямбдой: [code]decoder_ctx->get_format = [this](AVCodecContext* a, const AVPixelFormat* b){return get_hw_format(a, b); }; [/code] безуспешно. Вот сообщение об ошибке:
Ошибка C2440 '=': невозможно преобразовать из 'FFreader::maindecode::' в 'AVPixelFormat (__cdecl *)(AVCodecContext *,const AVPixelFormat *)' имя проекта FFreader.h 210< /p>
Полный источник: [code]#pragma once #include #include #include #include #include #include #include #include #include #include
class FFreader { AVBufferRef* hw_device_ctx{}; AVPixelFormat hw_pix_fmt{}; FILE* output_file{};
int hw_decoder_init(AVCodecContext* ctx, const enum AVHWDeviceType type) { int err{}; 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; }
AVPixelFormat get_hw_format(AVCodecContext* ctx, const AVPixelFormat* pix_fmts) { const 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; }
int decode_write(AVCodecContext* avctx, AVPacket* packet) { AVFrame* frame{}; AVFrame*sw_frame{}; AVFrame* tmp_frame{}; uint8_t* buffer{}; int size{}; int status{};
status = avcodec_send_packet(avctx, packet); if (status < 0) { fprintf(stderr, "Error during decoding\n"); return status; }
while (true) { frame = av_frame_alloc(); sw_frame = av_frame_alloc(); if (!frame || !sw_frame) { fprintf(stderr, "Can not alloc frame\n"); status = AVERROR(ENOMEM); break; } status = avcodec_receive_frame(avctx, frame); if (status == AVERROR(EAGAIN) || status == AVERROR_EOF) { av_frame_free(&frame); av_frame_free(&sw_frame); return 0; } if (status < 0) { fprintf(stderr, "Error while decoding\n"); break; }
// TODO keep in gpu if (frame->format == hw_pix_fmt) { /* retrieve data from GPU to CPU */ status = av_hwframe_transfer_data(sw_frame, frame, 0); if (status < 0) { fprintf(stderr, "Error transferring the data to system memory\n"); break; } tmp_frame = sw_frame; } else tmp_frame = frame;
size = av_image_get_buffer_size(static_cast(tmp_frame->format), tmp_frame->width, tmp_frame->height, 1); buffer = static_cast(av_malloc(size)); if (!buffer) { fprintf(stderr, "Can not alloc buffer\n"); status = AVERROR(ENOMEM); break;
} status = av_image_copy_to_buffer(buffer, size, tmp_frame->data, tmp_frame->linesize, static_cast(tmp_frame->format), tmp_frame->width, tmp_frame->height, 1); if (status < 0) { fprintf(stderr, "Can not copy image to buffer\n"); break; } if ((status = fwrite(buffer, 1, size, output_file)) < 0) { fprintf(stderr, "Failed to dump raw data.\n"); break; } }
av_frame_free(&frame); av_frame_free(&sw_frame); av_freep(&buffer); if (status < 0) return status; }
int maindecode(int argc, char* argv[]) { AVFormatContext* input_ctx = NULL; int video_stream, ret; AVStream* video = NULL; AVCodecContext* decoder_ctx = NULL; const AVCodec* decoder = NULL; AVPacket* packet = NULL; enum AVHWDeviceType type; int i;
/* 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; } }
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;