Commit eb945ab4 authored by Clément Bœsch's avatar Clément Bœsch

ffmpeg: misc cosmetics.

Reduce diff against avconv, and change some doxycomments into normal
comments (no point in doxifying ffmpeg internal fields).
parent 00be2f57
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include "libavformat/avformat.h" #include "libavformat/avformat.h"
#include "libavdevice/avdevice.h" #include "libavdevice/avdevice.h"
#include "libswscale/swscale.h" #include "libswscale/swscale.h"
#include "libswresample/swresample.h"
#include "libavutil/opt.h" #include "libavutil/opt.h"
#include "libavutil/audioconvert.h" #include "libavutil/audioconvert.h"
#include "libavutil/parseutils.h" #include "libavutil/parseutils.h"
...@@ -51,15 +52,14 @@ ...@@ -51,15 +52,14 @@
#include "libavutil/timestamp.h" #include "libavutil/timestamp.h"
#include "libavutil/bprint.h" #include "libavutil/bprint.h"
#include "libavformat/os_support.h" #include "libavformat/os_support.h"
#include "libswresample/swresample.h"
#include "libavformat/ffm.h" // not public API #include "libavformat/ffm.h" // not public API
# include "libavfilter/avcodec.h" # include "libavfilter/avcodec.h"
# include "libavfilter/avfilter.h" # include "libavfilter/avfilter.h"
# include "libavfilter/avfiltergraph.h" # include "libavfilter/avfiltergraph.h"
# include "libavfilter/buffersink.h"
# include "libavfilter/buffersrc.h" # include "libavfilter/buffersrc.h"
# include "libavfilter/buffersink.h"
#if HAVE_SYS_RESOURCE_H #if HAVE_SYS_RESOURCE_H
#include <sys/types.h> #include <sys/types.h>
...@@ -97,7 +97,6 @@ ...@@ -97,7 +97,6 @@
#define VSYNC_VFR 2 #define VSYNC_VFR 2
#define VSYNC_DROP 0xff #define VSYNC_DROP 0xff
// #define SRCA
#define SINKA #define SINKA
const char program_name[] = "ffmpeg"; const char program_name[] = "ffmpeg";
...@@ -228,8 +227,8 @@ typedef struct InputStream { ...@@ -228,8 +227,8 @@ typedef struct InputStream {
/* dts of the last packet read for this stream */ /* dts of the last packet read for this stream */
int64_t dts; int64_t dts;
int64_t next_pts; ///< synthetic pts for the next decode frame int64_t next_pts; /* synthetic pts for the next decode frame */
int64_t pts; ///< current pts of the decoded frame int64_t pts; /* current pts of the decoded frame */
double ts_scale; double ts_scale;
int is_start; /* is 1 at the start and after a discontinuity */ int is_start; /* is 1 at the start and after a discontinuity */
int saw_first_ts; int saw_first_ts;
...@@ -376,8 +375,8 @@ typedef struct OptionsContext { ...@@ -376,8 +375,8 @@ typedef struct OptionsContext {
/* output options */ /* output options */
StreamMap *stream_maps; StreamMap *stream_maps;
int nb_stream_maps; int nb_stream_maps;
AudioChannelMap *audio_channel_maps; ///< one info entry per -map_channel AudioChannelMap *audio_channel_maps; /* one info entry per -map_channel */
int nb_audio_channel_maps; ///< number of (valid) -map_channel settings int nb_audio_channel_maps; /* number of (valid) -map_channel settings */
int metadata_global_manual; int metadata_global_manual;
int metadata_streams_manual; int metadata_streams_manual;
int metadata_chapters_manual; int metadata_chapters_manual;
...@@ -931,8 +930,10 @@ static int configure_video_filters(FilterGraph *fg, AVFilterContext **in_filter, ...@@ -931,8 +930,10 @@ static int configure_video_filters(FilterGraph *fg, AVFilterContext **in_filter,
sample_aspect_ratio = ist->st->codec->sample_aspect_ratio; sample_aspect_ratio = ist->st->codec->sample_aspect_ratio;
snprintf(args, 255, "%d:%d:%d:%d:%d:%d:%d:flags=%d", ist->st->codec->width, snprintf(args, 255, "%d:%d:%d:%d:%d:%d:%d:flags=%d", ist->st->codec->width,
ist->st->codec->height, ist->st->codec->pix_fmt, 1, AV_TIME_BASE, ist->st->codec->height, ist->st->codec->pix_fmt,
sample_aspect_ratio.num, sample_aspect_ratio.den, SWS_BILINEAR + ((ist->st->codec->flags&CODEC_FLAG_BITEXACT) ? SWS_BITEXACT:0)); 1, AV_TIME_BASE,
sample_aspect_ratio.num, sample_aspect_ratio.den,
SWS_BILINEAR + ((ist->st->codec->flags&CODEC_FLAG_BITEXACT) ? SWS_BITEXACT:0));
ret = avfilter_graph_create_filter(&fg->inputs[0]->filter, ret = avfilter_graph_create_filter(&fg->inputs[0]->filter,
avfilter_get_by_name("buffer"), avfilter_get_by_name("buffer"),
...@@ -1482,7 +1483,7 @@ void av_noreturn exit_program(int ret) ...@@ -1482,7 +1483,7 @@ void av_noreturn exit_program(int ret)
exit (255); exit (255);
} }
exit(ret); /* not all OS-es handle main() return value */ exit(ret);
} }
static void assert_avoptions(AVDictionary *m) static void assert_avoptions(AVDictionary *m)
...@@ -1645,9 +1646,8 @@ static void do_audio_out(AVFormatContext *s, OutputStream *ost, ...@@ -1645,9 +1646,8 @@ static void do_audio_out(AVFormatContext *s, OutputStream *ost,
if (got_packet) { if (got_packet) {
if (pkt.pts != AV_NOPTS_VALUE) if (pkt.pts != AV_NOPTS_VALUE)
pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base); pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
if (pkt.dts != AV_NOPTS_VALUE) { if (pkt.dts != AV_NOPTS_VALUE)
pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base); pkt.dts = av_rescale_q(pkt.dts, enc->time_base, ost->st->time_base);
}
if (pkt.duration > 0) if (pkt.duration > 0)
pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base); pkt.duration = av_rescale_q(pkt.duration, enc->time_base, ost->st->time_base);
...@@ -2534,7 +2534,6 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int ...@@ -2534,7 +2534,6 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int
ist->next_pts = ist->pts = decoded_frame->pts = best_effort_timestamp; ist->next_pts = ist->pts = decoded_frame->pts = best_effort_timestamp;
pkt->size = 0; pkt->size = 0;
pre_process_video_frame(ist, (AVPicture *)decoded_frame, &buffer_to_free); pre_process_video_frame(ist, (AVPicture *)decoded_frame, &buffer_to_free);
rate_emu_sleep(ist); rate_emu_sleep(ist);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment