Changeset 30993


Ignore:
Timestamp:
11/13/14 15:38:57 (9 years ago)
Author:
gost
Message:

fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/player.h

    r30992 r30993  
    22622262        if(type > 3)
    22632263        {
    2264                 printf("type %i nicht untersttzt\n", type);
     2264                printf("type %i nicht unterstützt\n", type);
    22652265                return -1;
    22662266        }
     
    24832483                        g_print("video stream %d:\n", i);
    24842484                        gst_tag_list_get_string(tags, GST_TAG_VIDEO_CODEC, &str);
    2485                         g_print(" codec: %s\n", str ? str : "unknown");
     2485                        g_print("  codec: %s\n", str ? str : "unknown");
    24862486                        g_free(str);
    24872487                        gst_tag_list_free(tags);
     
    25002500                        if(gst_tag_list_get_string (tags, GST_TAG_AUDIO_CODEC, &str))
    25012501                        {
    2502                                 g_print(" codec: %s\n", str);
     2502                                g_print("  codec: %s\n", str);
    25032503                                g_free(str);
    25042504                        }
    25052505                        if(gst_tag_list_get_string (tags, GST_TAG_LANGUAGE_CODE, &str))
    25062506                        {
    2507                                 g_print(" language: %s\n", str);
     2507                                g_print("  language: %s\n", str);
    25082508                                g_free(str);
    25092509                        }
    25102510                        if(gst_tag_list_get_uint (tags, GST_TAG_BITRATE, &rate))
    25112511                        {
    2512                                 g_print(" bitrate: %d\n", rate);
     2512                                g_print("  bitrate: %d\n", rate);
    25132513                        }
    25142514                        gst_tag_list_free(tags);
     
    25272527                        if(gst_tag_list_get_string (tags, GST_TAG_LANGUAGE_CODE, &str))
    25282528                        {
    2529                                 g_print(" language: %s\n", str);
     2529                                g_print("  language: %s\n", str);
    25302530                                g_free(str);
    25312531                        }
     
    25342534                else
    25352535                {
    2536                         g_print(" no tags found\n");
     2536                        g_print("  no tags found\n");
    25372537                }
    25382538        }
Note: See TracChangeset for help on using the changeset viewer.