From 993ea860e475f91d8d66640a1ddd6ae26d155a6f Mon Sep 17 00:00:00 2001 From: ashwani rathee Date: Fri, 13 Oct 2023 07:51:21 +0530 Subject: [PATCH] Adds deprecations --- src/VideoIO.jl | 3 +++ src/deprecations.jl | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 src/deprecations.jl diff --git a/src/VideoIO.jl b/src/VideoIO.jl index c41e8d08..1c7c8f15 100644 --- a/src/VideoIO.jl +++ b/src/VideoIO.jl @@ -42,6 +42,9 @@ include("frame_graph.jl") include("avio.jl") include("encoding.jl") include("testvideos.jl") + +include("deprecations.jl") + using .TestVideos if Sys.islinux() diff --git a/src/deprecations.jl b/src/deprecations.jl new file mode 100644 index 00000000..8d0c2ab6 --- /dev/null +++ b/src/deprecations.jl @@ -0,0 +1,3 @@ +# current deprecations + +@deprecate get_camera_devices(ffmpeg, idev, idev_name) get_camera_devices(idev, idev_name) \ No newline at end of file