Module: libav
Branch: master
Commit: 1863a3c7aa897b2077e408ab0bdc57cb3a13d5f3

Author:    Stefano Sabatini <[email protected]>
Committer: Anton Khirnov <[email protected]>
Date:      Mon May  9 21:26:39 2011 +0200

tiff: print log in case of unknown / unsupported tag.

Helps debugging.

Signed-off-by: Anton Khirnov <[email protected]>

---

 libavcodec/tiff.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c
index eaaeb84..08cd3b0 100644
--- a/libavcodec/tiff.c
+++ b/libavcodec/tiff.c
@@ -478,6 +478,8 @@ static int tiff_decode_tag(TiffContext *s, const uint8_t 
*start, const uint8_t *
         if(s->compr == TIFF_G4)
             s->fax_opts = value;
         break;
+    default:
+        av_log(s->avctx, AV_LOG_DEBUG, "Unknown or unsupported tag 
%d/0X%0X\n", tag, tag);
     }
     return 0;
 }

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to