[FFmpeg-cvslog] hevc: fix PPS_A_qualcomm_7( cherry picked from commit 2af177a8761c88eb477a658eebcf4264068aa773)
Mickaël Raulet
git at videolan.org
Sun Oct 20 11:25:08 CEST 2013
ffmpeg | branch: master | Mickaël Raulet <mraulet at insa-rennes.fr> | Sat Oct 19 17:03:59 2013 +0200| [c841d02c056f4315ccd11dc7213a10988ed99ac8] | committer: Michael Niedermayer
hevc: fix PPS_A_qualcomm_7(cherry picked from commit 2af177a8761c88eb477a658eebcf4264068aa773)
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c841d02c056f4315ccd11dc7213a10988ed99ac8
---
libavcodec/hevcpred_template.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/libavcodec/hevcpred_template.c b/libavcodec/hevcpred_template.c
index 53cad42..30f7a51 100644
--- a/libavcodec/hevcpred_template.c
+++ b/libavcodec/hevcpred_template.c
@@ -209,7 +209,12 @@ static void FUNC(intra_pred)(HEVCContext *s, int x0, int y0, int log2_size, int
j = 0;
while (j < size_max_x && !IS_INTRA(j, -1)) j++;
if (j > 0)
- EXTEND_LEFT_CIP(top, j, j+1);
+ if (x0 > 0) {
+ EXTEND_LEFT_CIP(top, j, j+1);
+ } else {
+ EXTEND_LEFT_CIP(top, j, j);
+ top[-1] = top[0];
+ }
left[-1] = top[-1];
j = 0;
}
More information about the ffmpeg-cvslog
mailing list