Skip to content

Commit

Permalink
Attempt to fix H.264 playback following [3488de7]
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartm committed Nov 30, 2012
1 parent 06be922 commit cf5189f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mythtv/libs/libmythtv/mpeg/H264Parser.cpp
Expand Up @@ -600,6 +600,7 @@ bool H264Parser::decode_Header(GetBitContext *gb)
same value of colour_plane_id.
*/
//uint first_mb_in_slice = get_ue_golomb(gb);
get_ue_golomb(gb); // Replaced above line

/*
slice_type specifies the coding type of the slice according to
Expand Down Expand Up @@ -884,6 +885,7 @@ void H264Parser::decode_SPS(GetBitContext * gb)
frame_num as specified in subclause 8.2.5.2.
*/
//bool gaps_in_frame_num_allowed_flag = get_bits1(gb);
get_bits1(gb); // Replaced above line

/*
pic_width_in_mbs_minus1 plus 1 specifies the width of each
Expand Down

0 comments on commit cf5189f

Please sign in to comment.