iPhone - 使用ffmpeg解码H264的问题

时间:2011-05-13 14:21:34

标签: iphone ffmpeg h.264 decoding

我正在使用ffmpeg来解码来自服务器的H264流。

我从http://github.com/dropcam/dropcam_for_iphone引用了DecoderWrapper。

我成功编译了它,但我不知道如何使用它。

以下是有问题的功能。

- (id)initWithCodec:(enum VideoCodecType)codecType 
         colorSpace:(enum VideoColorSpace)colorSpace 
              width:(int)width 
             height:(int)height 
        privateData:(NSData*)privateData {
    if(self = [super init]) {

        codec = avcodec_find_decoder(CODEC_ID_H264);
        codecCtx = avcodec_alloc_context();

        // Note: for H.264 RTSP streams, the width and height are usually not specified (width and height are 0).  
        // These fields will become filled in once the first frame is decoded and the SPS is processed.
        codecCtx->width = width;
        codecCtx->height = height;

        codecCtx->extradata = av_malloc([privateData length]);
        codecCtx->extradata_size = [privateData length];
        [privateData getBytes:codecCtx->extradata length:codecCtx->extradata_size];
        codecCtx->pix_fmt = PIX_FMT_YUV420P;
#ifdef SHOW_DEBUG_MV
        codecCtx->debug_mv = 0xFF;
#endif

        srcFrame = avcodec_alloc_frame();
        dstFrame = avcodec_alloc_frame();

        int res = avcodec_open(codecCtx, codec);
        if (res < 0)
        {
            NSLog(@"Failed to initialize decoder");
        }
    }

    return self;    
}

这个函数的privateData参数是什么?我不知道如何设置参数...

现在avcodec_decode_video2返回-1;

framedata即将成功。

如何解决这个问题。

非常感谢。

1 个答案:

答案 0 :(得分:0)

看看你的ffmpeg示例,在PATH / TO / FFMPEG / doc / example / decoder_encoder.c中, 这个链接:

http://cekirdek.pardus.org.tr/~ismail/ffmpeg-docs/api-example_8c-source.html

小心,这段代码太旧了,某些功能的名称已经改变了。