提交 5fd9c8b9 编写于 作者: D Diego Biurrun

spelling/grammar and whitespace cosmetics

Originally committed as revision 16435 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 26ef65da
/* /*
* Video Decode and Presentation API for UNIX (VDPAU) is used for * The Video Decode and Presentation API for UNIX (VDPAU) is used for
* HW decode acceleration for MPEG-1/2, H.264 and VC-1. * hardware-accelerated decoding of MPEG-1/2, H.264 and VC-1.
* *
* Copyright (C) 2008 NVIDIA. * Copyright (C) 2008 NVIDIA
* *
* This file is part of FFmpeg. * This file is part of FFmpeg.
* *
...@@ -27,15 +27,15 @@ ...@@ -27,15 +27,15 @@
/** /**
* \defgroup Decoder VDPAU Decoder and Renderer * \defgroup Decoder VDPAU Decoder and Renderer
* *
* VDPAU HW acceleration has two modules * VDPAU hardware acceleration has two modules
* - VDPAU Decoding * - VDPAU decoding
* - VDPAU Presentation * - VDPAU presentation
* *
* VDPAU decoding module parses all headers using FFmpeg * The VDPAU decoding module parses all headers using FFmpeg
* parsing mechanism and uses VDPAU for the actual decoding. * parsing mechanisms and uses VDPAU for the actual decoding.
* *
* As per the current implementation, the actual decoding * As per the current implementation, the actual decoding
* and rendering (API calls) are done as part of VDPAU * and rendering (API calls) are done as part of the VDPAU
* presentation (vo_vdpau.c) module. * presentation (vo_vdpau.c) module.
* *
* @{ * @{
...@@ -47,35 +47,33 @@ ...@@ -47,35 +47,33 @@
#include "vdpau/vdpau.h" #include "vdpau/vdpau.h"
#include "vdpau/vdpau_x11.h" #include "vdpau/vdpau_x11.h"
/** /** \brief The videoSurface is used for rendering. */
* \brief The videoSurface is used for render.
*/
#define FF_VDPAU_STATE_USED_FOR_RENDER 1 #define FF_VDPAU_STATE_USED_FOR_RENDER 1
/** /**
* \brief The videoSurface is needed for reference/prediction, * \brief The videoSurface is needed for reference/prediction.
* codec manipulates this. * The codec manipulates this.
*/ */
#define FF_VDPAU_STATE_USED_FOR_REFERENCE 2 #define FF_VDPAU_STATE_USED_FOR_REFERENCE 2
/** /**
* \brief This structure is used as a CALL-BACK between the ffmpeg * \brief This structure is used as a callback between the FFmpeg
* decoder (vd_) and presentation (vo_) module. * decoder (vd_) and presentation (vo_) module.
* This is used for defining a video-frame containing surface, * This is used for defining a video frame containing surface,
* picture-parameter, bitstream informations etc which are passed * picture parameter, bitstream information etc which are passed
* between ffmpeg decoder and its clients. * between the FFmpeg decoder and its clients.
*/ */
struct vdpau_render_state{ struct vdpau_render_state {
VdpVideoSurface surface; ///< used as rendered surface, never changed. VdpVideoSurface surface; ///< Used as rendered surface, never changed.
int state; ///< Holds FF_VDPAU_STATE_* values int state; ///< Holds FF_VDPAU_STATE_* values.
/** Picture Parameter information for all supported codecs */ /** picture parameter information for all supported codecs */
union _VdpPictureInfo { union _VdpPictureInfo {
VdpPictureInfoH264 h264; VdpPictureInfoH264 h264;
} info; } info;
/** Describe size/location of the compressed video data */ /** Describe size/location of the compressed video data. */
int bitstreamBuffersAlloced; int bitstreamBuffersAlloced;
int bitstreamBuffersUsed; int bitstreamBuffersUsed;
VdpBitstreamBuffer *bitstreamBuffers; VdpBitstreamBuffer *bitstreamBuffers;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册