Mercurial > mplayer.hg
annotate libmpdemux/aac_hdr.h @ 35467:364387ae95f4
Fix bug with stop button and playlist.
Although the current file was stopped and its information still
displayed, play would skip to next file in list. Now, the file
stopped can be resumed.
author | ib |
---|---|
date | Sun, 02 Dec 2012 15:56:19 +0000 |
parents | 928359c13d93 |
children |
rev | line source |
---|---|
30574
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
1 /* |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
2 * This file is part of MPlayer. |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
3 * |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
7 * (at your option) any later version. |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
8 * |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
12 * GNU General Public License for more details. |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
13 * |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
17 */ |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
18 |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
19 #ifndef MPLAYER_AAC_HDR_H |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
20 #define MPLAYER_AAC_HDR_H |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
21 |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
22 #include <stdint.h> |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
23 |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
24 int aac_parse_frame(uint8_t *buf, int *srate, int *num); |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
25 |
928359c13d93
Add separate header for aac_parse_frame(); avoids forward declarations.
diego
parents:
diff
changeset
|
26 #endif /* MPLAYER_AAC_HDR_H */ |