[FFmpeg-devel] [PATCH] dpx: use intfloat.h instead of deprecated intfloat_readwrite.h.

Reimar Döffinger Reimar.Doeffinger at gmx.de
Sun May 11 10:17:04 CEST 2014



On 11.05.2014, at 03:33, Michael Niedermayer <michaelni at gmx.at> wrote:

> On Sat, May 10, 2014 at 09:57:12PM +0200, Reimar Döffinger wrote:
>> ---
>> libavcodec/dpx.c | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>> 
>> diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c
>> index bbb06d2..b170411 100644
>> --- a/libavcodec/dpx.c
>> +++ b/libavcodec/dpx.c
>> @@ -20,7 +20,7 @@
>>  */
>> 
>> #include "libavutil/intreadwrite.h"
>> -#include "libavutil/intfloat_readwrite.h"
>> +#include "libavutil/intfloat.h"
>> #include "libavutil/imgutils.h"
>> #include "bytestream.h"
>> #include "avcodec.h"
>> @@ -151,7 +151,7 @@ static int decode_frame(AVCodecContext *avctx,
>>         buf = avpkt->data + 1724;
>>         i = read32(&buf, endian);
>>         if(i) {
>> -            AVRational q = av_d2q(av_int2flt(i), 4096);
>> +            AVRational q = av_d2q(av_int2floatt(i), 4096);
> 
> are you sure its written with 2 t ?

Grr. I tested it an different tree and copied it over by hand.
I also forgot the signed-off line.
But except for stupid mistakes, any reason not to change it?


More information about the ffmpeg-devel mailing list