diff options
author | Anton Khirnov | 2014-07-05 09:09:15 +0000 |
---|---|---|
committer | Anton Khirnov | 2014-07-09 13:35:07 +0000 |
commit | f6ee61fb05482c617f5deee29a190d8ff483b3d1 (patch) | |
tree | d2d6d3d48c986270164e280c06deadd724bc5b24 /libavcodec/dv.c | |
parent | 3f3232a371cc88696184d9aef1f812656264e56c (diff) |
lavc: export DV profile API used by muxer/demuxer as public
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index bb1a26970f..e05c878ed7 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -51,7 +51,7 @@ /* XXX: also include quantization */ RL_VLC_ELEM ff_dv_rl_vlc[1184]; -static inline void dv_calc_mb_coordinates(const DVprofile *d, int chan, int seq, int slot, +static inline void dv_calc_mb_coordinates(const AVDVProfile *d, int chan, int seq, int slot, uint16_t *tbl) { static const uint8_t off[] = { 2, 6, 8, 0, 4 }; @@ -175,7 +175,7 @@ static const uint8_t dv100_qstep[16] = { static const uint8_t dv_quant_areas[4] = { 6, 21, 43, 64 }; -int ff_dv_init_dynamic_tables(DVVideoContext *ctx, const DVprofile *d) +int ff_dv_init_dynamic_tables(DVVideoContext *ctx, const AVDVProfile *d) { int j,i,c,s,p; uint32_t *factor1, *factor2; |