Changeset 32132


Ignore:
Timestamp:
01/06/15 13:23:08 (8 years ago)
Author:
gost
Message:

fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/player.h

    r32130 r32132  
    23242324        if(type > 3)
    23252325        {
    2326                 printf("type %i nicht untersttzt\n", type);
     2326                printf("type %i nicht unterstützt\n", type);
    23272327                return -1;
    23282328        }
     
    25452545                        g_print("video stream %d:\n", i);
    25462546                        gst_tag_list_get_string(tags, GST_TAG_VIDEO_CODEC, &str);
    2547                         g_print(" codec: %s\n", str ? str : "unknown");
     2547                        g_print("  codec: %s\n", str ? str : "unknown");
    25482548                        g_free(str);
    25492549                        gst_tag_list_free(tags);
     
    25622562                        if(gst_tag_list_get_string (tags, GST_TAG_AUDIO_CODEC, &str))
    25632563                        {
    2564                                 g_print(" codec: %s\n", str);
     2564                                g_print("  codec: %s\n", str);
    25652565                                g_free(str);
    25662566                        }
    25672567                        if(gst_tag_list_get_string (tags, GST_TAG_LANGUAGE_CODE, &str))
    25682568                        {
    2569                                 g_print(" language: %s\n", str);
     2569                                g_print("  language: %s\n", str);
    25702570                                g_free(str);
    25712571                        }
    25722572                        if(gst_tag_list_get_uint (tags, GST_TAG_BITRATE, &rate))
    25732573                        {
    2574                                 g_print(" bitrate: %d\n", rate);
     2574                                g_print("  bitrate: %d\n", rate);
    25752575                        }
    25762576                        gst_tag_list_free(tags);
     
    25892589                        if(gst_tag_list_get_string (tags, GST_TAG_LANGUAGE_CODE, &str))
    25902590                        {
    2591                                 g_print(" language: %s\n", str);
     2591                                g_print("  language: %s\n", str);
    25922592                                g_free(str);
    25932593                        }
     
    25962596                else
    25972597                {
    2598                         g_print(" no tags found\n");
     2598                        g_print("  no tags found\n");
    25992599                }
    26002600        }
Note: See TracChangeset for help on using the changeset viewer.