]> git.sesse.net Git - nageru/blob - context_menus.h
Support audio-only FFmpeg inputs. Somewhat wonky, though.
[nageru] / context_menus.h
1 #ifndef _CONTEXT_MENUS_H
2 #define _CONTEXT_MENUS_H 1
3
4 // Some context menus for controlling various I/O selections,
5 // based on data from Mixer.
6
7 class QMenu;
8
9 // Populate a submenu for selecting output card, with an action for each card.
10 // Will call into the mixer on trigger.
11 void fill_hdmi_sdi_output_device_menu(QMenu *menu);
12
13 // Populate a submenu for choosing the output resolution. Since this is
14 // card-dependent, the entire menu is disabled if we haven't chosen a card
15 // (but it's still there so that the user will know it exists).
16 // Will call into the mixer on trigger.
17 void fill_hdmi_sdi_output_resolution_menu(QMenu *menu);
18
19 #endif  // !defined(_CONTEXT_MENUS_H)