diff imgconvert.c @ 10573:ac49ab818d4d libavcodec

Use av_pix_fmt_descriptors in avcodec_get_chroma_sub_sample(), rather than the PixFmtInfo x_chroma_shift and y_chroma_shift fields.
author stefano
date Thu, 26 Nov 2009 00:33:19 +0000
parents a21b640dba50
children db54dba1f21c
line wrap: on
line diff
--- a/imgconvert.c	Wed Nov 25 23:52:20 2009 +0000
+++ b/imgconvert.c	Thu Nov 26 00:33:19 2009 +0000
@@ -532,8 +532,8 @@
 
 void avcodec_get_chroma_sub_sample(enum PixelFormat pix_fmt, int *h_shift, int *v_shift)
 {
-    *h_shift = pix_fmt_info[pix_fmt].x_chroma_shift;
-    *v_shift = pix_fmt_info[pix_fmt].y_chroma_shift;
+    *h_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_w;
+    *v_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_h;
 }
 
 const char *avcodec_get_pix_fmt_name(enum PixelFormat pix_fmt)