~ubuntu-branches/debian/experimental/libav/experimental

« back to all changes in this revision

Viewing changes to libavcodec/mpeg4video.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-08-17 22:33:40 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20140817223340-net3rzywma60pzhz
Tags: 6:11~beta1-1
* New upstream Release v11~alpha2
* build against libgnutls28-dev (Closes: #758447)
* Bump shlibs

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
typedef struct Mpeg4DecContext {
63
63
    MpegEncContext m;
64
64
 
65
 
    ///< number of bits to represent the fractional part of time
 
65
    /// number of bits to represent the fractional part of time
66
66
    int time_increment_bits;
67
67
    int shape;
68
68
    int vol_sprite_usage;
69
69
    int sprite_brightness_change;
70
70
    int num_sprite_warping_points;
71
 
    ///< sprite trajectory points
 
71
    /// sprite trajectory points
72
72
    uint16_t sprite_traj[4][2];
73
 
    ///< sprite shift [isChroma]
 
73
    /// sprite shift [isChroma]
74
74
    int sprite_shift[2];
75
75
 
76
76
    // reversible vlc
77
77
    int rvlc;
78
 
    ///< could this stream contain resync markers
 
78
    /// could this stream contain resync markers
79
79
    int resync_marker;
80
 
    ///< time distance of first I -> B, used for interlaced b frames
 
80
    /// time distance of first I -> B, used for interlaced B-frames
81
81
    int t_frame;
82
82
 
83
83
    int new_pred;
84
84
    int enhancement_type;
85
85
    int scalability;
86
86
    int use_intra_dc_vlc;
87
 
    ///< QP above whch the ac VLC should be used for intra dc
 
87
    /// QP above which the ac VLC should be used for intra dc
88
88
    int intra_dc_threshold;
89
89
 
90
90
    /* bug workarounds */
92
92
    int divx_build;
93
93
    int xvid_build;
94
94
    int lavc_build;
95
 
    ///< flag for having shown the warning about divxs invalid b frames
 
95
    /// flag for having shown the warning about invalid Divx B-frames
96
96
    int showed_packed_warning;
97
 
    int vol_control_parameters; /**< does the stream contain the low_delay flag,
98
 
                                 *   used to work around buggy encoders. */
99
 
 
 
97
    /** does the stream contain the low_delay flag,
 
98
     *  used to work around buggy encoders. */
 
99
    int vol_control_parameters;
100
100
    int cplx_estimation_trash_i;
101
101
    int cplx_estimation_trash_p;
102
102
    int cplx_estimation_trash_b;