aboutsummaryrefslogtreecommitdiffhomepage
path: root/libswscale/yuv2rgb.c
diff options
context:
space:
mode:
authorGravatar stefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-24 12:55:05 +0000
committerGravatar stefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-24 12:55:05 +0000
commit213092c8dcfc925d8d54cf320b60cf298a870696 (patch)
treebbdc7f5e986db757a89523d4e7494818f2ea73be /libswscale/yuv2rgb.c
parent4b2e107710a1f81368433445ee7ed366a4f49700 (diff)
Use av_get_bits_per_pixel() for computing the bits per pixel of the
source and destination format, cache those values in the newly added SwsContext:srcFormatBpp and SwsContext:dstFormatBpp fields, and remove the fmt_depth() function. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30419 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/yuv2rgb.c')
-rw-r--r--libswscale/yuv2rgb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c
index 3f81d0f102..3c7bb3fd9f 100644
--- a/libswscale/yuv2rgb.c
+++ b/libswscale/yuv2rgb.c
@@ -595,7 +595,7 @@ av_cold int ff_yuv2rgb_c_init_tables(SwsContext *c, const int inv_table[4], int
|| c->dstFormat==PIX_FMT_RGB4
|| c->dstFormat==PIX_FMT_RGB4_BYTE
|| c->dstFormat==PIX_FMT_MONOBLACK;
- const int bpp = fmt_depth(c->dstFormat);
+ const int bpp = c->dstFormatBpp;
uint8_t *y_table;
uint16_t *y_table16;
uint32_t *y_table32;