mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-09 03:31:41 +00:00
mkvmerge: don't output "cropping:" prefix twice in verbose identification
This commit is contained in:
parent
45ed3c8f6a
commit
721e4b18b3
@ -1,5 +1,8 @@
|
||||
2015-10-16 Moritz Bunkus <moritz@bunkus.org>
|
||||
|
||||
* mkvmerge: bug fix: the cropping parameters contained the
|
||||
"cropping:" prefix twice in the verbose identification output.
|
||||
|
||||
* MKVToolNix GUI: merge tool enhancement: when dropping files onto
|
||||
the GUI the last file's directory is remembered as the last
|
||||
directory a file was opened from causing the next open file dialog
|
||||
|
@ -2297,7 +2297,7 @@ kax_reader_c::identify() {
|
||||
info.add(mtx::id::display_dimensions, boost::format("%1%x%2%") % track->v_dwidth % track->v_dheight);
|
||||
|
||||
if ((0 != track->v_pcleft) || (0 != track->v_pctop) || (0 != track->v_pcright) || (0 != track->v_pcbottom))
|
||||
info.add(mtx::id::cropping, boost::format("cropping:%1%,%2%,%3%,%4%") % track->v_pcleft % track->v_pctop % track->v_pcright % track->v_pcbottom);
|
||||
info.add(mtx::id::cropping, boost::format("%1%,%2%,%3%,%4%") % track->v_pcleft % track->v_pctop % track->v_pcright % track->v_pcbottom);
|
||||
|
||||
if (track->codec.is(codec_c::type_e::V_MPEG4_P10))
|
||||
info.add(mtx::id::packetizer, track->ms_compat ? mtx::id::mpeg4_p10_es_video : mtx::id::mpeg4_p10_video);
|
||||
|
Loading…
Reference in New Issue
Block a user