diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-07-05 09:09:15 +0000 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-07-09 13:35:07 +0000 |
commit | f6ee61fb05482c617f5deee29a190d8ff483b3d1 (patch) | |
tree | d2d6d3d48c986270164e280c06deadd724bc5b24 /libavcodec/dvdec.c | |
parent | 3f3232a371cc88696184d9aef1f812656264e56c (diff) | |
download | ffmpeg-f6ee61fb05482c617f5deee29a190d8ff483b3d1.tar.gz |
lavc: export DV profile API used by muxer/demuxer as public
Diffstat (limited to 'libavcodec/dvdec.c')
-rw-r--r-- | libavcodec/dvdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dvdec.c b/libavcodec/dvdec.c index a03914d23e..336f32c784 100644 --- a/libavcodec/dvdec.c +++ b/libavcodec/dvdec.c @@ -341,7 +341,7 @@ static int dvvideo_decode_frame(AVCodecContext *avctx, DVVideoContext *s = avctx->priv_data; const uint8_t* vsc_pack; int apt, is16_9, ret; - const DVprofile *sys; + const AVDVProfile *sys; sys = avpriv_dv_frame_profile(s->sys, buf, buf_size); if (!sys || buf_size < sys->frame_size) { |