~ubuntu-branches/ubuntu/trusty/libav/trusty

« back to all changes in this revision

Viewing changes to libavcodec/xvmc.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler, Jonathan Nieder, Reinhard Tartler
  • Date: 2011-05-13 12:31:33 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (1.3.4 sid)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20110513123133-zqcsj91sf5489y4s
Tags: 4:0.7~beta2-1
[ Jonathan Nieder ]
* only install doc/APIChanges in *-dev and libav-doc packages
* move note on source package lineage to README.Debian
* install NEWS.Debian in libavcodec-dev
* use dpkg source format 3.0 (quilt)
* allow "debian/rules clean" as unprivileged user

[ Reinhard Tartler ]
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
#include "avcodec.h"
27
27
 
28
 
#if LIBAVCODEC_VERSION_MAJOR < 53
29
 
#define AV_XVMC_STATE_DISPLAY_PENDING          1  /**  the surface should be shown, the video driver manipulates this */
30
 
#define AV_XVMC_STATE_PREDICTION               2  /**  the surface is needed for prediction, the codec manipulates this */
31
 
#define AV_XVMC_STATE_OSD_SOURCE               4  /**  the surface is needed for subpicture rendering */
32
 
#endif
33
28
#define AV_XVMC_ID                    0x1DC711C0  /**< special value to ensure that regular pixel routines haven't corrupted the struct
34
29
                                                       the number is 1337 speak for the letters IDCT MCo (motion compensation) */
35
30
 
151
146
                        of coded blocks it contains.
152
147
    */
153
148
    int             next_free_data_block_num;
154
 
 
155
 
/** extensions may be placed here */
156
 
#if LIBAVCODEC_VERSION_MAJOR < 53
157
 
//@{
158
 
    /** State flags used to work around limitations in the MPlayer video system.
159
 
        0   - Surface is not used.
160
 
        1   - Surface is still held in application to be displayed or is
161
 
              still visible.
162
 
        2   - Surface is still held in libavcodec buffer for prediction.
163
 
    */
164
 
    int             state;
165
 
 
166
 
    /** pointer to the surface where the subpicture is rendered */
167
 
    void*           p_osd_target_surface_render;
168
 
//}@
169
 
#endif
170
149
};
171
150
 
172
151
#endif /* AVCODEC_XVMC_H */