diff options
author | Clément Bœsch | 2012-12-30 22:54:53 +0100 |
---|---|---|
committer | Clément Bœsch | 2012-12-30 22:54:56 +0100 |
commit | 67286fa98b1ebbf005de784b47852f8d429d03c8 (patch) | |
tree | 8434a01b70a8d6ce8adc2f334773afdaa9bc52bc /libavformat/samidec.c | |
parent | 5c68aae90883497d59a2a49cf75816cf5906e14a (diff) |
10l: export ff_bprint_to_extradata between libs using avpriv_ prefix.
Both libavformat and libavcodec requires this function.
Diffstat (limited to 'libavformat/samidec.c')
-rw-r--r-- | libavformat/samidec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/samidec.c b/libavformat/samidec.c index bdde2f466f..332752c2f7 100644 --- a/libavformat/samidec.c +++ b/libavformat/samidec.c @@ -92,7 +92,7 @@ static int sami_read_header(AVFormatContext *s) av_bprint_clear(&buf); } - res = ff_bprint_to_extradata(st->codec, &hdr_buf); + res = avpriv_bprint_to_extradata(st->codec, &hdr_buf); if (res < 0) goto end; |