diff options
author | Clément Bœsch <u@pkh.me> | 2017-01-30 11:50:38 +0100 |
---|---|---|
committer | Clément Bœsch <cboesch@gopro.com> | 2017-01-30 12:03:30 +0100 |
commit | 3a3554871a138101311125bdd2358be18527b951 (patch) | |
tree | 19a70ad01f6e25cdc9908817732219ff905ce405 /libavcodec/hevcdsp_template.c | |
parent | 13564fc24d8248a1f9a987ce1bbd483c72609438 (diff) | |
download | ffmpeg-3a3554871a138101311125bdd2358be18527b951.tar.gz |
lavc/hevcdsp: fix pretty printing mistake
"Issue" introduced in 83976e40e89655162e5394cf8915d9b6d89702d9.
Diffstat (limited to 'libavcodec/hevcdsp_template.c')
-rw-r--r-- | libavcodec/hevcdsp_template.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/hevcdsp_template.c b/libavcodec/hevcdsp_template.c index b840d179c3..78eb3545cd 100644 --- a/libavcodec/hevcdsp_template.c +++ b/libavcodec/hevcdsp_template.c @@ -1497,7 +1497,9 @@ static void FUNC(put_hevc_epel_bi_w_hv)(uint8_t *_dst, ptrdiff_t _dststride, uin dst += dststride; src2 += MAX_PB_SIZE; } -}// line zero +} + +// line zero #define P3 pix[-4 * xstride] #define P2 pix[-3 * xstride] #define P1 pix[-2 * xstride] |