简体   繁体   English

声明无效'AVPacket'

[英]Statement has no effect 'AVPacket'

I am developing a Decoder using android NDK and FFmpeg native libraries. 我正在使用Android NDK和FFmpeg本机库开发解码器。 I have put Native Support for the project using Android Tools and I have the C code in videodecoder.cpp file. 我已经使用Android Tools为该项目提供了本机支持,并且在videodecoder.cpp文件中有C代码。 In the file the following function gives me this problem 在文件中,以下功能给我这个问题

JNIEXPORT jint Java_ssrp_android_ffmpegdecoder_H264Decoder_consumeNalUnitsFromDirectBuffer(
        JNIEnv* env, jobject thiz, jobject nal_units, jint num_bytes,
        jlong pkt_pts) {
    DecoderContext *ctx = get_ctx(env, thiz);

    void *buf = NULL;
    if (nal_units == NULL) {
        D("Received null buffer, sending empty packet to decoder");
    } else {
        buf = env->GetDirectBufferAddress(nal_units);
        if (buf == NULL) {
            D("Error getting direct buffer address");
            return -1;
        }
    }

    AVPacket packet = {.data = (uint8_t*) buf, .size = num_bytes, .pts = pkt_pts };

    int frameFinished = 0;
    int res = avcodec_decode_video2(ctx->codec_ctx, ctx->src_frame,&frameFinished, &packet);

    if (frameFinished)
        ctx->frame_ready = 1;

    return res;
}

At the line AVPacket packet = {.data = (uint8_t*) buf, .size = num_bytes, .pts = pkt_pts }; AVPacket packet = {.data = (uint8_t*) buf, .size = num_bytes, .pts = pkt_pts };

It says that `Statement has no effect "AVPAcket" and 它说`声明对“ AVPAcket”没有影响,并且

At the line int res = avcodec_decode_video2(ctx->codec_ctx, ctx->src_frame,&frameFinished, &packet); int res = avcodec_decode_video2(ctx->codec_ctx, ctx->src_frame,&frameFinished, &packet);行上int res = avcodec_decode_video2(ctx->codec_ctx, ctx->src_frame,&frameFinished, &packet);

It says that Invalid arguments ' Candidates are: int avcodec_decode_video2(AVCodecContext *, AVFrame *, int *, const AVPacket *)' 它说Invalid arguments ' Candidates are: int avcodec_decode_video2(AVCodecContext *, AVFrame *, int *, const AVPacket *)'

The Problem is 问题是

AVPacket packet = {.data = (uint8_t*) buf, .size = num_bytes, .pts = pkt_pts }

as the Compiler does not understand the type / initialization. 由于编译器不了解类型/初始化。 This leads to the invalid argument error. 这导致无效的参数错误。 Maybe split the line into: 也许将行拆分为:

AVPacket packet;
packet.data = (uint8_t*) buf;
packet.size = num_bytes;
packet.pts = pkt_pts;

This should get more clear error output. 这应该获得更清晰的错误输出。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM