Page 230 of 331 < 1 2 ... 228 229 230 231 232 ... 330 331 >
Topic Options
#78870 - 05/08/12 08:30 AM Re: QMC2 - MAME/MESS Frontend [Re: Anna Wu]
qmc2 Offline
Very Senior Member

Registered: 05/29/08
Posts: 3028
Loc: Germany
With regard to CHD v5 compression codecs, am I right that the available list of codecs is as follows, or am I missing any codecs?

Code:
avhu (A/V Huffman)
cdfl (CD FLAC)
cdlz (CD LZMA)
cdzl (CD Deflate)
flac (FLAC)
huff (Huffman)
lzma (LZMA)
zlib (Deflate)

I've looked those up in src/lib/util/chdcodec.h. I need that information for both the ROMAlyzer and the upcoming qchdman.
_________________________
We're searching for QMC2 translators & support for existing translations. Interested? See here!

Top
#78872 - 05/08/12 01:11 PM Re: QMC2 - MAME/MESS Frontend [Re: Anna Wu]
R. Belmont Online   content
Very Senior Member

Registered: 03/17/01
Posts: 13172
Loc: USA
Not to be rude, but the source is far more of an expert on this stuff than we are at this point smile Just go with what the .h file says.

Top
#78876 - 05/08/12 02:59 PM Re: QMC2 - MAME/MESS Frontend [Re: R. Belmont]
qmc2 Offline
Very Senior Member

Registered: 05/29/08
Posts: 3028
Loc: Germany
Originally Posted By: R. Belmont
Not to be rude, but the source is far more of an expert on this stuff than we are at this point smile

That doesn't sound rude, but funny smile!

chdcodec.h says this about it, so I think it should be OK:

Code:
// general codecs
const chd_codec_type CHD_CODEC_ZLIB             = CHD_MAKE_TAG('z','l','i','b');
const chd_codec_type CHD_CODEC_LZMA             = CHD_MAKE_TAG('l','z','m','a');
const chd_codec_type CHD_CODEC_HUFFMAN          = CHD_MAKE_TAG('h','u','f','f');
const chd_codec_type CHD_CODEC_FLAC             = CHD_MAKE_TAG('f','l','a','c');

// general codecs with CD frontend
const chd_codec_type CHD_CODEC_CD_ZLIB          = CHD_MAKE_TAG('c','d','z','l');
const chd_codec_type CHD_CODEC_CD_LZMA          = CHD_MAKE_TAG('c','d','l','z');
const chd_codec_type CHD_CODEC_CD_FLAC          = CHD_MAKE_TAG('c','d','f','l');

// A/V codecs
const chd_codec_type CHD_CODEC_AVHUFF           = CHD_MAKE_TAG('a','v','h','u');
_________________________
We're searching for QMC2 translators & support for existing translations. Interested? See here!

Top
#78877 - 05/08/12 03:16 PM Re: QMC2 - MAME/MESS Frontend [Re: qmc2]
Anna Wu Offline
Very Senior Member

Registered: 07/28/07
Posts: 3939
Oki, with Qt 4.8.1 I´m able to compile qchdman. smile
With Qt 4.7.3 no way.



I will add the qchdman as WIP tool in my Windows packages (Releases)

_________________________
Anna's Playground for QMC2

Top
#78878 - 05/08/12 04:49 PM Re: QMC2 - MAME/MESS Frontend [Re: Anna Wu]
qmc2 Offline
Very Senior Member

Registered: 05/29/08
Posts: 3028
Loc: Germany
Thanks for testing, Anna!

@Others: please note that Anna has a small issue with her MinGW / Qt 4.7 installation, it generally also works with Qt 4.7.
_________________________
We're searching for QMC2 translators & support for existing translations. Interested? See here!

Top
#78879 - 05/08/12 04:51 PM Re: QMC2 - MAME/MESS Frontend [Re: qmc2]
Anna Wu Offline
Very Senior Member

Registered: 07/28/07
Posts: 3939
Originally Posted By: qmc2
Thanks for testing, Anna!

@Others: please note that Anna has a small issue with her MinGW / Qt 4.7 installation, it generally also works with Qt 4.7.


I don`t believe
I don`t believe
I don`t believe
...............

; )
_________________________
Anna's Playground for QMC2

Top
#78880 - 05/08/12 05:35 PM Re: QMC2 - MAME/MESS Frontend [Re: Anna Wu]
B2K24 Offline
Senior Member

Registered: 04/02/11
Posts: 173
Any chance of adding the capability of batch info or verify operations that logged everything to a file when specifying a root directory?

I have already a batch file that converts everything, but it would be useful to have the option of running verify or info and having the results logged for an entire set.

Top
#78882 - 05/08/12 06:05 PM Re: QMC2 - MAME/MESS Frontend [Re: B2K24]
Anna Wu Offline
Very Senior Member

Registered: 07/28/07
Posts: 3939
Here the new Windows builds (32-bit).
Can someone test my builds (Archive + Installer) please?
Because I removed old (Qt 4.7.3) and added new files (Qt 4.8.1), all Phonon multimedia framework functions like YouTube/MP3 player/MiniWebBrowser should work as usual.

r3788

- MAME/MESS variants: new templates for the 0.145u8 compatibility.
- WIP version of the qchdman tool (separate) added.

Note: Not all fixes and improvements are listed. For more details check the SVN Repository.

The SourceForge site is offline at moment, sorry.

DL

Archive
Installer
_________________________
Anna's Playground for QMC2

Top
#78883 - 05/08/12 06:13 PM Re: QMC2 - MAME/MESS Frontend [Re: qmc2]
Kaylee Online   sad
Senior Member

Registered: 08/29/09
Posts: 653
Originally Posted By: qmc2
Thanks for testing, Anna!

@Others: please note that Anna has a small issue with her MinGW / Qt 4.7 installation, it generally also works with Qt 4.7.
I also can't compile it laugh Same problem as AnnaWu

Top
#78886 - 05/08/12 07:16 PM Re: QMC2 - MAME/MESS Frontend [Re: B2K24]
qmc2 Offline
Very Senior Member

Registered: 05/29/08
Posts: 3028
Loc: Germany
Originally Posted By: B2K24
Any chance of adding the capability of batch info or verify operations that logged everything to a file when specifying a root directory?

I have already a batch file that converts everything, but it would be useful to have the option of running verify or info and having the results logged for an entire set.

Yeah, I plan to support simple 'jobs' that would allow things like these...
_________________________
We're searching for QMC2 translators & support for existing translations. Interested? See here!

Top
Page 230 of 331 < 1 2 ... 228 229 230 231 232 ... 330 331 >


Who's Online
5 registered (Phil Bennett, palindrome, etabeta78, Curt Coder, Pernod), 15 Guests and 1 Spider online.
Key: Admin, Global Mod, Mod
Shout Box

Forum Stats
4345 Members
9 Forums
7228 Topics
87121 Posts

Max Online: 183 @ 03/06/12 06:21 PM