diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-04 14:31:58 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-04-05 12:25:12 +0200 |
commit | b78f81c8033904e2e75add0c9a603df6df514a30 (patch) | |
tree | 203bc869e6ad3d45e5da79159fb5384faa07d713 /libavcodec/h261.h | |
parent | 66ac3dbf1e60c27d0f1d779a424c0b33b7ca3780 (diff) | |
download | ffmpeg-b78f81c8033904e2e75add0c9a603df6df514a30.tar.gz |
h261: K&R formatting and prettyprinting cosmetics
Diffstat (limited to 'libavcodec/h261.h')
-rw-r--r-- | libavcodec/h261.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h261.h b/libavcodec/h261.h index b5201b1df6..df9cbe8ac0 100644 --- a/libavcodec/h261.h +++ b/libavcodec/h261.h @@ -33,7 +33,7 @@ /** * H261Context */ -typedef struct H261Context{ +typedef struct H261Context { MpegEncContext s; int current_mba; @@ -44,11 +44,11 @@ typedef struct H261Context{ int current_mv_y; int gob_number; int gob_start_code_skipped; // 1 if gob start code is already read before gob header is read -}H261Context; +} H261Context; #define MB_TYPE_H261_FIL 0x800000 -extern uint8_t ff_h261_rl_table_store[2][2*MAX_RUN + MAX_LEVEL + 3]; +extern uint8_t ff_h261_rl_table_store[2][2 * MAX_RUN + MAX_LEVEL + 3]; void ff_h261_loop_filter(MpegEncContext *s); |