[libffmpeg-org.so] av_buffersrc_get_nb_failed_requests SIGSEGV
时间: 2024-04-13 20:27:35 浏览: 130
您好!对于您提出的问题,"av_buffersrc_get_nb_failed_requests" 是 FFmpeg 库中的一个函数,用于获取失败的请求数量。而 "SIGSEGV" 是一个信号,表示段错误,意味着程序访问了无效的内存地址。在您的问题中,出现了一个段错误。
通常情况下,SIGSEGV 错误可能由以下原因之一引起:
1. 无效的指针引用:尝试访问一个未分配或已释放的内存地址。
2. 栈溢出:当程序使用了超过其栈容量的内存空间时。
3. 访问非法内存:尝试读取或写入未分配给程序的内存。
为了解决这个问题,您可以尝试以下步骤:
1. 确保您的代码没有错误,特别是在使用 FFmpeg 函数时。
2. 检查您是否正确地初始化了 FFmpeg 库和相关的数据结构。
3. 避免使用未初始化的指针,并确保在使用指针之前进行有效性检查。
4. 检查您的程序是否有内存泄漏或其他与内存管理相关的问题。
5. 如果可能的话,尝试使用调试工具来跟踪和定位问题所在。
请注意,这些只是一些常见的解决方法,具体取决于您的代码和环境。如果问题仍然存在,请提供更多详细信息,以便我能够提供更准确的帮助。
相关问题
请解决implementation 'com.github.AnJoiner:FFmpegCommand:1.2.2-lite' fun getFFmpegCmd(inputFilePath: String, outputFilePath: String, watermarkFilePath: String): Array<String?>{ var height = videoHeight - DisplayHelper.dip2px(this, 50f) var width = videoWidth - DisplayHelper.dip2px(this, 100f) var strCommand = "ffmpeg -y -i ${inputFilePath} -i ${watermarkFilePath} -filter_complex [0:v]scale=iw:ih[outv0];[1:0]scale=0.0:0.0[outv1];[outv0][outv1]overlay=${width}:${height} -preset superfast ${outputFilePath}" val commands: Array<String?> = strCommand.split(" ".toRegex()).toTypedArray() return commands } fun addBitmapToVideo(inputFilePath: String, outputFilePath: String, watermarkFilePath: String) { LogUtil.d("inputFilePath=${inputFilePath},\noutputFilePath=${outputFilePath}") val addWaterMark = getFFmpegCmd(inputFilePath, watermarkFilePath, outputFilePath) try { CoroutineScope(Dispatchers.IO).launch { FFmpegCommand.runCmd(addWaterMark, object : IFFmpegCallBack { override fun onCancel() { } override fun onComplete() { finishVideo(VIDEO_COMPLETE) } override fun onError(errorCode: Int, errorMsg: String?) { LogUtil.w("水印视频错误_onError=${errorCode},${errorMsg}") finishVideo(VIDEO_ERROR) } override fun onProgress(progress: Int, pts: Long) { finishVideo(VIDEO_PROGRESS, progress) } override fun onStart() { } }) } } catch (e: Throwable) { // FFmpeg 不支持当前设备 LogUtil.w("Exception-e=${e.message}") } } backtrace: #00 pc 0x00000000000dba18 /apex/com.android.runtime/lib64/bionic/libc.so (strspn+12) #01 pc 0x0000000000339dec /data/app/~~EKJofAZ4BmKzTXggwqbGhw==/com.zsyj.facefancy-LE00NsHFRSow2FsnifHViQ==/lib/arm64/libffmpeg-org.so (avfilter_graph_parse2+80)
根据您提供的信息,问题似乎与使用的 FFmpeg 版本或库有关。在您的代码中,您使用了名为 "com.github.AnJoiner:FFmpegCommand:1.2.2-lite" 的库。然而,根据您提供的错误信息,在调用 "avfilter_graph_parse2" 函数时发生了问题。
解决这个问题的步骤如下:
1. 确保您使用的 FFmpeg 版本与您的库版本兼容。尝试升级 FFmpeg 版本或检查库的兼容性列表。
2. 确保您正确地配置了 FFmpeg 库和相关依赖项。请按照库的文档或指南进行正确的配置和集成。
3. 如果您的代码在其他设备或环境中正常工作,但在特定设备上出现问题,请确认该设备是否支持所需的 FFmpeg 功能和库。
4. 检查您的代码是否存在其他问题,例如无效的参数传递、资源释放问题或未处理的异常。
如果问题仍然存在,请提供更多详细信息,例如完整的堆栈跟踪和其他相关代码,以便我能够更好地帮助您解决问题。
移植ffmpeg到安卓源码中提示libffmpeg_omx.so找不到
出现这种情况一般是由于编译器未能正确链接FFmpeg库。请尝试以下步骤:
1. 确保在编译安卓源码时已经正确配置了FFmpeg库的路径。
2. 检查编译器是否正确地链接了FFmpeg库。你可以在编译安卓源码时使用"-L"选项来指定库文件的路径。例如:
```
LOCAL_LDLIBS := -L/path/to/ffmpeg/lib -lavcodec -lavformat -lavutil
```
3. 确保你的设备上已经正确安装了FFmpeg库。你可以在设备上运行以下命令来检查:
```
adb shell ls /system/lib/libffmpeg_omx.so
```
如果以上步骤都没有解决问题,你可以尝试重新编译FFmpeg库并将其重新链接到你的应用程序中。
阅读全文