Mercurial > libavcodec.hg
changeset 9811:87bd4aedc7b1 libavcodec
vp3 and theora decoders use get_buffer, set CODEC_CAP_DR1
| author | bcoudurier |
|---|---|
| date | Fri, 05 Jun 2009 08:44:26 +0000 |
| parents | 8f56bd47d2c8 |
| children | 58d29c191e5a |
| files | vp3.c |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/vp3.c Fri Jun 05 08:42:32 2009 +0000 +++ b/vp3.c Fri Jun 05 08:44:26 2009 +0000 @@ -2335,7 +2335,7 @@ NULL, vp3_decode_end, vp3_decode_frame, - 0, + CODEC_CAP_DR1, NULL, .long_name = NULL_IF_CONFIG_SMALL("Theora"), }; @@ -2350,7 +2350,7 @@ NULL, vp3_decode_end, vp3_decode_frame, - 0, + CODEC_CAP_DR1, NULL, .long_name = NULL_IF_CONFIG_SMALL("On2 VP3"), };
