]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/avc.h
lavf: remove disabled FF_API_RTSP_URL_OPTIONS cruft
[ffmpeg] / libavformat / avc.h
index 7e63d06ccbed81524c98336c8b22a03e53a57a32..56122125a97f7c60a8b29e8a702107e2ce12f0af 100644 (file)
@@ -2,30 +2,32 @@
  * AVC helper functions for muxers
  * Copyright (c) 2008 Aurelien Jacobs <aurel@gnuage.org>
  *
- * This file is part of FFmpeg.
+ * This file is part of Libav.
  *
- * FFmpeg is free software; you can redistribute it and/or
+ * Libav is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
- * FFmpeg is distributed in the hope that it will be useful,
+ * Libav is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with FFmpeg; if not, write to the Free Software
+ * License along with Libav; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#ifndef AVC_H
-#define AVC_H
+#ifndef AVFORMAT_AVC_H
+#define AVFORMAT_AVC_H
 
 #include <stdint.h>
 #include "avio.h"
 
-int avc_parse_nal_units(uint8_t *buf_in, uint8_t **buf, int *size);
-int isom_write_avcc(ByteIOContext *pb, uint8_t *data, int len);
+int ff_avc_parse_nal_units(AVIOContext *s, const uint8_t *buf, int size);
+int ff_avc_parse_nal_units_buf(const uint8_t *buf_in, uint8_t **buf, int *size);
+int ff_isom_write_avcc(AVIOContext *pb, const uint8_t *data, int len);
+const uint8_t *ff_avc_find_startcode(const uint8_t *p, const uint8_t *end);
 
-#endif /* AVC_H */
+#endif /* AVFORMAT_AVC_H */