Skip to content

Commit 02d8548

Browse files
update DNxHD profiles
1 parent c7ff0c3 commit 02d8548

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/AvTranscoder/Profiles/DNxHD.hpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,26 @@ void loadDNxHD( Profile::ProfilesDesc& profiles )
99
Profile::ProfileDesc dnxhd120;
1010
dnxhd120[ Profile::avProfilIdentificator ] = "dnxhd120";
1111
dnxhd120[ Profile::avProfilIdentificatorHuman ] = "DNxHD 120";
12+
dnxhd120[ "codec" ] = "dnxhd";
1213
dnxhd120[ "b" ] = "120000000";
1314
dnxhd120[ "pix_fmt" ] = "yuv422p";
1415
dnxhd120[ "g" ] = "1";
1516

1617
Profile::ProfileDesc dnxhd185;
1718
dnxhd185[ Profile::avProfilIdentificator ] = "dnxhd185";
1819
dnxhd185[ Profile::avProfilIdentificatorHuman ] = "DNxHD 185";
20+
dnxhd185[ "codec" ] = "dnxhd";
1921
dnxhd185[ "b" ] = "185000000";
2022
dnxhd185[ "pix_fmt" ] = "yuv422p";
21-
dnxhd120[ "g" ] = "1";
23+
dnxhd185[ "g" ] = "1";
2224

2325
Profile::ProfileDesc dnxhd185x;
2426
dnxhd185x[ Profile::avProfilIdentificator ] = "dnxhd185x";
2527
dnxhd185x[ Profile::avProfilIdentificatorHuman ] = "DNxHD 185 X";
28+
dnxhd185x[ "codec" ] = "dnxhd";
2629
dnxhd185x[ "b" ] = "185000000";
2730
dnxhd185x[ "pix_fmt" ] = "yuv422p10";
28-
dnxhd120[ "g" ] = "1";
31+
dnxhd185x[ "g" ] = "1";
2932

3033
profiles.push_back( dnxhd120 );
3134
profiles.push_back( dnxhd185 );

0 commit comments

Comments
 (0)