Changeset 32132
- Timestamp:
- 01/06/15 13:23:08 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/player.h
r32130 r32132 2324 2324 if(type > 3) 2325 2325 { 2326 printf("type %i nicht unterst �tzt\n", type);2326 printf("type %i nicht unterstützt\n", type); 2327 2327 return -1; 2328 2328 } … … 2545 2545 g_print("video stream %d:\n", i); 2546 2546 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"); 2548 2548 g_free(str); 2549 2549 gst_tag_list_free(tags); … … 2562 2562 if(gst_tag_list_get_string (tags, GST_TAG_AUDIO_CODEC, &str)) 2563 2563 { 2564 g_print(" �codec: %s\n", str);2564 g_print(" codec: %s\n", str); 2565 2565 g_free(str); 2566 2566 } 2567 2567 if(gst_tag_list_get_string (tags, GST_TAG_LANGUAGE_CODE, &str)) 2568 2568 { 2569 g_print(" �language: %s\n", str);2569 g_print(" language: %s\n", str); 2570 2570 g_free(str); 2571 2571 } 2572 2572 if(gst_tag_list_get_uint (tags, GST_TAG_BITRATE, &rate)) 2573 2573 { 2574 g_print(" �bitrate: %d\n", rate);2574 g_print(" bitrate: %d\n", rate); 2575 2575 } 2576 2576 gst_tag_list_free(tags); … … 2589 2589 if(gst_tag_list_get_string (tags, GST_TAG_LANGUAGE_CODE, &str)) 2590 2590 { 2591 g_print(" �language: %s\n", str);2591 g_print(" language: %s\n", str); 2592 2592 g_free(str); 2593 2593 } … … 2596 2596 else 2597 2597 { 2598 g_print(" �no tags found\n");2598 g_print(" no tags found\n"); 2599 2599 } 2600 2600 }
Note: See TracChangeset
for help on using the changeset viewer.