mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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_set_pts_info(st, 64, 1, st->codec->sample_rate);
|
||||||
av_log(s, AV_LOG_ERROR, "Unsupported codec ATRAC3+!\n");
|
av_log(s, AV_LOG_ERROR, "Unsupported codec ATRAC3+!\n");
|
||||||
break;
|
break;
|
||||||
|
case OMA_CODECID_MP3:
|
||||||
|
st->need_parsing = AVSTREAM_PARSE_FULL;
|
||||||
|
framesize = 1024;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
av_log(s, AV_LOG_ERROR, "Unsupported codec %d!\n",buf[32]);
|
av_log(s, AV_LOG_ERROR, "Unsupported codec %d!\n",buf[32]);
|
||||||
return -1;
|
return -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user