Commit 2992afda authored by Anton Khirnov's avatar Anton Khirnov

mpeg4videodec: remove a write-only variable from MpegEncContext

parent 3b1c0f68
...@@ -1962,7 +1962,7 @@ no_cplx_est: ...@@ -1962,7 +1962,7 @@ no_cplx_est:
int v_sampling_factor_n; int v_sampling_factor_n;
int v_sampling_factor_m; int v_sampling_factor_m;
s->hierachy_type = get_bits1(gb); skip_bits1(gb); // hierarchy_type
skip_bits(gb, 4); /* ref_layer_id */ skip_bits(gb, 4); /* ref_layer_id */
skip_bits1(gb); /* ref_layer_sampling_dir */ skip_bits1(gb); /* ref_layer_sampling_dir */
h_sampling_factor_n = get_bits(gb, 5); h_sampling_factor_n = get_bits(gb, 5);
......
...@@ -590,7 +590,6 @@ typedef struct MpegEncContext { ...@@ -590,7 +590,6 @@ typedef struct MpegEncContext {
int quant_precision; int quant_precision;
int quarter_sample; ///< 1->qpel, 0->half pel ME/MC int quarter_sample; ///< 1->qpel, 0->half pel ME/MC
int scalability; int scalability;
int hierachy_type;
int enhancement_type; int enhancement_type;
int aspect_ratio_info; //FIXME remove int aspect_ratio_info; //FIXME remove
int sprite_warping_accuracy; int sprite_warping_accuracy;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment