diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-03-05 11:57:51 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-03-06 16:48:03 +0100 |
commit | 5a4e9fe855282a99586050a507d0a486ad39df5b (patch) | |
tree | c0a4bc3496ea56b0acf6483b301d5969a80c1b26 /libavcodec | |
parent | 5cf7c72757779a740e897a97710aac044fe5258c (diff) | |
download | ffmpeg-5a4e9fe855282a99586050a507d0a486ad39df5b.tar.gz |
avcodec/internal: Fix #if DECODE_AUDIO / ENCODE_AUDIO name mismatch
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h index 069a855a74..05efbfc15a 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -62,7 +62,7 @@ typedef struct AVCodecInternal { */ int is_copy; -#if FF_API_OLD_DECODE_AUDIO +#if FF_API_OLD_ENCODE_AUDIO /** * Internal sample count used by avcodec_encode_audio() to fabricate pts. * Can be removed along with avcodec_encode_audio(). |