mirror of https://git.ffmpeg.org/ffmpeg.git
Add support for mp3 contained in oma
Originally committed as revision 13980 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
de8c8181a9
commit
75d27450a1
|
@ -147,6 +147,10 @@ static int oma_read_header(AVFormatContext *s,
|
|||
av_set_pts_info(st, 64, 1, st->codec->sample_rate);
|
||||
av_log(s, AV_LOG_ERROR, "Unsupported codec ATRAC3+!\n");
|
||||
break;
|
||||
case OMA_CODECID_MP3:
|
||||
st->need_parsing = AVSTREAM_PARSE_FULL;
|
||||
framesize = 1024;
|
||||
break;
|
||||
default:
|
||||
av_log(s, AV_LOG_ERROR, "Unsupported codec %d!\n",buf[32]);
|
||||
return -1;
|
||||
|
|
Loading…
Reference in New Issue