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

Lines Matching defs:video_stream

572 	int audio_stream = -1, video_stream = -1;
607 else if( video_stream == -1 &&
610 video_stream = i;
615 if( video_stream == -1 )
710 if( video_stream >= 0 )
713 asprintf(&m.resolution, "%dx%d", ctx->streams[video_stream]->codec->width, ctx->streams[video_stream]->codec->height);
725 switch( ctx->streams[video_stream]->codec->codec_id )
730 if( (ctx->streams[video_stream]->codec->width == 352) &&
731 (ctx->streams[video_stream]->codec->height <= 288) )
741 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is %s MPEG2 TS\n", video_stream, basename(path), m.resolution);
751 if( (ctx->streams[video_stream]->codec->width >= 1280) &&
752 (ctx->streams[video_stream]->codec->height >= 720) )
762 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is %s MPEG2 PS\n", video_stream, basename(path), m.resolution);
764 if( (ctx->streams[video_stream]->codec->height == 576) ||
765 (ctx->streams[video_stream]->codec->height == 288) )
774 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s [UNKNOWN CONTAINER] is %s MPEG2\n", video_stream, basename(path), m.resolution);
789 if( ctx->streams[video_stream]->codec->width <= 720 &&
790 ctx->streams[video_stream]->codec->height <= 576 &&
791 ctx->streams[video_stream]->codec->bit_rate <= 10000000 )
793 else if( ctx->streams[video_stream]->codec->width <= 1920 &&
794 ctx->streams[video_stream]->codec->height <= 1152 &&
795 ctx->streams[video_stream]->codec->bit_rate <= 20000000 )
823 ctx->streams[video_stream]->codec->width,
824 ctx->streams[video_stream]->codec->height,
825 ctx->streams[video_stream]->codec->bit_rate);
831 if( ctx->streams[video_stream]->codec->width <= 720 &&
832 ctx->streams[video_stream]->codec->height <= 576 &&
833 ctx->streams[video_stream]->codec->bit_rate <= 10000000 &&
850 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is h.264\n", video_stream, basename(path));
853 if( ctx->streams[video_stream]->codec->codec_tag == get_fourcc("XVID") )
855 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is %s XViD\n", video_stream, basename(path), m.resolution);
858 else if( ctx->streams[video_stream]->codec->codec_tag == get_fourcc("DX50") )
860 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is %s DiVX5\n", video_stream, basename(path), m.resolution);
863 else if( ctx->streams[video_stream]->codec->codec_tag == get_fourcc("DIVX") )
865 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is DiVX\n", video_stream, basename(path));
887 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is MPEG4 [%X]\n", video_stream, basename(path), ctx->streams[video_stream]->codec->codec_tag);
892 DPRINTF(E_DEBUG, L_METADATA, "Stream %d of %s is VC1\n", video_stream, basename(path));
895 if( (ctx->streams[video_stream]->codec->width <= 352) &&
896 (ctx->streams[video_stream]->codec->height <= 288) &&
912 else if( (ctx->streams[video_stream]->codec->width <= 720) &&
913 (ctx->streams[video_stream]->codec->height <= 576) &&
932 else if( (ctx->streams[video_stream]->codec->width <= 1920) &&
933 (ctx->streams[video_stream]->codec->height <= 1080) &&
953 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);