mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-31 00:47:44 +00:00
new audio/video parser API
Originally committed as revision 2492 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
962d6ae6c5
commit
8424cf505c
4 changed files with 949 additions and 2 deletions
|
@ -193,5 +193,16 @@ PCM_CODEC(CODEC_ID_ADPCM_XA, adpcm_xa);
|
|||
PCM_CODEC(CODEC_ID_ADPCM_ADX, adpcm_adx);
|
||||
|
||||
#undef PCM_CODEC
|
||||
|
||||
/* parsers */
|
||||
av_register_codec_parser(&mpegvideo_parser);
|
||||
av_register_codec_parser(&mpeg4video_parser);
|
||||
av_register_codec_parser(&h263_parser);
|
||||
av_register_codec_parser(&h264_parser);
|
||||
|
||||
av_register_codec_parser(&mpegaudio_parser);
|
||||
#ifdef CONFIG_AC3
|
||||
av_register_codec_parser(&ac3_parser);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue