]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/bytestream.h
ansi: remove an extra return
[ffmpeg] / libavcodec / bytestream.h
index 444f758e5d9298d2a394e27870da119fcd8fc5ca..0f89558e3d29465058a94fdb5d92092c8a69f85d 100644 (file)
 #include "libavutil/common.h"
 #include "libavutil/intreadwrite.h"
 
-typedef struct {
+typedef struct GetByteContext {
     const uint8_t *buffer, *buffer_end, *buffer_start;
 } GetByteContext;
 
-typedef struct {
+typedef struct PutByteContext {
     uint8_t *buffer, *buffer_end, *buffer_start;
     int eof;
 } PutByteContext;