Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 723098
Collapse All | Expand All

(-)file_not_specified_in_diff (-12 / +12 lines)
Line  Link Here
0
-- a/libutil/Utility.cpp
0
++ b/libutil/Utility.cpp
Lines 493-499 Link Here
493
        if( codes.find( code ) == codes.end() )
493
        if( codes.find( code ) == codes.end() )
494
            continue;
494
            continue;
495
495
496
        switch( code ) {
496
        switch( static_cast<unsigned>(code) ) {
497
            case 'z':
497
            case 'z':
498
                _optimize = true;
498
                _optimize = true;
499
                break;
499
                break;
500
-- a/util/mp4art.cpp
500
++ b/util/mp4art.cpp
Lines 376-382 Link Here
376
{
376
{
377
    handled = true;
377
    handled = true;
378
378
379
    switch( code ) {
379
    switch( static_cast<unsigned>(code) ) {
380
        case LC_ART_ANY:
380
        case LC_ART_ANY:
381
            _artFilter = numeric_limits<uint32_t>::max();
381
            _artFilter = numeric_limits<uint32_t>::max();
382
            break;
382
            break;
383
-- a/util/mp4chaps.cpp
383
++ b/util/mp4chaps.cpp
Lines 632-638 Link Here
632
{
632
{
633
    handled = true;
633
    handled = true;
634
634
635
    switch( code ) {
635
    switch( static_cast<unsigned>(code) ) {
636
        case 'A':
636
        case 'A':
637
        case LC_CHPT_ANY:
637
        case LC_CHPT_ANY:
638
            _ChapterType = MP4ChapterTypeAny;
638
            _ChapterType = MP4ChapterTypeAny;
639
-- a/util/mp4file.cpp
639
++ b/util/mp4file.cpp
Lines 189-195 Link Here
189
{
189
{
190
    handled = true;
190
    handled = true;
191
191
192
    switch( code ) {
192
    switch( static_cast<unsigned>(code) ) {
193
        case LC_LIST:
193
        case LC_LIST:
194
            _action = &FileUtility::actionList;
194
            _action = &FileUtility::actionList;
195
            break;
195
            break;
196
-- a/util/mp4subtitle.cpp
196
++ b/util/mp4subtitle.cpp
Lines 164-170 Link Here
164
{
164
{
165
    handled = true;
165
    handled = true;
166
166
167
    switch( code ) {
167
    switch( static_cast<unsigned>(code) ) {
168
        case LC_LIST:
168
        case LC_LIST:
169
            _action = &SubtitleUtility::actionList;
169
            _action = &SubtitleUtility::actionList;
170
            break;
170
            break;
171
-- a/util/mp4track.cpp
171
++ b/util/mp4track.cpp
Lines 788-794 Link Here
788
{
788
{
789
    handled = true;
789
    handled = true;
790
790
791
    switch( code ) {
791
    switch( static_cast<unsigned>(code) ) {
792
        case LC_TRACK_WILDCARD:
792
        case LC_TRACK_WILDCARD:
793
            _trackMode = TM_WILDCARD;
793
            _trackMode = TM_WILDCARD;
794
            break;
794
            break;

Return to bug 723098