~ubuntu-branches/ubuntu/utopic/libav/utopic-proposed

« back to all changes in this revision

Viewing changes to libavformat/rpl.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler, Reinhard Tartler, Rico Tzschichholz
  • Date: 2014-08-30 11:02:45 UTC
  • mfrom: (1.3.47 sid)
  • Revision ID: package-import@ubuntu.com-20140830110245-io3dg7q85wfr7125
Tags: 6:11~beta1-2
[ Reinhard Tartler ]
* Make libavcodec-dev depend on libavresample-dev

[ Rico Tzschichholz ]
* Some fixes and leftovers from soname bumps

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
20
 */
21
21
 
22
 
#include <stdint.h>
 
22
#include <inttypes.h>
23
23
#include <stdlib.h>
24
24
 
25
25
#include "libavutil/avstring.h"
224
224
        }
225
225
        if (ast->codec->codec_id == AV_CODEC_ID_NONE) {
226
226
            av_log(s, AV_LOG_WARNING,
227
 
                   "RPL audio format %i not supported yet!\n",
 
227
                   "RPL audio format %"PRId32" not supported yet!\n",
228
228
                   audio_format);
229
229
        }
230
230
        avpriv_set_pts_info(ast, 32, 1, ast->codec->bit_rate);