Lines 248-254
Link Here
|
248 |
* |
248 |
* |
249 |
* Returns: A constant string, or NULL |
249 |
* Returns: A constant string, or NULL |
250 |
*/ |
250 |
*/ |
251 |
G_CONST_RETURN gchar * |
251 |
const gchar * |
252 |
ogmdvd_get_video_format_label (gint format) |
252 |
ogmdvd_get_video_format_label (gint format) |
253 |
{ |
253 |
{ |
254 |
static const gchar *video_format[] = |
254 |
static const gchar *video_format[] = |
Lines 272-278
Link Here
|
272 |
* |
272 |
* |
273 |
* Returns: A constant string, or NULL |
273 |
* Returns: A constant string, or NULL |
274 |
*/ |
274 |
*/ |
275 |
G_CONST_RETURN gchar * |
275 |
const gchar * |
276 |
ogmdvd_get_display_aspect_label (gint aspect) |
276 |
ogmdvd_get_display_aspect_label (gint aspect) |
277 |
{ |
277 |
{ |
278 |
static gchar *display_aspect[] = |
278 |
static gchar *display_aspect[] = |
Lines 296-302
Link Here
|
296 |
* |
296 |
* |
297 |
* Returns: A constant string, or NULL |
297 |
* Returns: A constant string, or NULL |
298 |
*/ |
298 |
*/ |
299 |
G_CONST_RETURN gchar * |
299 |
const gchar * |
300 |
ogmdvd_get_audio_format_label (gint format) |
300 |
ogmdvd_get_audio_format_label (gint format) |
301 |
{ |
301 |
{ |
302 |
static gchar *audio_format[] = |
302 |
static gchar *audio_format[] = |
Lines 324-330
Link Here
|
324 |
* |
324 |
* |
325 |
* Returns: A constant string, or NULL |
325 |
* Returns: A constant string, or NULL |
326 |
*/ |
326 |
*/ |
327 |
G_CONST_RETURN gchar * |
327 |
const gchar * |
328 |
ogmdvd_get_audio_channels_label (gint channels) |
328 |
ogmdvd_get_audio_channels_label (gint channels) |
329 |
{ |
329 |
{ |
330 |
static gchar *audio_channels[] = |
330 |
static gchar *audio_channels[] = |
Lines 352-358
Link Here
|
352 |
* |
352 |
* |
353 |
* Returns: A constant string, or NULL |
353 |
* Returns: A constant string, or NULL |
354 |
*/ |
354 |
*/ |
355 |
G_CONST_RETURN gchar * |
355 |
const gchar * |
356 |
ogmdvd_get_audio_quantization_label (gint quantization) |
356 |
ogmdvd_get_audio_quantization_label (gint quantization) |
357 |
{ |
357 |
{ |
358 |
static gchar *audio_quantization[] = |
358 |
static gchar *audio_quantization[] = |
Lines 376-382
Link Here
|
376 |
* |
376 |
* |
377 |
* Returns: A constant string, or NULL |
377 |
* Returns: A constant string, or NULL |
378 |
*/ |
378 |
*/ |
379 |
G_CONST_RETURN gchar * |
379 |
const gchar * |
380 |
ogmdvd_get_audio_content_label (gint content) |
380 |
ogmdvd_get_audio_content_label (gint content) |
381 |
{ |
381 |
{ |
382 |
static gchar *audio_content[] = |
382 |
static gchar *audio_content[] = |
Lines 401-407
Link Here
|
401 |
* |
401 |
* |
402 |
* Returns: A constant string, or NULL |
402 |
* Returns: A constant string, or NULL |
403 |
*/ |
403 |
*/ |
404 |
G_CONST_RETURN gchar * |
404 |
const gchar * |
405 |
ogmdvd_get_subp_content_label (gint content) |
405 |
ogmdvd_get_subp_content_label (gint content) |
406 |
{ |
406 |
{ |
407 |
static gchar *subp_content[] = |
407 |
static gchar *subp_content[] = |
Lines 437-443
Link Here
|
437 |
* |
437 |
* |
438 |
* Returns: A constant string, or NULL |
438 |
* Returns: A constant string, or NULL |
439 |
*/ |
439 |
*/ |
440 |
G_CONST_RETURN gchar * |
440 |
const gchar * |
441 |
ogmdvd_get_language_label (gint code) |
441 |
ogmdvd_get_language_label (gint code) |
442 |
{ |
442 |
{ |
443 |
const gchar *lang; |
443 |
const gchar *lang; |
Lines 460-466
Link Here
|
460 |
* |
460 |
* |
461 |
* Returns: A constant string, or NULL |
461 |
* Returns: A constant string, or NULL |
462 |
*/ |
462 |
*/ |
463 |
G_CONST_RETURN gchar * |
463 |
const gchar * |
464 |
ogmdvd_get_language_iso639_1 (gint code) |
464 |
ogmdvd_get_language_iso639_1 (gint code) |
465 |
{ |
465 |
{ |
466 |
static gchar lang[3]; |
466 |
static gchar lang[3]; |
Lines 489-495
Link Here
|
489 |
* |
489 |
* |
490 |
* Returns: A constant string, or NULL |
490 |
* Returns: A constant string, or NULL |
491 |
*/ |
491 |
*/ |
492 |
G_CONST_RETURN gchar * |
492 |
const gchar * |
493 |
ogmdvd_get_language_iso639_2 (gint code) |
493 |
ogmdvd_get_language_iso639_2 (gint code) |
494 |
{ |
494 |
{ |
495 |
const gchar *lang; |
495 |
const gchar *lang; |