Commit d7888ff6 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '78a3a458' into release/2.4

* commit '78a3a458':
  mp3: Properly use AVCodecContext API

Conflicts:
	libavformat/mp3dec.c

See: 6ad42b3e
See: b851bc20Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 86be9cda 78a3a458
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
#include "id3v1.h" #include "id3v1.h"
#include "replaygain.h" #include "replaygain.h"
#include "libavcodec/avcodec.h"
#include "libavcodec/mpegaudiodecheader.h" #include "libavcodec/mpegaudiodecheader.h"
#define XING_FLAG_FRAMES 0x01 #define XING_FLAG_FRAMES 0x01
...@@ -64,7 +65,7 @@ static int mp3_read_probe(AVProbeData *p) ...@@ -64,7 +65,7 @@ static int mp3_read_probe(AVProbeData *p)
AVCodecContext *avctx = avcodec_alloc_context3(NULL); AVCodecContext *avctx = avcodec_alloc_context3(NULL);
if (!avctx) if (!avctx)
return 0; return AVERROR(ENOMEM);
buf0 = p->buf; buf0 = p->buf;
end = p->buf + p->buf_size - sizeof(uint32_t); end = p->buf + p->buf_size - sizeof(uint32_t);
...@@ -81,7 +82,8 @@ static int mp3_read_probe(AVProbeData *p) ...@@ -81,7 +82,8 @@ static int mp3_read_probe(AVProbeData *p)
for(frames = 0; buf2 < end; frames++) { for(frames = 0; buf2 < end; frames++) {
header = AV_RB32(buf2); header = AV_RB32(buf2);
fsize = avpriv_mpa_decode_header(avctx, header, &sample_rate, &sample_rate, &sample_rate, &sample_rate); fsize = avpriv_mpa_decode_header(avctx, header,
&sample_rate, &sample_rate, &sample_rate, &sample_rate);
if(fsize < 0) if(fsize < 0)
break; break;
buf2 += fsize; buf2 += fsize;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment