diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-01-15 13:38:03 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-03-03 16:43:11 -0500 |
commit | 5602a464c9f9e3c0922f5cfeccaf2fa1c40b2401 (patch) | |
tree | 783511b998940d65fe61a2da3f81e46bbf34cf6d /libavcodec/allcodecs.c | |
parent | 737ca4482bd68d6dc52a1811f5de8e4952ad7036 (diff) | |
download | ffmpeg-5602a464c9f9e3c0922f5cfeccaf2fa1c40b2401.tar.gz |
avcodec: add a Vorbis parser to get packet duration
This also allows for removing some of the Vorbis-related hacks.
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r-- | libavcodec/allcodecs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c index 2844cfcbd7..166f1fd922 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -416,6 +416,7 @@ void avcodec_register_all(void) REGISTER_PARSER (RV30, rv30); REGISTER_PARSER (RV40, rv40); REGISTER_PARSER (VC1, vc1); + REGISTER_PARSER (VORBIS, vorbis); REGISTER_PARSER (VP3, vp3); REGISTER_PARSER (VP8, vp8); |