Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 532598
Collapse All | Expand All

(-)a/libmpdemux/ebml.c (-3 / +4 lines)
Lines 28-34 Link Here
28
#include "ebml.h"
28
#include "ebml.h"
29
#include "libavutil/common.h"
29
#include "libavutil/common.h"
30
#include "mpbswap.h"
30
#include "mpbswap.h"
31
#include "libavutil/intfloat_readwrite.h"
31
#include "libavutil/intfloat.h"
32
#include "libavutil/intreadwrite.h"
32
33
33
34
34
#ifndef SIZE_MAX
35
#ifndef SIZE_MAX
Lines 185-195 Link Here
185
    len = ebml_read_length(s, &l);
186
    len = ebml_read_length(s, &l);
186
    switch (len) {
187
    switch (len) {
187
    case 4:
188
    case 4:
188
        value = av_int2flt(stream_read_dword(s));
189
        value = av_int2float(stream_read_dword(s));
189
        break;
190
        break;
190
191
191
    case 8:
192
    case 8:
192
        value = av_int2dbl(stream_read_qword(s));
193
        value = av_int2double(stream_read_qword(s));
193
        break;
194
        break;
194
195
195
    default:
196
    default:

Return to bug 532598