| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 775 人关注过本帖
标题:求助 错误(活动) E0144 "const AVCodec *" 类型的值不能用于初始化 "AVCode ...
只看楼主 加入收藏
追梦人zmrghy
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:406
专家分:190
注 册:2021-4-9
结帖率:97.26%
收藏
已结贴  问题点数:20 回复次数:5 
求助 错误(活动) E0144 "const AVCodec *" 类型的值不能用于初始化 "AVCodec *" 类型
图片附件: 游客没有浏览图片的权限,请 登录注册



错误(活动)    E0144    "const AVCodec *" 类型的值不能用于初始化 "AVCodec *" 类型的实体
错误(活动)    E0029    应输入表达式



完整代码
程序代码:
#include<iostream>

extern"C"
{
#include"libavcodec/avcodec.h"
#include"include/libavformat/avformat.h"
#include"include/libswscale/swscale.h"
#include"include/libavdevice/avdevice.h"
}
int saveJpg(AVFrame* pFrame, char* out_name)
{

    int width = pFrame->width;
    int height = pFrame->height;
    AVCodecContext* pCodeCtx = NULL;


    AVFormatContext* pFormatCtx = avformat_alloc_context();
    // 设置输出文件格式
    pFormatCtx->oformat = av_guess_format("mjpeg", NULL, NULL);

    // 创建并初始化输出AVIOContext
    if (avio_open(&pFormatCtx->pb, out_name, AVIO_FLAG_READ_WRITE) < 0) 
    {
        printf("Couldn't open output file.");
        return -1;
    }

    // 构建一个新stream
    AVStream* pAVStream = avformat_new_stream(pFormatCtx, 0);
    if (pAVStream == NULL) 
    {
        return -1;
    }

    AVCodecParameters* parameters = pAVStream->codecpar;
    parameters->codec_id = pFormatCtx->oformat->video_codec;
    parameters->codec_type = AVMEDIA_TYPE_VIDEO;
    parameters->format = AV_PIX_FMT_YUVJ420P;
    parameters->width = pFrame->width;
    parameters->height = pFrame->height;

    AVCodec* pCodec = avcodec_find_encoder(pAVStream->codecpar->codec_id);

    if (!pCodec) 
    {
        printf("Could not find encoder\n");
        return -1;
    }

    pCodeCtx = avcodec_alloc_context3(pCodec);
    if (!pCodeCtx) 
    {
        fprintf(stderr, "Could not allocate video codec context\n");
        exit(1);
    }

    if ((avcodec_parameters_to_context(pCodeCtx, pAVStream->codecpar)) < 0) 
    {
        fprintf(stderr, "Failed to copy %s codec parameters to decoder context\n",
            av_get_media_type_string(AVMEDIA_TYPE_VIDEO));
        return -1;
    }

    pCodeCtx->time_base = (AVRational){ 1, 25 };

    if (avcodec_open2(pCodeCtx, pCodec, NULL) < 0) 
    {
        printf("Could not open codec.");
        return -1;
    }

    int ret = avformat_write_header(pFormatCtx, NULL);
    if (ret < 0) 
    {
        printf("write_header fail\n");
        return -1;
    }

    int y_size = width * height;

    //Encode
    // 给AVPacket分配足够大的空间
    AVPacket pkt;
    av_new_packet(&pkt, y_size * 3);

    // 编码数据
    ret = avcodec_send_frame(pCodeCtx, pFrame);
    if (ret < 0) 
    {
        printf("Could not avcodec_send_frame.");
        return -1;
    }

    // 得到编码后数据
    ret = avcodec_receive_packet(pCodeCtx, &pkt);
    if (ret < 0) 
    {
        printf("Could not avcodec_receive_packet");
        return -1;
    }

    ret = av_write_frame(pFormatCtx, &pkt);

    if (ret < 0) 
    {
        printf("Could not av_write_frame");
        return -1;
    }

    av_packet_unref(&pkt);

    //Write Trailer
    av_write_trailer(pFormatCtx);


    avcodec_close(pCodeCtx);
    avio_close(pFormatCtx->pb);
    avformat_free_context(pFormatCtx);

    return 0;
}
int main(int argc, char* argv[]) 
{
    int ret;
    const char* in_filename, * out_filename;
    AVFormatContext* fmt_ctx = NULL;

    const AVCodec* codec;
    AVCodecContext* codeCtx = NULL;

    AVStream* stream = NULL;
    int stream_index;

    AVPacket avpkt;

    int frame_count;
    AVFrame* frame;


    if (argc <= 2) 
    {
        printf("Usage: %s <input file> <output file>\n", argv[0]);
        exit(0);
    }
    in_filename = argv[1];
    out_filename = argv[2];

    // 1
    if (avformat_open_input(&fmt_ctx, in_filename, NULL, NULL) < 0) 
    {
        printf("Could not open source file %s\n", in_filename);
        exit(1);
    }

    if (avformat_find_stream_info(fmt_ctx, NULL) < 0) 
    {
        printf("Could not find stream information\n");
        exit(1);
    }

    av_dump_format(fmt_ctx, 0, in_filename, 0);

    av_init_packet(&avpkt);
    avpkt.data = NULL;
    avpkt.size = 0;

    // 2
    stream_index = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, NULL, 0);
    if (ret < 0) 
    {
        fprintf(stderr, "Could not find %s stream in input file '%s'\n",
            av_get_media_type_string(AVMEDIA_TYPE_VIDEO), in_filename);
        return ret;
    }

    stream = fmt_ctx->streams[stream_index];

    // 3
    codec = avcodec_find_decoder(stream->codecpar->codec_id);
    if (codec == NULL) 
    {
        return -1;
    }

    // 4
    codeCtx = avcodec_alloc_context3(NULL);
    if (!codeCtx) 
    {
        fprintf(stderr, "Could not allocate video codec context\n");
        exit(1);
    }


    // 5
    if ((ret = avcodec_parameters_to_context(codeCtx, stream->codecpar)) < 0) 
    {
        fprintf(stderr, "Failed to copy %s codec parameters to decoder context\n",
            av_get_media_type_string(AVMEDIA_TYPE_VIDEO));
        return ret;
    }

    // 6
    avcodec_open2(codeCtx, codec, NULL);


    //初始化frame,解码后数据
    frame = av_frame_alloc();
    if (!frame) 
    {
        fprintf(stderr, "Could not allocate video frame\n");
        exit(1);
    }

    frame_count = 0;
    char buf[1024];
    // 7
    while (av_read_frame(fmt_ctx, &avpkt) >= 0) 
    {
        if (avpkt.stream_index == stream_index) 
        {
            // 8
            int re = avcodec_send_packet(codeCtx, &avpkt);
            if (re < 0) 
            {
                continue;
            }

            // 9 这里必须用while(),因为一次avcodec_receive_frame可能无法接收到所有数据
            while (avcodec_receive_frame(codeCtx, frame) == 0) 
            {
                // 拼接图片路径、名称
                snprintf(buf, sizeof(buf), "%s/Demo-%d.jpg", out_filename, frame_count);
                saveJpg(frame, buf); //保存为jpg图片
            }

            frame_count++;
        }
        av_packet_unref(&avpkt);
    }

}





想把mp4转成jpg图片。。。
从网上复制来代码,出了俩个错误,不知是什么原因。。。。。
搜索更多相关主题的帖子: int return ret not NULL 
2023-01-25 13:45
吹水佬
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:451
帖 子:10527
专家分:42899
注 册:2014-5-20
收藏
得分:7 
const的事,如:
const void* pv = NULL;
void* ptr = pv;
有些编译器会警告初始化丢弃const的限定
2023-01-25 14:55
追梦人zmrghy
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:406
专家分:190
注 册:2021-4-9
收藏
得分:0 
以下是引用吹水佬在2023-1-25 14:55:18的发言:

const的事,如:
const void* pv = NULL;
void* ptr = pv;
有些编译器会警告初始化丢弃const的限定




错误(活动)    E0144    "const AVCodec *" 类型的值不能用于初始化 "AVCodec *" 类型的实体
错误(活动)    E0029    应输入表达式

如何修改
 AVCodec* pCodec = avcodec_find_encoder(pAVStream->codecpar->codec_id);


如何修改
pCodeCtx->time_base = (AVRational){ 1, 25 };

[此贴子已经被作者于2023-1-25 19:48编辑过]

2023-01-25 19:46
追梦人zmrghy
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:406
专家分:190
注 册:2021-4-9
收藏
得分:0 
回复 2楼 吹水佬

错误(活动)    E0144    "const AVCodec *" 类型的值不能用于初始化 "AVCodec *" 类型的实体
错误(活动)    E0029    应输入表达式

如何修改
 AVCodec* pCodec = avcodec_find_encoder(pAVStream->codecpar->codec_id);


如何修改
pCodeCtx->time_base = (AVRational){ 1, 25 };
2023-01-26 12:41
吹水佬
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:451
帖 子:10527
专家分:42899
注 册:2014-5-20
收藏
得分:7 
以下是引用追梦人zmrghy在2023-1-26 12:41:34的发言:


错误(活动)    E0144    "const AVCodec *" 类型的值不能用于初始化 "AVCodec *" 类型的实体

如何修改
 AVCodec* pCodec = avcodec_find_encoder(pAVStream->codecpar->codec_id);

具体情况不明,是不是类似下面的情况,是的话转换调整一下应该就可以。
程序代码:
const void* fun(const void* p)
{
    return p;
}

void test()
{
    void* pv = fun(NULL);
}

2023-01-26 13:12
吹水佬
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:451
帖 子:10527
专家分:42899
注 册:2014-5-20
收藏
得分:6 
以下是引用追梦人zmrghy在2023-1-26 12:41:34的发言:

错误(活动)    E0029    应输入表达式

如何修改
pCodeCtx->time_base = (AVRational){ 1, 25 };

不了解time_base类型,如果是AVRational同类且符合{ 1, 25 }数据结构格式应该没问题。
2023-01-26 13:25
快速回复:求助 错误(活动) E0144 "const AVCodec *" 类型的值不能用于初始化 "A ...
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.018549 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved