Browse Source

Mark ffplay internal variables static. Patch by Diego Pettenò

Originally committed as revision 15546 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Pettenò Luca Barbato 17 years ago
parent
commit
2c676c33a4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      ffplay.c

+ 2
- 2
ffplay.c View File

@@ -217,13 +217,13 @@ static int is_full_screen;
static VideoState *cur_stream;
static int64_t audio_callback_time;

AVPacket flush_pkt;
static AVPacket flush_pkt;

#define FF_ALLOC_EVENT (SDL_USEREVENT)
#define FF_REFRESH_EVENT (SDL_USEREVENT + 1)
#define FF_QUIT_EVENT (SDL_USEREVENT + 2)

SDL_Surface *screen;
static SDL_Surface *screen;

/* packet queue handling */
static void packet_queue_init(PacketQueue *q)


Loading…
Cancel
Save