Mercurial > libavformat.hg
changeset 356:72c7cf2f3a7a libavformat
CONFIG_ENCODERS fix by (Ronald Bultje <rbultje at ronald dot bitfreak dot net>)
author | michael |
---|---|
date | Sat, 17 Jan 2004 22:02:07 +0000 |
parents | 46029c682234 |
children | f4f573c7dc56 |
files | mpeg.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mpeg.c Sat Jan 17 20:26:44 2004 +0000 +++ b/mpeg.c Sat Jan 17 22:02:07 2004 +0000 @@ -74,13 +74,13 @@ #define AC3_ID 0x80 #define LPCM_ID 0xa0 +static const int lpcm_freq_tab[4] = { 48000, 96000, 44100, 32000 }; + #ifdef CONFIG_ENCODERS extern AVOutputFormat mpeg1system_mux; extern AVOutputFormat mpeg1vcd_mux; extern AVOutputFormat mpeg2vob_mux; -static const int lpcm_freq_tab[4] = { 48000, 96000, 44100, 32000 }; - static int put_pack_header(AVFormatContext *ctx, uint8_t *buf, int64_t timestamp) {