summaryrefslogtreecommitdiff
path: root/libavdevice/dshow.c
diff options
context:
space:
mode:
authorMark Thompson <sw@jkqxz.net>2018-06-25 19:47:03 +0100
committerJames Almer <jamrial@gmail.com>2021-01-21 20:02:23 -0300
commitc154aada45588a01cfa2adb5e56ed197eb3e4bfd (patch)
tree0e1c4add3e1cc556fcdf02e4dc4c5e3fdec32168 /libavdevice/dshow.c
parent43c8d3097b8254d08f5413a1934c001327859f47 (diff)
lavd/dshow: Add namespace prefix to global functions
Diffstat (limited to 'libavdevice/dshow.c')
-rw-r--r--libavdevice/dshow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c
index d7f5bd7069..1b9e5be399 100644
--- a/libavdevice/dshow.c
+++ b/libavdevice/dshow.c
@@ -510,7 +510,7 @@ end:
* Pops up a user dialog allowing them to adjust properties for the given filter, if possible.
*/
void
-dshow_show_filter_properties(IBaseFilter *device_filter, AVFormatContext *avctx) {
+ff_dshow_show_filter_properties(IBaseFilter *device_filter, AVFormatContext *avctx) {
ISpecifyPropertyPages *property_pages = NULL;
IUnknown *device_filter_iunknown = NULL;
HRESULT hr;
@@ -582,7 +582,7 @@ dshow_cycle_pins(AVFormatContext *avctx, enum dshowDeviceType devtype,
int should_show_properties = (devtype == VideoDevice) ? ctx->show_video_device_dialog : ctx->show_audio_device_dialog;
if (should_show_properties)
- dshow_show_filter_properties(device_filter, avctx);
+ ff_dshow_show_filter_properties(device_filter, avctx);
r = IBaseFilter_EnumPins(device_filter, &pins);
if (r != S_OK) {
@@ -887,7 +887,7 @@ dshow_open_device(AVFormatContext *avctx, ICreateDevEnum *devenum,
goto error;
}
- r = dshow_try_setup_crossbar_options(graph_builder2, device_filter, devtype, avctx);
+ r = ff_dshow_try_setup_crossbar_options(graph_builder2, device_filter, devtype, avctx);
if (r != S_OK) {
av_log(avctx, AV_LOG_ERROR, "Could not setup CrossBar\n");