projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b054580
)
dnxhdenc: fix pointer type warning
author
Michael Niedermayer
<michaelni@gmx.at>
Thu, 30 Aug 2012 09:47:57 +0000
(11:47 +0200)
committer
Michael Niedermayer
<michaelni@gmx.at>
Thu, 30 Aug 2012 09:47:57 +0000
(11:47 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/dnxhdenc.c
patch
|
blob
|
history
diff --git
a/libavcodec/dnxhdenc.c
b/libavcodec/dnxhdenc.c
index
24767fd
..
5fa721e
100644
(file)
--- a/
libavcodec/dnxhdenc.c
+++ b/
libavcodec/dnxhdenc.c
@@
-71,7
+71,7
@@
static void dnxhd_8bit_get_pixels_8x4_sym(DCTELEM *restrict block, const uint8_t
static av_always_inline void dnxhd_10bit_get_pixels_8x4_sym(DCTELEM *restrict block, const uint8_t *pixels, int line_size)
{
int i;
- const uint16_t* pixels16 = pixels;
+ const uint16_t* pixels16 =
(const uint16_t*)
pixels;
line_size >>= 1;
for (i = 0; i < 4; i++) {