diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-02-23 10:21:07 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-02-23 19:56:55 +0100 |
commit | 7340008f18dc7d1557efbf5a331c9452913f7f61 (patch) | |
tree | b82eebff2380308680b15916cd82fc4e816d191b /libavcodec/a64enc.h | |
parent | cfc6ab3199e7ac4197744e17e82144d857886096 (diff) | |
download | ffmpeg-7340008f18dc7d1557efbf5a331c9452913f7f61.tar.gz |
a64multienc: switch to encode2().
We have no decoder, so cannot test if the output is decodable.
Diffstat (limited to 'libavcodec/a64enc.h')
-rw-r--r-- | libavcodec/a64enc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/a64enc.h b/libavcodec/a64enc.h index b64b952fe4..bf5eb02cd1 100644 --- a/libavcodec/a64enc.h +++ b/libavcodec/a64enc.h @@ -50,6 +50,9 @@ typedef struct A64Context { uint8_t *mc_colram; uint8_t *mc_palette; int mc_pal_size; + + /* pts of the next packet that will be output */ + int64_t next_pts; } A64Context; #endif /* AVCODEC_A64ENC_H */ |