vlc | branch: master | Francois Cartegnie <[email protected]> | Thu Dec 17 18:08:10 2015 +0100| [e188f8af42050dc8ec15415aac7dfdc7f10efd5e] | committer: Francois Cartegnie
Revert "hxxx_nal: add nal to rbsp conversion helpers" Probably will never be used as ep3b->rbsp conversion is made useless now. This reverts commit 4bdb1e9931fa99262bf1f28933005416a28d74e4. > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e188f8af42050dc8ec15415aac7dfdc7f10efd5e --- modules/packetizer/hxxx_nal.h | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/modules/packetizer/hxxx_nal.h b/modules/packetizer/hxxx_nal.h index 5c4f654..c0bfd5e 100644 --- a/modules/packetizer/hxxx_nal.h +++ b/modules/packetizer/hxxx_nal.h @@ -101,21 +101,4 @@ static inline uint8_t * hxxx_ep3b_to_rbsp(const uint8_t *p_src, size_t i_src, si return p_dst; } -static inline uint8_t * hxxx_AnnexB_NAL_to_rbsp(const uint8_t *p_src, size_t i_src, size_t *pi_ret) -{ - if(!hxxx_strip_AnnexB_startcode(&p_src, &i_src)) - return NULL; - return hxxx_ep3b_to_rbsp(p_src, i_src, pi_ret); -} - -static inline uint8_t * hxxx_xvc1_NAL_to_rbsp(const uint8_t *p_src, size_t i_src, - uint8_t i_nal_length_size, size_t *pi_ret) -{ - if(i_src < i_nal_length_size) - return NULL; - p_src += i_nal_length_size; - i_src -= i_nal_length_size; - return hxxx_ep3b_to_rbsp(p_src, i_src, pi_ret); -} - #endif // HXXX_NAL_H _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
