diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-17 09:28:53 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-20 21:06:58 +0200 |
commit | 242c73a0fd664be8fc1d69cc3e383c13524914b5 (patch) | |
tree | b1933dfea43e3919e183aa490b6400d6634de0ea /libavformat/dvenc.c | |
parent | d9cca9fc6a4796c0a4235b25f5f7fd7191813f3a (diff) | |
download | ffmpeg-242c73a0fd664be8fc1d69cc3e383c13524914b5.tar.gz |
lavc: use avpriv_ prefix for some dv symbols used in lavf.
Specifically, ff_dv_frame_profile and ff_dv_codec_profile.
Diffstat (limited to 'libavformat/dvenc.c')
-rw-r--r-- | libavformat/dvenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dvenc.c b/libavformat/dvenc.c index 5c55338e2c..bffad44b9f 100644 --- a/libavformat/dvenc.c +++ b/libavformat/dvenc.c @@ -325,7 +325,7 @@ static DVMuxContext* dv_init_mux(AVFormatContext* s) c->ast[i]->codec->channels != 2)) goto bail_out; } - c->sys = ff_dv_codec_profile(vst->codec); + c->sys = avpriv_dv_codec_profile(vst->codec); if (!c->sys) goto bail_out; |