• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/

Lines Matching defs:video_stream

636 	int audio_stream = -1, video_stream = -1;
670 else if( video_stream == -1 &&
673 video_stream = i;
678 if( video_stream == -1 )
792 if( video_stream >= 0 )
795 asprintf(&m.resolution, "%dx%d", ctx->streams[video_stream]->codec->width, ctx->streams[video_stream]->codec->height);
807 switch( ctx->streams[video_stream]->codec->codec_id )
812 if( (ctx->streams[video_stream]->codec->width == 352) &&
813 (ctx->streams[video_stream]->codec->height <= 288) )
823 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is %s MPEG2 TS\n", video_stream, basename(path), m.resolution);
833 if( (ctx->streams[video_stream]->codec->width >= 1280) &&
834 (ctx->streams[video_stream]->codec->height >= 720) )
844 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is %s MPEG2 PS\n", video_stream, basename(path), m.resolution);
846 if( (ctx->streams[video_stream]->codec->height == 576) ||
847 (ctx->streams[video_stream]->codec->height == 288) )
856 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s [UNKNOWN CONTAINER] is %s MPEG2\n", video_stream, basename(path), m.resolution);
871 if( ctx->streams[video_stream]->codec->width <= 720 &&
872 ctx->streams[video_stream]->codec->height <= 576 &&
873 ctx->streams[video_stream]->codec->bit_rate <= 10000000 )
875 else if( ctx->streams[video_stream]->codec->width <= 1920 &&
876 ctx->streams[video_stream]->codec->height <= 1152 &&
877 ctx->streams[video_stream]->codec->bit_rate <= 20000000 )
909 ctx->streams[video_stream]->codec->width,
910 ctx->streams[video_stream]->codec->height,
911 ctx->streams[video_stream]->codec->bit_rate);
917 if( ctx->streams[video_stream]->codec->width <= 720 &&
918 ctx->streams[video_stream]->codec->height <= 576 &&
919 ctx->streams[video_stream]->codec->bit_rate <= 10000000 &&
940 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is h.264\n", video_stream, basename(path));
943 if( ctx->streams[video_stream]->codec->codec_tag == get_fourcc("XVID") )
945 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is %s XViD\n", video_stream, basename(path), m.resolution);
948 else if( ctx->streams[video_stream]->codec->codec_tag == get_fourcc("DX50") )
950 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is %s DiVX5\n", video_stream, basename(path), m.resolution);
953 else if( ctx->streams[video_stream]->codec->codec_tag == get_fourcc("DIVX") )
955 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is DiVX\n", video_stream, basename(path));
981 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is MPEG4 [%X]\n", video_stream, basename(path), ctx->streams[video_stream]->codec->codec_tag);
986 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is VC1\n", video_stream, basename(path));
989 if( (ctx->streams[video_stream]->codec->width <= 352) &&
990 (ctx->streams[video_stream]->codec->height <= 288) &&
1008 else if( (ctx->streams[video_stream]->codec->width <= 720) &&
1009 (ctx->streams[video_stream]->codec->height <= 576) &&
1030 else if( (ctx->streams[video_stream]->codec->width <= 1920) &&
1031 (ctx->streams[video_stream]->codec->height <= 1080) &&
1053 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is %s [type %d]\n", video_stream, basename(path), m.resolution, ctx->streams[video_stream]->codec->codec_id);