File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
src/AvTranscoder/Profiles Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ void loadAvi( Profile::ProfilesDesc& profiles )
11
11
avi[ Profile::avProfileIdentificatorHuman ] = " AVI (Audio Video Interleaved)" ;
12
12
avi[ Profile::avProfileType ] = Profile::avProfileTypeFormat;
13
13
14
- avi[ " format " ] = " avi" ;
14
+ avi[ Profile::avProfileFormat ] = " avi" ;
15
15
16
16
profiles.push_back ( avi );
17
17
}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ void loadMkv( Profile::ProfilesDesc& profiles )
11
11
mkv[ Profile::avProfileIdentificatorHuman ] = " Matroska" ;
12
12
mkv[ Profile::avProfileType ] = Profile::avProfileTypeFormat;
13
13
14
- mkv[ " format " ] = " mastroka " ;
14
+ mkv[ Profile::avProfileFormat ] = " matroska " ;
15
15
16
16
profiles.push_back ( mkv );
17
17
}
Original file line number Diff line number Diff line change @@ -70,9 +70,8 @@ void loadXdCamHD422( Profile::ProfilesDesc& profiles )
70
70
xdCamHd422[ " b_qfactor" ] = " 1.25" ;
71
71
xdCamHd422[ " i_qoffset" ] = " 0" ;
72
72
xdCamHd422[ " i_qfactor" ] = " -0.8" ;
73
- xdCamHd422[ " flags" ] = " -cgop" ; // open GOP
74
73
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
76
75
77
76
xdCamHd422[ " field_order" ] = " tt" ;
78
77
You can’t perform that action at this time.
0 commit comments