Mercurial > libavformat.hg
changeset 4349:96dba41bad7f libavformat
Add av_ prefix to LZO stuff and thus make it officially part of the public API.
Keep lzo1x_decode until the next major version bump for binary compatibility.
author | reimar |
---|---|
date | Mon, 02 Feb 2009 20:16:00 +0000 |
parents | 1ce2aaf9c918 |
children | b7fdb211ba7b |
files | matroskadec.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/matroskadec.c Mon Feb 02 16:10:46 2009 +0000 +++ b/matroskadec.c Mon Feb 02 20:16:00 2009 +0000 @@ -872,9 +872,9 @@ do { olen = pkt_size *= 3; pkt_data = av_realloc(pkt_data, - pkt_size+LZO_OUTPUT_PADDING); - result = lzo1x_decode(pkt_data, &olen, data, &isize); - } while (result==LZO_OUTPUT_FULL && pkt_size<10000000); + pkt_size+AV_LZO_OUTPUT_PADDING); + result = av_lzo1x_decode(pkt_data, &olen, data, &isize); + } while (result==AV_LZO_OUTPUT_FULL && pkt_size<10000000); if (result) goto failed; pkt_size -= olen;