[FFmpeg-cvslog] avcodec/vdpau_hevc: Properly signal the num_delta_pocs from the SPS RPS

Philip Langdale git at videolan.org
Tue Aug 4 17:25:20 CEST 2015


ffmpeg | branch: master | Philip Langdale <philipl at overt.org> | Sat Jun 13 10:53:42 2015 -0700| [f038bbd4edd7626922656ce1fe6bc8ff57feffa0] | committer: Philip Langdale

avcodec/vdpau_hevc: Properly signal the num_delta_pocs from the SPS RPS

This is the same fix that Hendrik made to dxva2_hevc. It should be
equally required here, although I don't see any visual difference.
Nevertheless, best to stay consistent.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f038bbd4edd7626922656ce1fe6bc8ff57feffa0
---

 libavcodec/vdpau_hevc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/vdpau_hevc.c b/libavcodec/vdpau_hevc.c
index 4ac3249..3c1dc5f 100644
--- a/libavcodec/vdpau_hevc.c
+++ b/libavcodec/vdpau_hevc.c
@@ -213,7 +213,7 @@ static int vdpau_hevc_start_frame(AVCodecContext *avctx,
         /** Corresponds to specification field, NumDeltaPocs[RefRpsIdx].
             Only applicable when short_term_ref_pic_set_sps_flag == 0.
             Implementations will ignore this value in other cases. See 7.4.8. */
-        info->NumDeltaPocsOfRefRpsIdx = sh->short_term_rps->num_delta_pocs;
+        info->NumDeltaPocsOfRefRpsIdx = sh->short_term_rps->rps_idx_num_delta_pocs;
     }
     /** Section 7.6.3.1 of the H.265/HEVC Specification defines the syntax of
         the slice_segment_header. This header contains information that



More information about the ffmpeg-cvslog mailing list