ffmpeg | branch: master | Andreas Rheinhardt <[email protected]> | Wed Oct 4 03:42:46 2023 +0200| [9c1294eaddb88cb0e044c675ccae059a85fc9c6c] | committer: Andreas Rheinhardt
avcodec/vdpau_vc1: Fix indentation Forgotten after af6e232ccf8db2341361f02852017aac48772950. Signed-off-by: Andreas Rheinhardt <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9c1294eaddb88cb0e044c675ccae059a85fc9c6c --- libavcodec/vdpau_vc1.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavcodec/vdpau_vc1.c b/libavcodec/vdpau_vc1.c index 4e5ee14428..0eacc4477d 100644 --- a/libavcodec/vdpau_vc1.c +++ b/libavcodec/vdpau_vc1.c @@ -48,16 +48,16 @@ static int vdpau_vc1_start_frame(AVCodecContext *avctx, switch (s->pict_type) { case AV_PICTURE_TYPE_B: if (s->next_picture_ptr) { - ref = ff_vdpau_get_surface_id(s->next_picture.f); - assert(ref != VDP_INVALID_HANDLE); - info->backward_reference = ref; + ref = ff_vdpau_get_surface_id(s->next_picture.f); + assert(ref != VDP_INVALID_HANDLE); + info->backward_reference = ref; } /* fall-through */ case AV_PICTURE_TYPE_P: if (s->last_picture_ptr) { - ref = ff_vdpau_get_surface_id(s->last_picture.f); - assert(ref != VDP_INVALID_HANDLE); - info->forward_reference = ref; + ref = ff_vdpau_get_surface_id(s->last_picture.f); + assert(ref != VDP_INVALID_HANDLE); + info->forward_reference = ref; } } _______________________________________________ ffmpeg-cvslog mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
