参考链接
- FFmpeg源代码简单分析:libavdevice的avdevice_register_all()_雷霄骅的博客-CSDN博客
libavdevice的avdevice_register_all()
- FFmpeg中libavdevice注册设备的函数avdevice_register_all()。
- avdevice_register_all()在编程中的使用示例可以参考文章:最简单的基于FFmpeg的AVDevice例子(读取摄像头)_雷霄骅的博客-CSDN博客_ffmpeg 查找摄像头
- 在使用libavdevice之前,必须先运行avdevice_register_all()对设备进行注册,否则就会出错。 目前的机制 已经不需要使用这个函数进行设备注册了
- 源代码如下所示
void avdevice_register_all(void)
{avpriv_register_devices(outdev_list, indev_list);
}
void avpriv_register_devices(const AVOutputFormat * const o[], const AVInputFormat * const i[])
{atomic_store_explicit(&outdev_list_intptr, (uintptr_t)o, memory_order_relaxed);atomic_store_explicit(&indev_list_intptr, (uintptr_t)i, memory_order_relaxed);
}
#define atomic_store_explicit(object, desired, order) \atomic_store(object, desired)
- 从代码中可以看出,avdevice_register_all()调用3个函数进行设备组建的注册:REGISTER_INDEV(),REGISTER_OUTDEV(),REGISTER_INOUTDEV()。上述3个函数实际上是预定义的3个宏:
- REGISTER_INDEV():注册输入设备。实际上调用了av_register_input_format()将输入设备注册成一个AVInputFormat。
- REGISTER_OUTDEV():注册输出设备。实际上调用了av_register_output_format()将输出设备注册成一个AVOutputFormat。
- REGISTER_INOUTDEV():注册输入设备和输出设备。实际上将上述两个宏定义合并了。
请使用手机"扫一扫"x