Jim

Joined: Aug 15, 2005
Messages: 34
Location: China
Offline
|
hi Ralf,
in TagConstants.getTagName your code is:
case DEFINE_BITS_JPEG_2:
result = "DefineBitsJPEG2";
break;
case DEFINE_BITS_JPEG_3:
result = "DefineBitsJPEG2";
break;
I think,
case DEFINE_BITS_JPEG_2:
result = "DefineBitsJPEG2";
break;
case DEFINE_BITS_JPEG_3:
result = "DefineBitsJPEG3";
break;
is the better.
|