# HG changeset patch # User michael # Date 1223082528 0 # Node ID 58955234a2bd6af777983f540a216cc918b527f1 # Parent 0607ff0877ff80c2d7fe5fef71ebdaf2d7be0a78 Fix indention of NAL type enum. diff -r 0607ff0877ff -r 58955234a2bd h264.h --- a/h264.h Fri Oct 03 23:08:52 2008 +0000 +++ b/h264.h Sat Oct 04 01:08:48 2008 +0000 @@ -88,20 +88,20 @@ /* NAL unit types */ enum { -NAL_SLICE=1, -NAL_DPA, -NAL_DPB, -NAL_DPC, -NAL_IDR_SLICE, -NAL_SEI, -NAL_SPS, -NAL_PPS, -NAL_AUD, -NAL_END_SEQUENCE, -NAL_END_STREAM, -NAL_FILLER_DATA, -NAL_SPS_EXT, -NAL_AUXILIARY_SLICE=19 + NAL_SLICE=1, + NAL_DPA, + NAL_DPB, + NAL_DPC, + NAL_IDR_SLICE, + NAL_SEI, + NAL_SPS, + NAL_PPS, + NAL_AUD, + NAL_END_SEQUENCE, + NAL_END_STREAM, + NAL_FILLER_DATA, + NAL_SPS_EXT, + NAL_AUXILIARY_SLICE=19 }; /**