This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Rename libavcodec/high_bit_depth.h ---> libavcodec/bit_depth_template.c
This naming scheme is used elsewhere, so it's sensible to be consistent.
tags/n0.9
Diego Biurrun
14 years ago
parent
68e39d6efe
commit
c45f629576
5 changed files
with
5 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-0
libavcodec/bit_depth_template.c
+1
-1
libavcodec/dsputil_template.c
+1
-1
libavcodec/h264dsp_template.c
+1
-1
libavcodec/h264idct_template.c
+2
-1
libavcodec/h264pred_template.c
libavcodec/high_bit_depth.h → libavcodec/bit_depth_template.c
View File
+ 1
- 1
libavcodec/dsputil_template.c
View File
@@ -27,7 +27,7 @@
* DSP utils
*/
#include "
high_bit_depth.h
"
#include "
bit_depth_template.c
"
static inline void FUNC(copy_block2)(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h)
{
+ 1
- 1
libavcodec/h264dsp_template.c
View File
@@ -25,7 +25,7 @@
* @author Michael Niedermayer <michaelni@gmx.at>
*/
#include "
high_bit_depth.h
"
#include "
bit_depth_template.c
"
#define op_scale1(x) block[x] = av_clip_pixel( (block[x]*weight + offset) >> log2_denom )
#define op_scale2(x) dst[x] = av_clip_pixel( (src[x]*weights + dst[x]*weightd + offset) >> (log2_denom+1))
+ 1
- 1
libavcodec/h264idct_template.c
View File
@@ -25,7 +25,7 @@
* @author Michael Niedermayer <michaelni@gmx.at>
*/
#include "
high_bit_depth.h
"
#include "
bit_depth_template.c
"
#ifndef AVCODEC_H264IDCT_INTERNAL_H
#define AVCODEC_H264IDCT_INTERNAL_H
+ 2
- 1
libavcodec/h264pred_template.c
View File
@@ -26,7 +26,8 @@
*/
#include "mathops.h"
#include "high_bit_depth.h"
#include "bit_depth_template.c"
static void FUNCC(pred4x4_vertical)(uint8_t *_src, const uint8_t *topright, int _stride){
pixel *src = (pixel*)_src;
Write
Preview
Loading…
Cancel
Save