annotate xvmc.h @ 8908:ac0ad123e3f0 libavcodec

Remove obsolete display_flags member from xvmc struct and mark state defines as obsolete.
author iive
date Sun, 15 Feb 2009 02:17:48 +0000
parents c9e8aed08d17
children a11771712f48
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 */
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
34 // 1337 IDCT MCo
8846
9e3956a4fd28 Rename xvmc flags to follow ffmpeg AV_ notion.
iive
parents: 8845
diff changeset
35
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
36 struct xvmc_render_state {
8853
b0292c878f9d clarify xvmc struct fields usage distribution (internal communication)
iive
parents: 8852
diff changeset
37 /** set by calling application */
8852
ff1b704b1f8f doxygen style comments
iive
parents: 8851
diff changeset
38 //@{
8870
c5112df7f8b8 cosmetics: grammar/spelling/wording fixes in comments
diego
parents: 8864
diff changeset
39 int magic; ///< used as a check against memory corruption by regular pixel routines
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
40
8850
73b84757dc05 whitespace cosmetics: vertical alignment
diego
parents: 8849
diff changeset
41 short* data_blocks;
73b84757dc05 whitespace cosmetics: vertical alignment
diego
parents: 8849
diff changeset
42 XvMCMacroBlock* mv_blocks;
73b84757dc05 whitespace cosmetics: vertical alignment
diego
parents: 8849
diff changeset
43 int total_number_of_mv_blocks;
73b84757dc05 whitespace cosmetics: vertical alignment
diego
parents: 8849
diff changeset
44 int total_number_of_data_blocks;
8854
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
45 int idct; ///< indicate that IDCT acceleration level is used
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
46 int unsigned_intra; ///< +-128 for intra pictures after clipping
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
47 XvMCSurface* p_surface; ///< pointer to rendered surface, never changed
8852
ff1b704b1f8f doxygen style comments
iive
parents: 8851
diff changeset
48 //}@
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
49
8853
b0292c878f9d clarify xvmc struct fields usage distribution (internal communication)
iive
parents: 8852
diff changeset
50 /** set by the decoder
b0292c878f9d clarify xvmc struct fields usage distribution (internal communication)
iive
parents: 8852
diff changeset
51 used by the XvMCRenderSurface function */
8852
ff1b704b1f8f doxygen style comments
iive
parents: 8851
diff changeset
52 //@{
8854
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
53 XvMCSurface* p_past_surface; ///< pointer to the past surface
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
54 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
55
8870
c5112df7f8b8 cosmetics: grammar/spelling/wording fixes in comments
diego
parents: 8864
diff changeset
56 unsigned int picture_structure; ///< top/bottom fields or frame
8854
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
57 unsigned int flags; ///< XVMC_SECOND_FIELD - 1st or 2nd field in the sequence
8852
ff1b704b1f8f doxygen style comments
iive
parents: 8851
diff changeset
58 //}@
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
59
8907
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
60 /** Offset in the mv array for the current slice:
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
61 - application - zeros it on get_buffer().
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
62 successful draw_horiz_band() may increment it
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
63 with filled_mb_block_num or zero both.
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
64 - libavcodec - unchanged
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
65 */
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
66 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
67
8907
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
68 /** Processed mv blocks in this slice:
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
69 - 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
70 - libavcodec - increment with one of each stored MB
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
71 */
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
72 int filled_mv_blocks_num;
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 /** Used in add_mv_block, pointer to next free block
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
75 - 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
76 - 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
77 */
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
78 int next_free_data_block_num;
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
79
8900
12f4b161ce83 whitespace consistency cosmetics
diego
parents: 8899
diff changeset
80 /** extensions may be placed here */
8898
0e5888f9b8cb Deprecate some unused xvmc structure fields.
iive
parents: 8870
diff changeset
81 #if LIBAVCODEC_VERSION_MAJOR < 53
8852
ff1b704b1f8f doxygen style comments
iive
parents: 8851
diff changeset
82 //@{
8907
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
83 /** State - used to workaround limitations in MPlayer vo system.
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
84 0 -Surface not used
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
85 1 -Surface is still hold in application to be displayed or is still visible.
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
86 2 -Surface is still hold in lavcodec buffer for prediction
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
87 */
c9e8aed08d17 Detailed description of the interesting fields in xvmc struct.
iive
parents: 8906
diff changeset
88 int state;
8854
897a2b1f883e whitespace cosmetics: Restore vertical alignment.
diego
parents: 8853
diff changeset
89 void* p_osd_target_surface_render; ///< pointer to the surface where subpicture is rendered
8852
ff1b704b1f8f doxygen style comments
iive
parents: 8851
diff changeset
90 //}@
8898
0e5888f9b8cb Deprecate some unused xvmc structure fields.
iive
parents: 8870
diff changeset
91 #endif
8808
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
92 };
36f2dabd58c9 Rename xvmc_render.h --> xvmc_pixfmt.h and vdpau.h --> vdpau_pixfmt.h as
diego
parents:
diff changeset
93
8843
00c1d62c3852 Update multiple inclusion guards to match filename.
diego
parents: 8841
diff changeset
94 #endif /* AVCODEC_XVMC_H */