cosmetics: Keep lines below 80 characters where sensibly possible.
Originally committed as revision 17354 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
037f13fe21
commit
df9d2e04bb
@ -54,7 +54,8 @@ struct xvmc_pix_fmt {
|
|||||||
*/
|
*/
|
||||||
short* data_blocks;
|
short* data_blocks;
|
||||||
|
|
||||||
/** Pointer to the macroblock description array allocated by XvMCCreateMacroBlocks().
|
/** Pointer to the macroblock description array allocated by
|
||||||
|
XvMCCreateMacroBlocks().
|
||||||
- application - set during initialization
|
- application - set during initialization
|
||||||
- libavcodec - unchanged
|
- libavcodec - unchanged
|
||||||
*/
|
*/
|
||||||
@ -73,8 +74,8 @@ struct xvmc_pix_fmt {
|
|||||||
*/
|
*/
|
||||||
int total_number_of_data_blocks;
|
int total_number_of_data_blocks;
|
||||||
|
|
||||||
/** Indicates that the hardware would interpret data_blocks as IDCT coefficients
|
/** Indicates that the hardware would interpret data_blocks as IDCT
|
||||||
and perform IDCT on them.
|
coefficients and perform IDCT on them.
|
||||||
- application - set during initialization
|
- application - set during initialization
|
||||||
- libavcodec - unchanged
|
- libavcodec - unchanged
|
||||||
*/
|
*/
|
||||||
@ -133,15 +134,20 @@ struct xvmc_pix_fmt {
|
|||||||
*/
|
*/
|
||||||
int start_mv_blocks_num;
|
int start_mv_blocks_num;
|
||||||
|
|
||||||
/** Number of mv blocks that are filled by libavcodec and have to be passed to the hardware.
|
/** Number of mv blocks that are filled by libavcodec and have to be
|
||||||
- application - zeroes it on get_buffer() or after successful ff_draw_horiz_band()
|
passed to the hardware.
|
||||||
|
- application - zeroes it on get_buffer() or after successful
|
||||||
|
ff_draw_horiz_band().
|
||||||
- libavcodec - increment with one of each stored MB
|
- libavcodec - increment with one of each stored MB
|
||||||
*/
|
*/
|
||||||
int filled_mv_blocks_num;
|
int filled_mv_blocks_num;
|
||||||
|
|
||||||
/** Offset to the next free data block. The mv_blocks hold a number pointing to the data blocks.
|
/** Offset to the next free data block. The mv_blocks hold a number
|
||||||
- application - zeroes it on get_buffer() and after successful ff_draw_horiz_band()
|
pointing to the data blocks.
|
||||||
- libvcodec - each macroblock increases it with the number of coded blocks in it.
|
- application - zeroes it on get_buffer() and after successful
|
||||||
|
ff_draw_horiz_band().
|
||||||
|
- libavcodec - each macroblock increases it with the number
|
||||||
|
of coded blocks in it.
|
||||||
*/
|
*/
|
||||||
int next_free_data_block_num;
|
int next_free_data_block_num;
|
||||||
|
|
||||||
@ -150,11 +156,14 @@ struct xvmc_pix_fmt {
|
|||||||
//@{
|
//@{
|
||||||
/** State - used to work around limitations in the MPlayer video system.
|
/** State - used to work around limitations in the MPlayer video system.
|
||||||
0 - Surface is not used.
|
0 - Surface is not used.
|
||||||
1 - Surface is still held in application to be displayed or is still visible.
|
1 - Surface is still held in application to be displayed or is
|
||||||
|
still visible.
|
||||||
2 - Surface is still held in libavcodec buffer for prediction.
|
2 - Surface is still held in libavcodec buffer for prediction.
|
||||||
*/
|
*/
|
||||||
int state;
|
int state;
|
||||||
void* p_osd_target_surface_render; ///< pointer to the surface where the subpicture is rendered
|
|
||||||
|
/** pointer to the surface where the subpicture is rendered */
|
||||||
|
void* p_osd_target_surface_render;
|
||||||
//}@
|
//}@
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user