Could not find ref with POC
时间: 2024-02-05 15:04:51 浏览: 238
ffmpegpoc:使用FFMPEG的视频编辑流程
引用\[1\]:\[hevc @ 000001716438fc00\] Two slices reporting being the first in the same frame. \[hevc @ 000001716439ec80\] Could not find ref with POC 2 。 引用\[2\]:解决办法:使用avio_alloc_context的回调函数read_packet来给ffmpeg喂数据。 经过测试,不会出现Could not find ref with POCXX的问题。 经测试,延时160ms AVIOContext *avio_alloc_context( unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int (*read_packet)(void *opaque, uint8_t *buf, int buf_size), int (*write_packet)(void *opaque, uint8_t *buf, int buf_size), int64_t (*seek)(void *opaque, int64_t offset, int whence)); 。 引用\[3\]:中可以设置CPU数量,那么应该怎么做呢 设置调用的CPU线程数量 // 注册解码器 avcodec_register_all(); AVCodec *vc = avcodec_find_decoder(ic->streams\[videoStream\]->codecpar->codec_id); // 软解 // vc = avcodec_find_decoder_by_name("h264_mediacodec"); // 硬解 if (!vc) { LOGE("avcodec_find_decoder\[videoStream\] failure"); return env->NewStringUTF(hello.c_str()); } // 配置解码器 AVCodecContext *vct = avcodec_alloc_context3(vc); avcodec_parameters_to_context(vct, ic->streams\[videoStream\]->codecpar); vct->thread_count = 1;//设置CPU线程数量 // 打开解码器 int re = avcodec_open2(vct, vc, 0); if (re != 0) { LOGE("avcodec_open2 failure"); return env->NewStringUTF(hello.c_str()); } 2.将网络接收的缓冲设大 。 问题:Could not find ref with POC
回答: "Could not find ref with POC"是ffmpeg中的一个错误消息,它表示在解码过程中找不到参考帧。这个问题可能是由于多个切片在同一帧中报告为第一个切片引起的\[1\]。解决这个问题的方法是使用avio_alloc_context的回调函数read_packet来提供数据给ffmpeg,并且经过测试,这样就不会出现"Could not find ref with POC"的问题\[2\]。另外,还可以通过设置CPU线程数量来优化解码过程,可以将vct->thread_count设置为所需的线程数量\[3\]。此外,还可以尝试将网络接收的缓冲区大小增加来解决问题\[3\]。
#### 引用[.reference_title]
- *1* *2* [Two slices reporting being the first in the same frame. 和 Could not find ref with POCXX问题](https://blog.csdn.net/asdasfdgdhh/article/details/121826433)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [ffmpeg解析实时h265/264视频流,出现Could not find ref with POCXX问题解决方法](https://blog.csdn.net/u013241583/article/details/104796741)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文