Skip to content

Commit e325ae9

Browse files
Merge pull request #93 from cchampet/fix_existing_profiles
Fix existing profiles
2 parents 31a2452 + 301d6ed commit e325ae9

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/AvTranscoder/Profiles/Avi.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ void loadAvi( Profile::ProfilesDesc& profiles )
1111
avi[ Profile::avProfileIdentificatorHuman ] = "AVI (Audio Video Interleaved)";
1212
avi[ Profile::avProfileType ] = Profile::avProfileTypeFormat;
1313

14-
avi[ "format" ] = "avi";
14+
avi[ Profile::avProfileFormat ] = "avi";
1515

1616
profiles.push_back( avi );
1717
}

src/AvTranscoder/Profiles/Mkv.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ void loadMkv( Profile::ProfilesDesc& profiles )
1111
mkv[ Profile::avProfileIdentificatorHuman ] = "Matroska";
1212
mkv[ Profile::avProfileType ] = Profile::avProfileTypeFormat;
1313

14-
mkv[ "format" ] = "mastroka";
14+
mkv[ Profile::avProfileFormat ] = "matroska";
1515

1616
profiles.push_back( mkv );
1717
}

src/AvTranscoder/Profiles/XdCamHd422.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,8 @@ void loadXdCamHD422( Profile::ProfilesDesc& profiles )
7070
xdCamHd422[ "b_qfactor" ] = "1.25";
7171
xdCamHd422[ "i_qoffset" ] = "0";
7272
xdCamHd422[ "i_qfactor" ] = "-0.8";
73-
xdCamHd422[ "flags" ] = "-cgop"; // open GOP
7473

75-
xdCamHd422[ "flags" ] = "+ilme+ildct"; // use interlaced motion estimation + use interlaced DCT
74+
xdCamHd422[ "flags" ] = "-cgop+ilme+ildct"; // open GOP + use interlaced motion estimation + use interlaced DCT
7675

7776
xdCamHd422[ "field_order" ] = "tt";
7877

0 commit comments

Comments
 (0)