diff libdlna-0.2.3/src/image_png.c @ 129:4f6d9621ee00

add multi session streaming & add depending librarys. - libupnp-1.6.6 - libdlna-0.2.3
author Naoya OYAMA <naoya.oyama@gmail.com>
date Sun, 10 Oct 2010 15:33:18 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libdlna-0.2.3/src/image_png.c	Sun Oct 10 15:33:18 2010 +0900
@@ -0,0 +1,96 @@
+/*
+ * libdlna: reference DLNA standards implementation.
+ * Copyright (C) 2007 Benjamin Zores <ben@geexbox.org>
+ *
+ * This file is part of libdlna.
+ *
+ * libdlna is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * libdlna is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with libdlna; if not, write to the Free Software
+ * Foundation, Inc, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <stdlib.h>
+#include <string.h>
+
+#include "dlna_internals.h"
+#include "profiles.h"
+
+/* Profile for image thumbnails */
+static dlna_profile_t png_tn = {
+  .id = "PNG_TN",
+  .mime = MIME_IMAGE_PNG,
+  .label = LABEL_IMAGE_ICON
+};
+
+/* Profile for small icons */
+static dlna_profile_t png_sm_ico = {
+  .id = "PNG_SM_ICO",
+  .mime = MIME_IMAGE_PNG,
+  .label = LABEL_IMAGE_ICON
+};
+
+/* Profile for large icons */
+static dlna_profile_t png_lrg_ico = {
+  .id = "PNG_LRG_ICO",
+  .mime = MIME_IMAGE_PNG,
+  .label = LABEL_IMAGE_ICON
+};
+
+/* Profile for image class content of high resolution */
+static dlna_profile_t png_lrg = {
+  .id = "PNG_LRG",
+  .mime = MIME_IMAGE_PNG,
+  .label = LABEL_IMAGE_PICTURE
+};
+
+static const struct {
+  dlna_profile_t *profile;
+  int max_width;
+  int max_height;
+} png_profiles_mapping[] = {
+  { &png_sm_ico,    48,   48 },
+  { &png_lrg_ico,  120,  120 },
+  { &png_tn,       160,  160 },
+  { &png_lrg,     4096, 4096 },
+  { NULL, 0, 0 }
+};
+
+static dlna_profile_t *
+probe_png (AVFormatContext *ctx,
+           dlna_container_type_t st,
+           av_codecs_t *codecs)
+{
+  int i;
+
+  if (!stream_ctx_is_image (ctx, codecs, st))
+    return NULL;
+  
+  /* check for PNG compliant codec */
+  if (codecs->vc->codec_id != CODEC_ID_PNG)
+    return NULL;
+
+  for (i = 0; png_profiles_mapping[i].profile; i++)
+    if (codecs->vc->width  <= png_profiles_mapping[i].max_width &&
+        codecs->vc->height <= png_profiles_mapping[i].max_height)
+      return png_profiles_mapping[i].profile;
+  
+  return NULL;
+}
+
+dlna_registered_profile_t dlna_profile_image_png = {
+  .id = DLNA_PROFILE_IMAGE_PNG,
+  .class = DLNA_CLASS_IMAGE,
+  .extensions = "png",
+  .probe = probe_png,
+  .next = NULL
+};