• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna-1.1.5/

Lines Matching refs:video

137 		                            " and MIME glob 'video/*' limit 1", file, file);
675 struct song_metadata video;
681 memset(&video, '\0', sizeof(video));
683 //DEBUG DPRINTF(E_DEBUG, L_METADATA, "Parsing video %s...\n", name);
720 printf("not a video file\n");
721 /* This must not be a video file. */
724 DPRINTF(E_DEBUG, L_METADATA, "File %s does not contain a video stream.\n", basepath);
833 xasprintf(&m.mime, "video/x-msvideo");
848 xasprintf(&m.mime, "video/quicktime");
850 xasprintf(&m.mime, "video/x-matroska");
852 xasprintf(&m.mime, "video/x-flv");
866 xasprintf(&m.mime, "video/mpeg");
910 xasprintf(&m.mime, "video/mpeg");
917 xasprintf(&m.mime, "video/vnd.dlna.mpeg-tts");
932 xasprintf(&m.mime, "video/mpeg");
1032 DPRINTF(E_DEBUG, L_METADATA, "Unsupported h.264 video profile! [%s, %dx%d, %dbps : %s]\n",
1049 DPRINTF(E_DEBUG, L_METADATA, "Unsupported h.264 HP video profile! [%dbps, %d audio : %s]\n",
1105 xasprintf(&m.mime, "video/vnd.dlna.mpeg-tts");
1270 xasprintf(&m.mime, "video/3gpp");
1303 DPRINTF(E_DEBUG, L_METADATA, "Unsupported h.264 video profile! [%dx%d, %dbps]\n",
1331 xasprintf(&m.mime, "video/x-ms-wmv");
1422 xasprintf(&m.mime, "video/x-msvideo");
1432 if( readtags((char *)path, &video, &file, "en_US", "asf") == 0 )
1434 if( video.title && *video.title )
1436 m.title = escape_tag(trim(video.title), 1);
1438 if( video.genre && *video.genre )
1440 m.genre = escape_tag(trim(video.genre), 1);
1442 if( video.contributor[ROLE_TRACKARTIST] && *video.contributor[ROLE_TRACKARTIST] )
1444 m.artist = escape_tag(trim(video.contributor[ROLE_TRACKARTIST]), 1);
1446 if( video.contributor[ROLE_ALBUMARTIST] && *video.contributor[ROLE_ALBUMARTIST] )
1448 m.creator = escape_tag(trim(video.contributor[ROLE_ALBUMARTIST]), 1);
1457 m.thumb_data = video.image;
1458 m.thumb_size = video.image_size;
1498 strcpy(m.mime, "video/x-tivo-mpeg");
1516 xasprintf(&m.mime, "video/x-msvideo");
1518 xasprintf(&m.mime, "video/mpeg");
1520 xasprintf(&m.mime, "video/x-ms-wmv");
1523 xasprintf(&m.mime, "video/quicktime");
1525 xasprintf(&m.mime, "video/mp4");
1527 xasprintf(&m.mime, "video/x-matroska");
1529 xasprintf(&m.mime, "video/x-flv");
1545 freetags(&video);