summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorPeter Große <bugs@friiks.de>2013-07-04 19:02:21 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-07-05 13:40:13 +0200
commitc6c2231227c1d9031de43496dacdbcb309829b4d (patch)
tree7b910ace4b03769f0ac11e81b531dbc9904f127c /libavcodec
parent47ca9f041cde277f9282da8116113a7117963ab6 (diff)
libavcodec: use 64bit counter in deprecated audio encoder API to prevent problems regarding negative dts
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h
index 754d062970..477cdaf4da 100644
--- a/libavcodec/internal.h
+++ b/libavcodec/internal.h
@@ -82,7 +82,7 @@ typedef struct AVCodecInternal {
* Internal sample count used by avcodec_encode_audio() to fabricate pts.
* Can be removed along with avcodec_encode_audio().
*/
- int sample_count;
+ int64_t sample_count;
#endif
/**