diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-21 02:11:08 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-21 02:27:33 +0200 |
commit | ce253edf4e5bca101d618d7b3fc453bc982531ea (patch) | |
tree | e9b61e3338d2f5edfb69695276c2e92adf82c808 | |
parent | dd8ffc1925156720fa0acfc9242c358cee8031e9 (diff) | |
download | ffmpeg-ce253edf4e5bca101d618d7b3fc453bc982531ea.tar.gz |
fix shared lib build
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/libavcodec.v | 21 | ||||
-rw-r--r-- | libavcodec/mpeg12enc.c | 2 | ||||
-rw-r--r-- | libavformat/libavformat.v | 4 |
3 files changed, 26 insertions, 1 deletions
diff --git a/libavcodec/libavcodec.v b/libavcodec/libavcodec.v index a9e7674e13..9f6b01d103 100644 --- a/libavcodec/libavcodec.v +++ b/libavcodec/libavcodec.v @@ -4,5 +4,26 @@ LIBAVCODEC_$MAJOR { audio_resample_close; #deprecated, remove after next bump img_get_alpha_info; + dsputil_init; + ff_find_pix_fmt; + ff_framenum_to_drop_timecode; + ff_framenum_to_smtpe_timecode; + ff_raw_pix_fmt_tags; + ff_init_smtpe_timecode; + ff_fft*; + ff_mdct*; + ff_dct*; + ff_rdft*; + ff_prores_idct_put_10_sse2; + ff_simple_idct*; + ff_aanscales; + ff_faan*; + ff_mmx_idct; + ff_fdct*; + fdct_ifast; + j_rev_dct; + ff_mmxext_idct; + ff_idct_xvid*; + ff_jpeg_fdct*; local: *; }; diff --git a/libavcodec/mpeg12enc.c b/libavcodec/mpeg12enc.c index 4b9a222e16..21b957c8cc 100644 --- a/libavcodec/mpeg12enc.c +++ b/libavcodec/mpeg12enc.c @@ -190,7 +190,7 @@ static av_cold int encode_init(AVCodecContext *avctx) } if (s->tc.str) { - s->tc.rate = ff_frame_rate_tab[s->frame_rate_index]; + s->tc.rate = avpriv_frame_rate_tab[s->frame_rate_index]; if (ff_init_smtpe_timecode(s, &s->tc) < 0) return -1; s->avctx->timecode_frame_start = s->tc.start; diff --git a/libavformat/libavformat.v b/libavformat/libavformat.v index 2a49539f0a..7ed2d76647 100644 --- a/libavformat/libavformat.v +++ b/libavformat/libavformat.v @@ -19,5 +19,9 @@ LIBAVFORMAT_$MAJOR { parse_date; dump_format; url_*; + ff_timefilter_destroy; + ff_timefilter_new; + ff_timefilter_update; + ff_timefilter_reset; local: *; }; |