annotate xvmc.h @ 8927:b978ca882917 libavcodec

Rename unique_id to the way michaelni likes it. (xvmc_id)
author iive
date Sun, 15 Feb 2009 18:45:22 +0000
parents 23051e3e9d25
children ef4e7c8e322a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
1 /*
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
2 * Copyright (C) 2003 Ivan Kalvachev
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
3 *
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
4 * This file is part of FFmpeg.
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
5 *
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
8 * License as published by the Free Software Foundation; either
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
10 *
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
14 * Lesser General Public License for more details.
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
15 *
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
19 */
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
20
8843
00c1d62c3852 Update multiple inclusion guards to match filename.
diego
parents: 8841
diff changeset
21 #ifndef AVCODEC_XVMC_H
00c1d62c3852 Update multiple inclusion guards to match filename.
diego
parents: 8841
diff changeset
22 #define AVCODEC_XVMC_H
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
23
8851
a8fdc730936d Replace useless X11 #includes by the one that actually provides the required
diego
parents: 8850
diff changeset
24 #include <X11/extensions/XvMC.h>
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
25
8899
856ed45c4cfa Add avcodec.h #include so that LIBAVCODEC_VERSION_MAJOR is not undefined.
diego
parents: 8898
diff changeset
26 #include "avcodec.h"
856ed45c4cfa Add avcodec.h #include so that LIBAVCODEC_VERSION_MAJOR is not undefined.
diego
parents: 8898
diff changeset
27
8908
ac0ad123e3f0 Remove obsolete display_flags member from xvmc struct
iive
parents: 8907
diff changeset
28 #if LIBAVCODEC_VERSION_MAJOR < 53
8854
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
29 #define AV_XVMC_STATE_DISPLAY_PENDING 1 /** the surface should be shown, the video driver manipulates this */
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
30 #define AV_XVMC_STATE_PREDICTION 2 /** the surface is needed for prediction, the codec manipulates this */
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
31 #define AV_XVMC_STATE_OSD_SOURCE 4 /** this surface is needed for subpicture rendering */
8908
ac0ad123e3f0 Remove obsolete display_flags member from xvmc struct
iive
parents: 8907
diff changeset
32 #endif
8854
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
33 #define AV_XVMC_RENDER_MAGIC 0x1DC711C0 /**< magic value to ensure that regular pixel routines haven't corrupted the struct */
8913
c9d7846799ac A little better wording of doxygen comments.
iive
parents: 8910
diff changeset
34 // 1337 IDCT MCo
8846
9e3956a4fd28 Rename xvmc flags to follow ffmpeg AV_ notion.
iive
parents: 8845
diff changeset
35
8925
23051e3e9d25 Rename xvmc_pixfmt_render structure to xvmc_pix_fmt.
diego
parents: 8924
diff changeset
36 struct xvmc_pix_fmt {
8913
c9d7846799ac A little better wording of doxygen comments.
iive
parents: 8910
diff changeset
37 /** Set by calling application
c9d7846799ac A little better wording of doxygen comments.
iive
parents: 8910
diff changeset
38 Once set these values are not supposed to be modified.
c9d7846799ac A little better wording of doxygen comments.
iive
parents: 8910
diff changeset
39 */
8852
ff1b704b1f8f doxygen style comments
iive
parents: 8851
diff changeset
40 //@{
8927
b978ca882917 Rename unique_id to the way michaelni likes it. (xvmc_id)
iive
parents: 8925
diff changeset
41 int xvmc_id; ///< used as a check against memory corruption by regular pixel routines or other API structure
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
42
8850
73b84757dc05 whitespace cosmetics: vertical alignment
diego
parents: 8849
diff changeset
43 short* data_blocks;
73b84757dc05 whitespace cosmetics: vertical alignment
diego
parents: 8849
diff changeset
44 XvMCMacroBlock* mv_blocks;
73b84757dc05 whitespace cosmetics: vertical alignment
diego
parents: 8849
diff changeset
45 int total_number_of_mv_blocks;
73b84757dc05 whitespace cosmetics: vertical alignment
diego
parents: 8849
diff changeset
46 int total_number_of_data_blocks;
8854
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
47 int idct; ///< indicate that IDCT acceleration level is used
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
48 int unsigned_intra; ///< +-128 for intra pictures after clipping
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
49 XvMCSurface* p_surface; ///< pointer to rendered surface, never changed
8852
ff1b704b1f8f doxygen style comments
iive
parents: 8851
diff changeset
50 //}@
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
51
8913
c9d7846799ac A little better wording of doxygen comments.
iive
parents: 8910
diff changeset
52 /** Set by the decoder before calling draw_horiz_band()
c9d7846799ac A little better wording of doxygen comments.
iive
parents: 8910
diff changeset
53 need by the XvMCRenderSurface function */
8852
ff1b704b1f8f doxygen style comments
iive
parents: 8851
diff changeset
54 //@{
8854
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
55 XvMCSurface* p_past_surface; ///< pointer to the past surface
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
56 XvMCSurface* p_future_surface; ///< pointer to the future prediction surface
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
57
8913
c9d7846799ac A little better wording of doxygen comments.
iive
parents: 8910
diff changeset
58 unsigned int picture_structure; ///< top/bottom field or frame
8854
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
59 unsigned int flags; ///< XVMC_SECOND_FIELD - 1st or 2nd field in the sequence
8852
ff1b704b1f8f doxygen style comments
iive
parents: 8851
diff changeset
60 //}@
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
61
8907
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
62 /** Offset in the mv array for the current slice:
8913
c9d7846799ac A little better wording of doxygen comments.
iive
parents: 8910
diff changeset
63 - application - zeros it on get_buffer().
8907
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
64 successful draw_horiz_band() may increment it
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
65 with filled_mb_block_num or zero both.
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
66 - libavcodec - unchanged
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
67 */
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
68 int start_mv_blocks_num;
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
69
8907
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
70 /** Processed mv blocks in this slice:
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
71 - application - zeros it on get_buffer() or after successful draw_horiz_band()
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
72 - libavcodec - increment with one of each stored MB
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
73 */
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
74 int filled_mv_blocks_num;
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
75
8913
c9d7846799ac A little better wording of doxygen comments.
iive
parents: 8910
diff changeset
76 /** Offset to the next free data block. The mv_blocks hold number pointing to the data blocks.
8907
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
77 - application - zeroes it on get_buffer() and after successful draw_horiz_band()
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
78 - libvcodec - each macroblock increases it with the number of coded blocks in it.
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
79 */
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
80 int next_free_data_block_num;
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
81
8900
12f4b161ce83 whitespace consistency cosmetics
diego
parents: 8899
diff changeset
82 /** extensions may be placed here */
8898
0e5888f9b8cb Deprecate some unused xvmc structure fields.
iive
parents: 8870
diff changeset
83 #if LIBAVCODEC_VERSION_MAJOR < 53
8852
ff1b704b1f8f doxygen style comments
iive
parents: 8851
diff changeset
84 //@{
8913
c9d7846799ac A little better wording of doxygen comments.
iive
parents: 8910
diff changeset
85 /** State - used to workaround limitations in MPlayer video system.
c9d7846799ac A little better wording of doxygen comments.
iive
parents: 8910
diff changeset
86 0 - Surface not used
c9d7846799ac A little better wording of doxygen comments.
iive
parents: 8910
diff changeset
87 1 - Surface is still hold in application to be displayed or is still visible.
c9d7846799ac A little better wording of doxygen comments.
iive
parents: 8910
diff changeset
88 2 - Surface is still hold in libavcodec buffer for prediction
8907
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
89 */
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
90 int state;
8854
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
91 void* p_osd_target_surface_render; ///< pointer to the surface where subpicture is rendered
8852
ff1b704b1f8f doxygen style comments
iive
parents: 8851
diff changeset
92 //}@
8898
0e5888f9b8cb Deprecate some unused xvmc structure fields.
iive
parents: 8870
diff changeset
93 #endif
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
94 };
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
95
8843
00c1d62c3852 Update multiple inclusion guards to match filename.
diego
parents: 8841
diff changeset
96 #endif /* AVCODEC_XVMC_H */