diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-03-29 15:55:18 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-03-29 15:55:18 +0000 |
| commit | 88816c72895b90f29083235cc0f111c893b15d93 (patch) | |
| tree | 9e6ca582dd065e5d0fb6eacb3ef5a9a6af9b9852 /src/lib | |
| parent | 1f04a10aee553fa4552dd94b73f63ca502d08d0e (diff) | |
Add episode/promo content types.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/dcp_content_type.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/dcp_content_type.cc b/src/lib/dcp_content_type.cc index b2455ba21..613ed15a5 100644 --- a/src/lib/dcp_content_type.cc +++ b/src/lib/dcp_content_type.cc @@ -53,6 +53,8 @@ DCPContentType::setup_dcp_content_types () _dcp_content_types.push_back (new DCPContentType (_("Policy"), dcp::POLICY, N_("POL"))); _dcp_content_types.push_back (new DCPContentType (_("Public Service Announcement"), dcp::PUBLIC_SERVICE_ANNOUNCEMENT, N_("PSA"))); _dcp_content_types.push_back (new DCPContentType (_("Advertisement"), dcp::ADVERTISEMENT, N_("ADV"))); + _dcp_content_types.push_back (new DCPContentType (_("Episode"), dcp::EPISODE, N_("EPS"))); + _dcp_content_types.push_back (new DCPContentType (_("Promo"), dcp::PROMO, N_("PRO"))); } DCPContentType const * |
