diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-27 22:49:52 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-13 15:18:24 +0100 |
commit | d5e87df9029b5b14da95d48d5ffa63f58d2cc527 (patch) | |
tree | 3db5986b7645fadd2f680491decd5765faa63f5e /libavcodec/h261.h | |
parent | 725e2300af90eb005ecdde915ba59ee3a0dc5a7a (diff) | |
download | ffmpeg-d5e87df9029b5b14da95d48d5ffa63f58d2cc527.tar.gz |
avcodec/h261: Separate decode and encode contexts
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/h261.h')
-rw-r--r-- | libavcodec/h261.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/h261.h b/libavcodec/h261.h index 25728a295d..ff1903e508 100644 --- a/libavcodec/h261.h +++ b/libavcodec/h261.h @@ -35,15 +35,7 @@ * H261Context */ typedef struct H261Context { - MpegEncContext s; - - int current_mba; - int mba_diff; int mtype; - int current_mv_x; - 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; #define MB_TYPE_H261_FIL 0x800000 |